diff --git a/src/notebooks/mock_db_data_from_json.ipynb b/src/notebooks/mock_db_data_from_json.ipynb
new file mode 100644
index 0000000..367284f
--- /dev/null
+++ b/src/notebooks/mock_db_data_from_json.ipynb
@@ -0,0 +1,1223 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import sys\n",
+ "import os\n",
+ "sys.path.append('/home/ayan/Desktop/nexB/gsoc20/scancode-results-analyzer/src')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Import Class `ResultsDataFramePackage` and initialize Object"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from results_analyze.load_results_package import ResultsDataFramePackage\n",
+ "pkg_class = ResultsDataFramePackage()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Import Data From This JSON File"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "json_filename = \"lic_scancode_before.json\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## This calls `ResultsDataFramePackage.create_package_level_dataframe` and takes input the jSON data, mocks the DatabAse Data Format and creates a Project level DataFrame"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "results_from_json = pkg_class.create_package_level_dataframe(json_filename)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Columns"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "path object\n",
+ "size int64\n",
+ "mime_type object\n",
+ "file_type object\n",
+ "programming_language object\n",
+ "is_binary bool\n",
+ "is_text bool\n",
+ "is_archive bool\n",
+ "is_media bool\n",
+ "is_source bool\n",
+ "is_script bool\n",
+ "licenses object\n",
+ "is_legal bool\n",
+ "is_manifest bool\n",
+ "is_readme bool\n",
+ "is_top_level bool\n",
+ "is_key_file bool\n",
+ "is_generated bool\n",
+ "is_license_text_file bool\n",
+ "license_detections_no int64\n",
+ "key object\n",
+ "score float64\n",
+ "category object\n",
+ "is_exception bool\n",
+ "start_line int64\n",
+ "end_line int64\n",
+ "matched_text object\n",
+ "identifier object\n",
+ "is_license_text_lic bool\n",
+ "is_license_notice bool\n",
+ "is_license_reference bool\n",
+ "is_license_tag bool\n",
+ "matcher object\n",
+ "rule_length int64\n",
+ "matched_length int64\n",
+ "match_coverage float64\n",
+ "rule_relevance float64\n",
+ "dtype: object"
+ ]
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "results_from_json.dtypes"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Sample DataFrame"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " path | \n",
+ " size | \n",
+ " mime_type | \n",
+ " file_type | \n",
+ " programming_language | \n",
+ " is_binary | \n",
+ " is_text | \n",
+ " is_archive | \n",
+ " is_media | \n",
+ " is_source | \n",
+ " ... | \n",
+ " identifier | \n",
+ " is_license_text_lic | \n",
+ " is_license_notice | \n",
+ " is_license_reference | \n",
+ " is_license_tag | \n",
+ " matcher | \n",
+ " rule_length | \n",
+ " matched_length | \n",
+ " match_coverage | \n",
+ " rule_relevance | \n",
+ "
\n",
+ " \n",
+ " pkg_scan_time | \n",
+ " file_sha1 | \n",
+ " lic_det_num | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 2020-05-26 21:20:17.862000+00:00 | \n",
+ " 0463f3f27739f3fecb1e7c51130541fb213d7d29 | \n",
+ " 0 | \n",
+ " Issues/1912-libtool-2.2.10-argz.c | \n",
+ " 5903 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lgpl-2.1-plus_newlib.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 3-seq | \n",
+ " 128 | \n",
+ " 52 | \n",
+ " 40.62 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " Issues/1912-libtool-2.2.10-argz.c | \n",
+ " 5903 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lead-in_unknown_11.RULE | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 3 | \n",
+ " 3 | \n",
+ " 100.00 | \n",
+ " 16.0 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " Issues/1912-libtool-2.2.10-argz.c | \n",
+ " 5903 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lgpl-2.1-plus_83_1.RULE | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 6 | \n",
+ " 6 | \n",
+ " 100.00 | \n",
+ " 33.0 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " Issues/1912-libtool-2.2.10-argz.c | \n",
+ " 5903 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lgpl-2.1-plus_83_1.RULE | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 6 | \n",
+ " 6 | \n",
+ " 100.00 | \n",
+ " 33.0 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " Issues/1912-libtool-2.2.10-argz.c | \n",
+ " 5903 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lgpl_3.RULE | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 7 | \n",
+ " 7 | \n",
+ " 100.00 | \n",
+ " 38.0 | \n",
+ "
\n",
+ " \n",
+ " 5 | \n",
+ " Issues/1912-libtool-2.2.10-argz.c | \n",
+ " 5903 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " other-copyleft_fsf_address_1.RULE | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 14 | \n",
+ " 14 | \n",
+ " 100.00 | \n",
+ " 90.0 | \n",
+ "
\n",
+ " \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 | \n",
+ " 0 | \n",
+ " Issues/1910-cmake-3.4.1/cmCommandArgumentParse... | \n",
+ " 3152 | \n",
+ " text/plain | \n",
+ " ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lead-in_unknown_53.RULE | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 2 | \n",
+ " 2 | \n",
+ " 100.00 | \n",
+ " 11.0 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " Issues/1910-cmake-3.4.1/cmCommandArgumentParse... | \n",
+ " 3152 | \n",
+ " text/plain | \n",
+ " ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " bsd-new_26.RULE | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 2 | \n",
+ " 2 | \n",
+ " 100.00 | \n",
+ " 90.0 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " Issues/1910-cmake-3.4.1/cmCommandArgumentParse... | \n",
+ " 3152 | \n",
+ " text/plain | \n",
+ " ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " agpl-3.0-plus_109.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 3-seq | \n",
+ " 85 | \n",
+ " 22 | \n",
+ " 25.88 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " Issues/1910-cmake-3.4.1/cmCommandArgumentParse... | \n",
+ " 3152 | \n",
+ " text/plain | \n",
+ " ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " gpl-2.0-plus_with_bison-exception-2.2_1.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 216 | \n",
+ " 216 | \n",
+ " 100.00 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " Issues/1910-cmake-3.4.1/cmCommandArgumentParse... | \n",
+ " 3152 | \n",
+ " text/plain | \n",
+ " ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " gpl-2.0-plus_with_bison-exception-2.2_1.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 216 | \n",
+ " 216 | \n",
+ " 100.00 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 | \n",
+ " 0 | \n",
+ " Issues/1930-which-2.20-getopt.c | \n",
+ " 30245 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " agpl-1.0-plus.LICENSE | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " False | \n",
+ " 3-seq | \n",
+ " 73 | \n",
+ " 57 | \n",
+ " 78.08 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " Issues/1930-which-2.20-getopt.c | \n",
+ " 30245 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lgpl-2.0-plus_215.RULE | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 6 | \n",
+ " 6 | \n",
+ " 100.00 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " Issues/1930-which-2.20-getopt.c | \n",
+ " 30245 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lgpl-2.0-plus_3.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 3-seq | \n",
+ " 127 | \n",
+ " 87 | \n",
+ " 68.50 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd | \n",
+ " 0 | \n",
+ " Issues/1931-which-2.20-bash.c | \n",
+ " 12549 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " gpl-2.0_88.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 3-seq | \n",
+ " 113 | \n",
+ " 111 | \n",
+ " 98.23 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d | \n",
+ " 0 | \n",
+ " Issues/1923-socat-2.0.0/sycls.h | \n",
+ " 10896 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " lgpl-2.1_48.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 3-seq | \n",
+ " 31 | \n",
+ " 7 | \n",
+ " 22.58 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b | \n",
+ " 0 | \n",
+ " Issues/1911-iptables1.4.10/libipt_ECN.c | \n",
+ " 4637 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " gpl-2.0-plus_180.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 3-seq | \n",
+ " 34 | \n",
+ " 8 | \n",
+ " 23.53 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " Issues/1911-iptables1.4.10/libipt_ECN.c | \n",
+ " 4637 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " gpl-2.0_223.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 3 | \n",
+ " 3 | \n",
+ " 100.00 | \n",
+ " 90.0 | \n",
+ "
\n",
+ " \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 | \n",
+ " 0 | \n",
+ " Issues/1911-iptables1.4.10/ip6tables-save.c | \n",
+ " 4139 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " gpl-2.0-plus_180.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 3-seq | \n",
+ " 34 | \n",
+ " 8 | \n",
+ " 23.53 | \n",
+ " 100.0 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " Issues/1911-iptables1.4.10/ip6tables-save.c | \n",
+ " 4139 | \n",
+ " text/x-c | \n",
+ " C source, ASCII text | \n",
+ " C++ | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " ... | \n",
+ " gpl-2.0_223.RULE | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ " False | \n",
+ " 2-aho | \n",
+ " 3 | \n",
+ " 3 | \n",
+ " 100.00 | \n",
+ " 90.0 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
20 rows × 37 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " path \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 Issues/1912-libtool-2.2.10-argz.c \n",
+ " 1 Issues/1912-libtool-2.2.10-argz.c \n",
+ " 2 Issues/1912-libtool-2.2.10-argz.c \n",
+ " 3 Issues/1912-libtool-2.2.10-argz.c \n",
+ " 4 Issues/1912-libtool-2.2.10-argz.c \n",
+ " 5 Issues/1912-libtool-2.2.10-argz.c \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 Issues/1910-cmake-3.4.1/cmCommandArgumentParse... \n",
+ " 1 Issues/1910-cmake-3.4.1/cmCommandArgumentParse... \n",
+ " 2 Issues/1910-cmake-3.4.1/cmCommandArgumentParse... \n",
+ " 3 Issues/1910-cmake-3.4.1/cmCommandArgumentParse... \n",
+ " 4 Issues/1910-cmake-3.4.1/cmCommandArgumentParse... \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 Issues/1930-which-2.20-getopt.c \n",
+ " 1 Issues/1930-which-2.20-getopt.c \n",
+ " 2 Issues/1930-which-2.20-getopt.c \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 Issues/1931-which-2.20-bash.c \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 Issues/1923-socat-2.0.0/sycls.h \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 Issues/1911-iptables1.4.10/libipt_ECN.c \n",
+ " 1 Issues/1911-iptables1.4.10/libipt_ECN.c \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 Issues/1911-iptables1.4.10/ip6tables-save.c \n",
+ " 1 Issues/1911-iptables1.4.10/ip6tables-save.c \n",
+ "\n",
+ " size \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 5903 \n",
+ " 1 5903 \n",
+ " 2 5903 \n",
+ " 3 5903 \n",
+ " 4 5903 \n",
+ " 5 5903 \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 3152 \n",
+ " 1 3152 \n",
+ " 2 3152 \n",
+ " 3 3152 \n",
+ " 4 3152 \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 30245 \n",
+ " 1 30245 \n",
+ " 2 30245 \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 12549 \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 10896 \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 4637 \n",
+ " 1 4637 \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 4139 \n",
+ " 1 4139 \n",
+ "\n",
+ " mime_type \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 text/x-c \n",
+ " 1 text/x-c \n",
+ " 2 text/x-c \n",
+ " 3 text/x-c \n",
+ " 4 text/x-c \n",
+ " 5 text/x-c \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 text/plain \n",
+ " 1 text/plain \n",
+ " 2 text/plain \n",
+ " 3 text/plain \n",
+ " 4 text/plain \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 text/x-c \n",
+ " 1 text/x-c \n",
+ " 2 text/x-c \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 text/x-c \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 text/x-c \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 text/x-c \n",
+ " 1 text/x-c \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 text/x-c \n",
+ " 1 text/x-c \n",
+ "\n",
+ " file_type \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 C source, ASCII text \n",
+ " 1 C source, ASCII text \n",
+ " 2 C source, ASCII text \n",
+ " 3 C source, ASCII text \n",
+ " 4 C source, ASCII text \n",
+ " 5 C source, ASCII text \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 ASCII text \n",
+ " 1 ASCII text \n",
+ " 2 ASCII text \n",
+ " 3 ASCII text \n",
+ " 4 ASCII text \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 C source, ASCII text \n",
+ " 1 C source, ASCII text \n",
+ " 2 C source, ASCII text \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 C source, ASCII text \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 C source, ASCII text \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 C source, ASCII text \n",
+ " 1 C source, ASCII text \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 C source, ASCII text \n",
+ " 1 C source, ASCII text \n",
+ "\n",
+ " programming_language \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 C++ \n",
+ " 1 C++ \n",
+ " 2 C++ \n",
+ " 3 C++ \n",
+ " 4 C++ \n",
+ " 5 C++ \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 C++ \n",
+ " 1 C++ \n",
+ " 2 C++ \n",
+ " 3 C++ \n",
+ " 4 C++ \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 C++ \n",
+ " 1 C++ \n",
+ " 2 C++ \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 C++ \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 C++ \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 C++ \n",
+ " 1 C++ \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 C++ \n",
+ " 1 C++ \n",
+ "\n",
+ " is_binary \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 5 False \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 False \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 False \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 False \n",
+ " 1 False \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 False \n",
+ " 1 False \n",
+ "\n",
+ " is_text \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 True \n",
+ " 1 True \n",
+ " 2 True \n",
+ " 3 True \n",
+ " 4 True \n",
+ " 5 True \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 True \n",
+ " 1 True \n",
+ " 2 True \n",
+ " 3 True \n",
+ " 4 True \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 True \n",
+ " 1 True \n",
+ " 2 True \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 True \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 True \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 True \n",
+ " 1 True \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 True \n",
+ " 1 True \n",
+ "\n",
+ " is_archive \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 5 False \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 False \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 False \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 False \n",
+ " 1 False \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 False \n",
+ " 1 False \n",
+ "\n",
+ " is_media \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 5 False \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 False \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 False \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 False \n",
+ " 1 False \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 False \n",
+ " 1 False \n",
+ "\n",
+ " is_source \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 True \n",
+ " 1 True \n",
+ " 2 True \n",
+ " 3 True \n",
+ " 4 True \n",
+ " 5 True \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 True \n",
+ " 1 True \n",
+ " 2 True \n",
+ " 3 True \n",
+ " 4 True \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 True \n",
+ " 1 True \n",
+ " 2 True \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 True \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 True \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 True \n",
+ " 1 True \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 True \n",
+ " 1 True \n",
+ "\n",
+ " ... \\\n",
+ "pkg_scan_time file_sha1 lic_det_num ... \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 ... \n",
+ " 1 ... \n",
+ " 2 ... \n",
+ " 3 ... \n",
+ " 4 ... \n",
+ " 5 ... \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 ... \n",
+ " 1 ... \n",
+ " 2 ... \n",
+ " 3 ... \n",
+ " 4 ... \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 ... \n",
+ " 1 ... \n",
+ " 2 ... \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 ... \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 ... \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 ... \n",
+ " 1 ... \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 ... \n",
+ " 1 ... \n",
+ "\n",
+ " identifier \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 lgpl-2.1-plus_newlib.RULE \n",
+ " 1 lead-in_unknown_11.RULE \n",
+ " 2 lgpl-2.1-plus_83_1.RULE \n",
+ " 3 lgpl-2.1-plus_83_1.RULE \n",
+ " 4 lgpl_3.RULE \n",
+ " 5 other-copyleft_fsf_address_1.RULE \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 lead-in_unknown_53.RULE \n",
+ " 1 bsd-new_26.RULE \n",
+ " 2 agpl-3.0-plus_109.RULE \n",
+ " 3 gpl-2.0-plus_with_bison-exception-2.2_1.RULE \n",
+ " 4 gpl-2.0-plus_with_bison-exception-2.2_1.RULE \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 agpl-1.0-plus.LICENSE \n",
+ " 1 lgpl-2.0-plus_215.RULE \n",
+ " 2 lgpl-2.0-plus_3.RULE \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 gpl-2.0_88.RULE \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 lgpl-2.1_48.RULE \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 gpl-2.0-plus_180.RULE \n",
+ " 1 gpl-2.0_223.RULE \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 gpl-2.0-plus_180.RULE \n",
+ " 1 gpl-2.0_223.RULE \n",
+ "\n",
+ " is_license_text_lic \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 5 False \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 True \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 False \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 False \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 False \n",
+ " 1 False \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 False \n",
+ " 1 False \n",
+ "\n",
+ " is_license_notice \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 True \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 5 False \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 False \n",
+ " 1 False \n",
+ " 2 True \n",
+ " 3 True \n",
+ " 4 True \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 False \n",
+ " 1 False \n",
+ " 2 True \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 True \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 True \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 True \n",
+ " 1 True \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 True \n",
+ " 1 True \n",
+ "\n",
+ " is_license_reference \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 False \n",
+ " 1 True \n",
+ " 2 True \n",
+ " 3 True \n",
+ " 4 True \n",
+ " 5 True \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 True \n",
+ " 1 True \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 False \n",
+ " 1 True \n",
+ " 2 False \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 False \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 False \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 False \n",
+ " 1 False \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 False \n",
+ " 1 False \n",
+ "\n",
+ " is_license_tag \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 5 False \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 3 False \n",
+ " 4 False \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 False \n",
+ " 1 False \n",
+ " 2 False \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 False \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 False \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 False \n",
+ " 1 False \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 False \n",
+ " 1 False \n",
+ "\n",
+ " matcher \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 3-seq \n",
+ " 1 2-aho \n",
+ " 2 2-aho \n",
+ " 3 2-aho \n",
+ " 4 2-aho \n",
+ " 5 2-aho \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 2-aho \n",
+ " 1 2-aho \n",
+ " 2 3-seq \n",
+ " 3 2-aho \n",
+ " 4 2-aho \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 3-seq \n",
+ " 1 2-aho \n",
+ " 2 3-seq \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 3-seq \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 3-seq \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 3-seq \n",
+ " 1 2-aho \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 3-seq \n",
+ " 1 2-aho \n",
+ "\n",
+ " rule_length \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 128 \n",
+ " 1 3 \n",
+ " 2 6 \n",
+ " 3 6 \n",
+ " 4 7 \n",
+ " 5 14 \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 2 \n",
+ " 1 2 \n",
+ " 2 85 \n",
+ " 3 216 \n",
+ " 4 216 \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 73 \n",
+ " 1 6 \n",
+ " 2 127 \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 113 \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 31 \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 34 \n",
+ " 1 3 \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 34 \n",
+ " 1 3 \n",
+ "\n",
+ " matched_length \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 52 \n",
+ " 1 3 \n",
+ " 2 6 \n",
+ " 3 6 \n",
+ " 4 7 \n",
+ " 5 14 \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 2 \n",
+ " 1 2 \n",
+ " 2 22 \n",
+ " 3 216 \n",
+ " 4 216 \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 57 \n",
+ " 1 6 \n",
+ " 2 87 \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 111 \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 7 \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 8 \n",
+ " 1 3 \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 8 \n",
+ " 1 3 \n",
+ "\n",
+ " match_coverage \\\n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 40.62 \n",
+ " 1 100.00 \n",
+ " 2 100.00 \n",
+ " 3 100.00 \n",
+ " 4 100.00 \n",
+ " 5 100.00 \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 100.00 \n",
+ " 1 100.00 \n",
+ " 2 25.88 \n",
+ " 3 100.00 \n",
+ " 4 100.00 \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 78.08 \n",
+ " 1 100.00 \n",
+ " 2 68.50 \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 98.23 \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 22.58 \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 23.53 \n",
+ " 1 100.00 \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 23.53 \n",
+ " 1 100.00 \n",
+ "\n",
+ " rule_relevance \n",
+ "pkg_scan_time file_sha1 lic_det_num \n",
+ "2020-05-26 21:20:17.862000+00:00 0463f3f27739f3fecb1e7c51130541fb213d7d29 0 100.0 \n",
+ " 1 16.0 \n",
+ " 2 33.0 \n",
+ " 3 33.0 \n",
+ " 4 38.0 \n",
+ " 5 90.0 \n",
+ " 0f8e4516af766f8452fe49cd068bf00c18c110d5 0 11.0 \n",
+ " 1 90.0 \n",
+ " 2 100.0 \n",
+ " 3 100.0 \n",
+ " 4 100.0 \n",
+ " 1122bffdf476e2eda2821c8d32c98a17160a9f73 0 100.0 \n",
+ " 1 100.0 \n",
+ " 2 100.0 \n",
+ " 14525d0441df25233fa6e5e8188baace3e4ddcbd 0 100.0 \n",
+ " 16f589a32339e7ab843dedc53bce00d8fe28c62d 0 100.0 \n",
+ " 29caa29a50aadc2479295ed557859d0ab8c8140b 0 100.0 \n",
+ " 1 90.0 \n",
+ " 53b44383c602544292ff4fed97a40d8d6c005fe4 0 100.0 \n",
+ " 1 90.0 \n",
+ "\n",
+ "[20 rows x 37 columns]"
+ ]
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "results_from_json.head(20)"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.6.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/src/results_analyze/data/json-scan-results/lic_scancode_after.json b/src/results_analyze/data/json-scan-results/lic_scancode_after.json
new file mode 100755
index 0000000..fe02eb7
--- /dev/null
+++ b/src/results_analyze/data/json-scan-results/lic_scancode_after.json
@@ -0,0 +1,6326 @@
+{
+ "headers": [
+ {
+ "tool_name": "scancode-toolkit",
+ "tool_version": "3.1.2",
+ "options": {
+ "input": [
+ "Issues/"
+ ],
+ "--classify": true,
+ "--copyright": true,
+ "--email": true,
+ "--generated": true,
+ "--info": true,
+ "--is-license-text": true,
+ "--json-pp": "lic_scancode_mar_1.json",
+ "--license": true,
+ "--license-clarity-score": true,
+ "--license-text": true,
+ "--package": true,
+ "--processes": "8",
+ "--summary": true,
+ "--summary-key-files": true,
+ "--url": true
+ },
+ "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.",
+ "start_timestamp": "2020-03-08T182209.512106",
+ "end_timestamp": "2020-03-08T182218.485096",
+ "message": null,
+ "errors": [],
+ "extra_data": {
+ "files_count": 45
+ }
+ }
+ ],
+ "summary": {
+ "license_expressions": [
+ {
+ "value": "gpl-2.0",
+ "count": 24
+ },
+ {
+ "value": "gpl-2.0-plus",
+ "count": 12
+ },
+ {
+ "value": "bsd-new",
+ "count": 5
+ },
+ {
+ "value": "gpl-1.0-plus",
+ "count": 4
+ },
+ {
+ "value": "gpl-3.0-plus",
+ "count": 4
+ },
+ {
+ "value": "unknown",
+ "count": 4
+ },
+ {
+ "value": "lgpl-2.0-plus",
+ "count": 3
+ },
+ {
+ "value": "lgpl-2.1-plus",
+ "count": 3
+ },
+ {
+ "value": null,
+ "count": 2
+ },
+ {
+ "value": "agpl-3.0-plus",
+ "count": 2
+ },
+ {
+ "value": "free-unknown",
+ "count": 2
+ },
+ {
+ "value": "gpl-1.0",
+ "count": 2
+ },
+ {
+ "value": "gpl-2.0-plus WITH bison-exception-2.2",
+ "count": 2
+ },
+ {
+ "value": "gpl-3.0",
+ "count": 2
+ },
+ {
+ "value": "lgpl-2.1",
+ "count": 2
+ },
+ {
+ "value": "bsd-new OR gpl-1.0-plus",
+ "count": 1
+ },
+ {
+ "value": "bzip2-libbzip-2010",
+ "count": 1
+ },
+ {
+ "value": "gpl-2.0 OR ibm-pibs",
+ "count": 1
+ },
+ {
+ "value": "gpl-2.0-plus AND bsd-new",
+ "count": 1
+ },
+ {
+ "value": "lgpl-2.0-plus WITH wxwindows-exception-3.1",
+ "count": 1
+ },
+ {
+ "value": "other-copyleft",
+ "count": 1
+ }
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger",
+ "count": 13
+ },
+ {
+ "value": "Copyright (c) Free Software Foundation, Inc.",
+ "count": 8
+ },
+ {
+ "value": null,
+ "count": 4
+ },
+ {
+ "value": "(c) Copyright Pantelis Antoniou, Intracom",
+ "count": 3
+ },
+ {
+ "value": "Copyright Kitware, Inc., Insight Software Consortium",
+ "count": 3
+ },
+ {
+ "value": "copyright (c) Bruce Korb",
+ "count": 3
+ },
+ {
+ "value": "(c) by Harald Welte ",
+ "count": 2
+ },
+ {
+ "value": "Copyright (c) Andy Green ",
+ "count": 2
+ },
+ {
+ "value": "(c) Benjamin Reed",
+ "count": 1
+ },
+ {
+ "value": "(c) Copyright Dan Malek, Embedded Edge, LLC, dan@embeddededge.com",
+ "count": 1
+ },
+ {
+ "value": "(c) David Hinds",
+ "count": 1
+ },
+ {
+ "value": "(c) Ufo Mechanic ",
+ "count": 1
+ },
+ {
+ "value": "COPYRIGHT I B M CORPORATION",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Arcom Control System Ltd",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Arcom Control Systems Ltd",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) David Woodhouse (dwmw2@infradead.org) Steven J. Hill (sjhill@realitydiluted.com)",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Jouni Malinen ",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Julian Seward ",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Lennert Buytenhek",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Mike Frysinger ",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) OpenVPN Technologies, Inc.",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) OpenWrt.org",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Samsung Electronics Co., Ltd. http://www.samsung.com",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) by Julian Seward",
+ "count": 1
+ },
+ {
+ "value": "Copyright ATMEL Corporation",
+ "count": 1
+ },
+ {
+ "value": "Copyright Dan Williams and Red Hat, Inc.",
+ "count": 1
+ },
+ {
+ "value": "Copyright Samsung Electronics Co Kyungmin Park ",
+ "count": 1
+ },
+ {
+ "value": "Copyright Simon Kelley",
+ "count": 1
+ },
+ {
+ "value": "Copyright The Chromium OS",
+ "count": 1
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "count": 13
+ },
+ {
+ "value": "Free Software Foundation, Inc.",
+ "count": 8
+ },
+ {
+ "value": null,
+ "count": 4
+ },
+ {
+ "value": "Bruce Korb",
+ "count": 3
+ },
+ {
+ "value": "Kitware, Inc., Insight Software Consortium",
+ "count": 3
+ },
+ {
+ "value": "Pantelis Antoniou, Intracom",
+ "count": 3
+ },
+ {
+ "value": "Andy Green",
+ "count": 2
+ },
+ {
+ "value": "Harald Welte",
+ "count": 2
+ },
+ {
+ "value": "Julian Seward",
+ "count": 2
+ },
+ {
+ "value": "ATMEL Corporation",
+ "count": 1
+ },
+ {
+ "value": "Arcom Control System Ltd",
+ "count": 1
+ },
+ {
+ "value": "Arcom Control Systems Ltd",
+ "count": 1
+ },
+ {
+ "value": "Benjamin Reed",
+ "count": 1
+ },
+ {
+ "value": "Dan Malek, Embedded Edge, LLC",
+ "count": 1
+ },
+ {
+ "value": "Dan Williams and Red Hat, Inc.",
+ "count": 1
+ },
+ {
+ "value": "David Hinds",
+ "count": 1
+ },
+ {
+ "value": "David Woodhouse Steven J. Hill",
+ "count": 1
+ },
+ {
+ "value": "I B M CORPORATION",
+ "count": 1
+ },
+ {
+ "value": "Jouni Malinen",
+ "count": 1
+ },
+ {
+ "value": "Lennert Buytenhek",
+ "count": 1
+ },
+ {
+ "value": "Mike Frysinger",
+ "count": 1
+ },
+ {
+ "value": "OpenVPN Technologies, Inc.",
+ "count": 1
+ },
+ {
+ "value": "OpenWrt.org",
+ "count": 1
+ },
+ {
+ "value": "Samsung Electronics Co Kyungmin Park",
+ "count": 1
+ },
+ {
+ "value": "Samsung Electronics Co., Ltd.",
+ "count": 1
+ },
+ {
+ "value": "Simon Kelley",
+ "count": 1
+ },
+ {
+ "value": "The Chromium OS",
+ "count": 1
+ },
+ {
+ "value": "Ufo Mechanic",
+ "count": 1
+ }
+ ],
+ "authors": [
+ {
+ "value": null,
+ "count": 39
+ },
+ {
+ "value": "Andras Kis-Szabo ",
+ "count": 1
+ },
+ {
+ "value": "Gary V. Vaughan",
+ "count": 1
+ },
+ {
+ "value": "Harald Welte Rusty Russell ",
+ "count": 1
+ },
+ {
+ "value": "Lennert Buytenhek ",
+ "count": 1
+ },
+ {
+ "value": "Mark Game",
+ "count": 1
+ },
+ {
+ "value": "Paul Rusty Russel and Harald Welte ",
+ "count": 1
+ },
+ {
+ "value": "Richard Stallman",
+ "count": 1
+ }
+ ],
+ "programming_language": [
+ {
+ "value": "C++",
+ "count": 38
+ },
+ {
+ "value": "Bash",
+ "count": 4
+ },
+ {
+ "value": null,
+ "count": 3
+ }
+ ],
+ "packages": []
+ },
+ "license_clarity_score": {
+ "score": 18,
+ "declared": false,
+ "discovered": 0.73,
+ "consistency": false,
+ "spdx": false,
+ "license_texts": false
+ },
+ "summary_of_key_files": {
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "programming_language": []
+ },
+ "files": [
+ {
+ "path": "Issues",
+ "type": "directory",
+ "name": "Issues",
+ "base_name": "Issues",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 45,
+ "dirs_count": 8,
+ "size_count": 514592,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1904-azure-iot-sdk-c-makefile.iot",
+ "type": "file",
+ "name": "1904-azure-iot-sdk-c-makefile.iot",
+ "base_name": "1904-azure-iot-sdk-c-makefile",
+ "extension": ".iot",
+ "size": 3391,
+ "date": "2020-03-08",
+ "sha1": "c7253ba65436387ccb9bf393378cbeb725c7325e",
+ "md5": "4f9cbbdc8c50f9cae2f978d879b18518",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "gpl-2.0_849.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 17,
+ "matched_length": 17,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# This is free software, licensed under the GNU General Public License v2.\n# See /LICENSE for more information."
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2006 OpenWrt.org",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "OpenWrt.org",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1906-libwebsockets-output.c",
+ "type": "file",
+ "name": "1906-libwebsockets-output.c",
+ "base_name": "1906-libwebsockets-output",
+ "extension": ".c",
+ "size": 33269,
+ "date": "2020-03-01",
+ "sha1": "a2d7a215eaedef8ab149bb6a5baedcb54a9850a3",
+ "md5": "8ce65112ba8a3873925f656022085d65",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.1",
+ "score": 100.0,
+ "name": "GNU Lesser General Public License 2.1",
+ "short_name": "LGPL 2.1",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html",
+ "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1",
+ "spdx_license_key": "LGPL-2.1-only",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only",
+ "start_line": 6,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "lgpl-2.1_193.RULE",
+ "license_expression": "lgpl-2.1",
+ "licenses": [
+ "lgpl-2.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 109,
+ "matched_length": 109,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This library 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:\n * version 2.1 of the License.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n * MA 02110-1301 USA"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2010-2015 Andy Green ",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Andy Green",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "andy@warmcat.com",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1906-libwebsoclets-output.c",
+ "type": "file",
+ "name": "1906-libwebsoclets-output.c",
+ "base_name": "1906-libwebsoclets-output",
+ "extension": ".c",
+ "size": 22888,
+ "date": "2017-07-28",
+ "sha1": "6c990c4a7fc56bf9f1df2b859cf5e4be7d285d5e",
+ "md5": "3c9cf47646361f6c51e2c932c688dd88",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.1",
+ "score": 100.0,
+ "name": "GNU Lesser General Public License 2.1",
+ "short_name": "LGPL 2.1",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html",
+ "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1",
+ "spdx_license_key": "LGPL-2.1-only",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only",
+ "start_line": 6,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "lgpl-2.1_193.RULE",
+ "license_expression": "lgpl-2.1",
+ "licenses": [
+ "lgpl-2.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 109,
+ "matched_length": 109,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This library 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:\n * version 2.1 of the License.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n * MA 02110-1301 USA"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2010-2015 Andy Green ",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Andy Green",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "andy@warmcat.com",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1907-bison-2.4.3-getargs.c",
+ "type": "file",
+ "name": "1907-bison-2.4.3-getargs.c",
+ "base_name": "1907-bison-2.4.3-getargs",
+ "extension": ".c",
+ "size": 15802,
+ "date": "2010-08-06",
+ "sha1": "6db3a67499cbba3a63354231bd4d35183e44f2ef",
+ "md5": "3ca1ea52773e7a8ccae4f1e5caa2b2ba",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 8,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus.LICENSE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": true,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 102,
+ "matched_length": 102,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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 (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see . */"
+ },
+ {
+ "key": "free-unknown",
+ "score": 100.0,
+ "name": "Free unknown license detected but not recognized",
+ "short_name": "Free unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 349,
+ "end_line": 350,
+ "matched_rule": {
+ "identifier": "free-unknown_1.RULE",
+ "license_expression": "free-unknown",
+ "licenses": [
+ "free-unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 23,
+ "matched_length": 23,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": "This is free software; see the source for copying conditions. There is NO \\\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \\"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus",
+ "free-unknown"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1984, 1986, 1989, 1992, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Copyright (c) Free Software Foundation, Inc.",
+ "start_line": 345,
+ "end_line": 346
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 345,
+ "end_line": 346
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [
+ {
+ "url": "http://www.gnu.org/licenses/",
+ "start_line": 19,
+ "end_line": 19
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1908-bzip2-1.0.5-bzip2.c",
+ "type": "file",
+ "name": "1908-bzip2-1.0.5-bzip2.c",
+ "base_name": "1908-bzip2-1.0.5-bzip2",
+ "extension": ".c",
+ "size": 58670,
+ "date": "2008-03-20",
+ "sha1": "5dd305e238554f6d0c5b9064a29607816a2e0878",
+ "md5": "df7798bc9d6feb2437a166e6936e285f",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "bzip2-libbzip-2010",
+ "score": 62.79,
+ "name": "bzip2 License 2010",
+ "short_name": "bzip2 License 2010",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "bzip",
+ "homepage_url": "https://github.com/asimonov-im/bzip2/blob/master/LICENSE",
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bzip2-libbzip-2010",
+ "spdx_license_key": "bzip2-1.0.6",
+ "spdx_url": "https://spdx.org/licenses/bzip2-1.0.6",
+ "start_line": 13,
+ "end_line": 17,
+ "matched_rule": {
+ "identifier": "bzip2-libbzip-2010_5.RULE",
+ "license_expression": "bzip2-libbzip-2010",
+ "licenses": [
+ "bzip2-libbzip-2010"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 43,
+ "matched_length": 27,
+ "match_coverage": 62.79,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " Please read the WARNING, DISCLAIMER and PATENTS sections in the \n README file.\n\n This program is released under the terms of the license contained\n in the file LICENSE."
+ },
+ {
+ "key": "bsd-new",
+ "score": 85.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 1610,
+ "end_line": 1611,
+ "matched_rule": {
+ "identifier": "bsd-new_547.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 20,
+ "matched_length": 17,
+ "match_coverage": 85.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " \" This program is free software; you can redistribute it and/or modify \"\n \" it under the terms set out in the LICENSE file, which is included \""
+ },
+ {
+ "key": "free-unknown",
+ "score": 90.7,
+ "name": "Free unknown license detected but not recognized",
+ "short_name": "Free unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 1610,
+ "end_line": 1616,
+ "matched_rule": {
+ "identifier": "free-unknown_26.RULE",
+ "license_expression": "free-unknown",
+ "licenses": [
+ "free-unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 43,
+ "matched_length": 39,
+ "match_coverage": 90.7,
+ "rule_relevance": 100
+ },
+ "matched_text": " \" This program is free software; you can redistribute it and/or modify \"\n \" it under the terms set out in the LICENSE file, which is included \"\n \" in the bzip2-1.0.5 source distribution. \"\n \" \"\n \" This program is distributed in the hope that it will be useful, \"\n \" but WITHOUT ANY WARRANTY; without even the implied warranty of \"\n \" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the \""
+ }
+ ],
+ "license_expressions": [
+ "bzip2-libbzip-2010",
+ "bsd-new",
+ "free-unknown"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1996-2007 Julian Seward ",
+ "start_line": 10,
+ "end_line": 11
+ },
+ {
+ "value": "Copyright (c) 1996-2007 by Julian Seward",
+ "start_line": 1608,
+ "end_line": 1608
+ }
+ ],
+ "holders": [
+ {
+ "value": "Julian Seward",
+ "start_line": 10,
+ "end_line": 11
+ },
+ {
+ "value": "Julian Seward",
+ "start_line": 1608,
+ "end_line": 1608
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "jseward@bzip.org",
+ "start_line": 11,
+ "end_line": 11
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1912-libtool-2.2.10-argz.c",
+ "type": "file",
+ "name": "1912-libtool-2.2.10-argz.c",
+ "base_name": "1912-libtool-2.2.10-argz",
+ "extension": ".c",
+ "size": 5903,
+ "date": "2010-05-20",
+ "sha1": "0463f3f27739f3fecb1e7c51130541fb213d7d29",
+ "md5": "9bc35c1c3c4ada358e2c0f1afeb4b8b8",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.1-plus",
+ "score": 40.62,
+ "name": "GNU Lesser General Public License 2.1 or later",
+ "short_name": "LGPL 2.1 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus",
+ "spdx_license_key": "LGPL-2.1-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later",
+ "start_line": 3,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lgpl-2.1-plus_newlib.RULE",
+ "license_expression": "lgpl-2.1-plus",
+ "licenses": [
+ "lgpl-2.1-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 128,
+ "matched_length": 52,
+ "match_coverage": 40.62,
+ "rule_relevance": 100
+ },
+ "matched_text": " Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.\n Written by Gary V. Vaughan, 2004\n\n NOTE: The canonical source of this file is maintained with the\n GNU Libtool package. Report bugs to bug-libtool@gnu.org.\n\nGNU Libltdl is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2 of the License, or (at your option) any later version.\n\nAs a special exception to the GNU Lesser General Public License,"
+ },
+ {
+ "key": "unknown",
+ "score": 16.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 14,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_11.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 16
+ },
+ "matched_text": "As a special exception to the GNU Lesser General Public License,"
+ },
+ {
+ "key": "lgpl-2.1-plus",
+ "score": 33.0,
+ "name": "GNU Lesser General Public License 2.1 or later",
+ "short_name": "LGPL 2.1 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus",
+ "spdx_license_key": "LGPL-2.1-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later",
+ "start_line": 21,
+ "end_line": 22,
+ "matched_rule": {
+ "identifier": "lgpl-2.1-plus_83_1.RULE",
+ "license_expression": "lgpl-2.1-plus",
+ "licenses": [
+ "lgpl-2.1-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 33
+ },
+ "matched_text": "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Lesser General Public License for more details."
+ },
+ {
+ "key": "lgpl-2.1-plus",
+ "score": 33.0,
+ "name": "GNU Lesser General Public License 2.1 or later",
+ "short_name": "LGPL 2.1 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus",
+ "spdx_license_key": "LGPL-2.1-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later",
+ "start_line": 24,
+ "end_line": 25,
+ "matched_rule": {
+ "identifier": "lgpl-2.1-plus_83_1.RULE",
+ "license_expression": "lgpl-2.1-plus",
+ "licenses": [
+ "lgpl-2.1-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 33
+ },
+ "matched_text": "You should have received a copy of the GNU Lesser General Public\nLicense along with GNU Libltdl; see the file COPYING.LIB. If not, a"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 38.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 26,
+ "end_line": 26,
+ "matched_rule": {
+ "identifier": "lgpl_3.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 7,
+ "matched_length": 7,
+ "match_coverage": 100.0,
+ "rule_relevance": 38
+ },
+ "matched_text": "copy can be downloaded from http://www.gnu.org/licenses/lgpl.html,"
+ },
+ {
+ "key": "other-copyleft",
+ "score": 90.0,
+ "name": "Other Copyleft Licenses",
+ "short_name": "Other Copyleft Licenses",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "nexB",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:other-copyleft",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 27,
+ "end_line": 28,
+ "matched_rule": {
+ "identifier": "other-copyleft_fsf_address_1.RULE",
+ "license_expression": "other-copyleft",
+ "licenses": [
+ "other-copyleft"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 14,
+ "matched_length": 14,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": "or obtained by writing to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA."
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1-plus",
+ "unknown",
+ "lgpl-2.1-plus",
+ "lgpl-2.1-plus",
+ "lgpl-2.0-plus",
+ "other-copyleft"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [
+ {
+ "value": "Gary V. Vaughan",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "bug-libtool@gnu.org",
+ "start_line": 7,
+ "end_line": 7
+ }
+ ],
+ "urls": [
+ {
+ "url": "http://www.gnu.org/licenses/lgpl.html",
+ "start_line": 26,
+ "end_line": 26
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1914-linux2.6.39-gpiolib.c",
+ "type": "file",
+ "name": "1914-linux2.6.39-gpiolib.c",
+ "base_name": "1914-linux2.6.39-gpiolib",
+ "extension": ".c",
+ "size": 7436,
+ "date": "2011-03-29",
+ "sha1": "f6a36929fb4fab8b085c622546370a4383fb525b",
+ "md5": "d65d50417d40e75f9c7a6c4d4627eff9",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 11,
+ "end_line": 13,
+ "matched_rule": {
+ "identifier": "gpl-2.0_8.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License version 2 as\n * published by the Free Software Foundation."
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 266,
+ "end_line": 266,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.base\t= S5PC100_GPL1(0),"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 268,
+ "end_line": 268,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.label\t= \"GPL1\","
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 273,
+ "end_line": 273,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.base\t= S5PC100_GPL2(0),"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 275,
+ "end_line": 275,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.label\t= \"GPL2\","
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 280,
+ "end_line": 280,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.base\t= S5PC100_GPL3(0),"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 282,
+ "end_line": 282,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.label\t= \"GPL3\","
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-3.0",
+ "gpl-3.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2010 Samsung Electronics Co., Ltd. http://www.samsung.com",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Copyright 2009 Samsung Electronics Co Kyungmin Park ",
+ "start_line": 6,
+ "end_line": 7
+ }
+ ],
+ "holders": [
+ {
+ "value": "Samsung Electronics Co., Ltd.",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Samsung Electronics Co Kyungmin Park",
+ "start_line": 6,
+ "end_line": 7
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "kyungmin.park@samsung.com",
+ "start_line": 7,
+ "end_line": 7
+ }
+ ],
+ "urls": [
+ {
+ "url": "http://www.samsung.com/",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1919-openvpn-client.up",
+ "type": "file",
+ "name": "1919-openvpn-client.up",
+ "base_name": "1919-openvpn-client",
+ "extension": ".up",
+ "size": 2829,
+ "date": "2014-05-01",
+ "sha1": "d05f4e2c11d6461239290dd205833555dc26e944",
+ "md5": "ecd15a368a3b24000d0726c9f3da905b",
+ "mime_type": "text/x-shellscript",
+ "file_type": "POSIX shell script, ASCII text executable",
+ "programming_language": "Bash",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": true,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_855.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# Licensed under the GPL version 2"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2005-2010 OpenVPN Technologies, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "OpenVPN Technologies, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [
+ {
+ "url": "http://www.boldandbusted.com/",
+ "start_line": 8,
+ "end_line": 8
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": true,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1921-socat-2.0.0-error.h",
+ "type": "file",
+ "name": "1921-socat-2.0.0-error.h",
+ "base_name": "1921-socat-2.0.0-error",
+ "extension": ".h",
+ "size": 9820,
+ "date": "2010-06-20",
+ "sha1": "7da22330320f2f4b2a32b8582eff1f5da7d0879d",
+ "md5": "b808430986d2140b4079395da71d6169",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1922-socat-2-xioexit.c",
+ "type": "file",
+ "name": "1922-socat-2-xioexit.c",
+ "base_name": "1922-socat-2-xioexit",
+ "extension": ".c",
+ "size": 549,
+ "date": "2010-06-20",
+ "sha1": "951b699947daf7984d2a9ee1ed37c668700c845e",
+ "md5": "58b147ccb330e46194fd79dd4fac4541",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2005",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1923-socat-2-proxy.sh",
+ "type": "file",
+ "name": "1923-socat-2-proxy.sh",
+ "base_name": "1923-socat-2-proxy",
+ "extension": ".sh",
+ "size": 1672,
+ "date": "2010-06-20",
+ "sha1": "accf51e885a0eb60e4ef4d06bf29ec2f0791c20e",
+ "md5": "97d87b798daa69daf163cffe0e9dfb1c",
+ "mime_type": "text/x-shellscript",
+ "file_type": "Bourne-Again shell script, ASCII text executable",
+ "programming_language": "Bash",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": true,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2003-2004",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1924-socat-2-filan.h",
+ "type": "file",
+ "name": "1924-socat-2-filan.h",
+ "base_name": "1924-socat-2-filan",
+ "extension": ".h",
+ "size": 1168,
+ "date": "2010-06-20",
+ "sha1": "7752c709327a2cf795aef6db5a7db47b7996ae69",
+ "md5": "26dfb4b8f2aff7518118f5a8d2e6c589",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2008",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1925-tcpdump-4.1.1-print-stp.c",
+ "type": "file",
+ "name": "1925-tcpdump-4.1.1-print-stp.c",
+ "base_name": "1925-tcpdump-4.1.1-print-stp",
+ "extension": ".c",
+ "size": 11342,
+ "date": "2010-03-12",
+ "sha1": "b356964f7efd8d013095428c338be3941b3e9c0a",
+ "md5": "38389cb10f38c73bb4600161cd56c007",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "bsd-new",
+ "score": 100.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 4,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "bsd-new_or_gpl-1.0-plus_3.RULE",
+ "license_expression": "bsd-new OR gpl-1.0-plus",
+ "licenses": [
+ "bsd-new",
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 23,
+ "matched_length": 23,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This software may be distributed either under the terms of the\n * BSD-style license that accompanies tcpdump or the GNU General\n * Public License"
+ },
+ {
+ "key": "gpl-1.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 4,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "bsd-new_or_gpl-1.0-plus_3.RULE",
+ "license_expression": "bsd-new OR gpl-1.0-plus",
+ "licenses": [
+ "bsd-new",
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 23,
+ "matched_length": 23,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This software may be distributed either under the terms of the\n * BSD-style license that accompanies tcpdump or the GNU General\n * Public License"
+ }
+ ],
+ "license_expressions": [
+ "bsd-new OR gpl-1.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2000 Lennert Buytenhek",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "Lennert Buytenhek",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [
+ {
+ "value": "Lennert Buytenhek ",
+ "start_line": 9,
+ "end_line": 9
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "buytenh@gnu.org",
+ "start_line": 9,
+ "end_line": 9
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1926-tcpdump-4.1.1-getopt.h",
+ "type": "file",
+ "name": "1926-tcpdump-4.1.1-getopt.h",
+ "base_name": "1926-tcpdump-4.1.1-getopt",
+ "extension": ".h",
+ "size": 4570,
+ "date": "2010-03-12",
+ "sha1": "6047dcf7ae87f2186258c1c9265b4064257c9aa3",
+ "md5": "ce4f0ef80d5226ad40a927c8c35259b0",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_235.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 124,
+ "matched_length": 124,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "The GNU C Library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Library General Public License as\npublished by the Free Software Foundation; either version 2 of the\nLicense, or (at your option) any later version.\n\nThe GNU C Library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with the GNU C Library; see the file COPYING.LIB. If\nnot, write to the Free Software Foundation, Inc., 675 Mass Ave,\nCambridge, MA 02139, USA. */"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1927-u-boot-2010.06-4xx_pci.c",
+ "type": "file",
+ "name": "1927-u-boot-2010.06-4xx_pci.c",
+ "base_name": "1927-u-boot-2010.06-4xx_pci",
+ "extension": ".c",
+ "size": 29321,
+ "date": "2020-02-29",
+ "sha1": "e5f4c0fff5d22358916e0c25b71ba8d664e3fdc2",
+ "md5": "d10bd92c900de7aa998f9e1132b374c6",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 2,
+ "end_line": 21,
+ "matched_rule": {
+ "identifier": "gpl-2.0_or_ibm-pibs_1.RULE",
+ "license_expression": "gpl-2.0 OR ibm-pibs",
+ "licenses": [
+ "gpl-2.0",
+ "ibm-pibs"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 166,
+ "matched_length": 166,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This source code is dual-licensed. You may use it under the terms of\n * the GNU General Public license version 2, or under the license below.\n *\n * This source code has been made available to you by IBM on an AS-IS\n * basis. Anyone receiving this source is licensed under IBM\n * copyrights to use it in any way he or she deems fit, including\n * copying it, modifying it, compiling it, and redistributing it either\n * with or without modifications. No license under IBM patents or\n * patent applications is to be implied by the copyright license.\n *\n * Any user of this software should understand that IBM cannot provide\n * technical support for this software and will not be responsible for\n * any consequences resulting from the use of this software.\n *\n * Any person who transfers this source code or any derivative work\n * must include the IBM copyright notice, this paragraph, and the\n * preceding two paragraphs in the transferred software.\n *\n * COPYRIGHT I B M CORPORATION 1995\n * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M"
+ },
+ {
+ "key": "ibm-pibs",
+ "score": 100.0,
+ "name": "IBM PowerPC Initialization and Boot Software",
+ "short_name": "IBM PowerPC Software",
+ "category": "Permissive",
+ "is_exception": false,
+ "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",
+ "text_url": "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ibm-pibs",
+ "spdx_license_key": "IBM-pibs",
+ "spdx_url": "https://spdx.org/licenses/IBM-pibs",
+ "start_line": 2,
+ "end_line": 21,
+ "matched_rule": {
+ "identifier": "gpl-2.0_or_ibm-pibs_1.RULE",
+ "license_expression": "gpl-2.0 OR ibm-pibs",
+ "licenses": [
+ "gpl-2.0",
+ "ibm-pibs"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 166,
+ "matched_length": 166,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This source code is dual-licensed. You may use it under the terms of\n * the GNU General Public license version 2, or under the license below.\n *\n * This source code has been made available to you by IBM on an AS-IS\n * basis. Anyone receiving this source is licensed under IBM\n * copyrights to use it in any way he or she deems fit, including\n * copying it, modifying it, compiling it, and redistributing it either\n * with or without modifications. No license under IBM patents or\n * patent applications is to be implied by the copyright license.\n *\n * Any user of this software should understand that IBM cannot provide\n * technical support for this software and will not be responsible for\n * any consequences resulting from the use of this software.\n *\n * Any person who transfers this source code or any derivative work\n * must include the IBM copyright notice, this paragraph, and the\n * preceding two paragraphs in the transferred software.\n *\n * COPYRIGHT I B M CORPORATION 1995\n * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0 OR ibm-pibs"
+ ],
+ "copyrights": [
+ {
+ "value": "COPYRIGHT I B M CORPORATION 1995",
+ "start_line": 20,
+ "end_line": 21
+ }
+ ],
+ "holders": [
+ {
+ "value": "I B M CORPORATION",
+ "start_line": 20,
+ "end_line": 21
+ }
+ ],
+ "authors": [
+ {
+ "value": "Mark Game",
+ "start_line": 29,
+ "end_line": 29
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "stefan.roese@esd-electronics.com",
+ "start_line": 52,
+ "end_line": 52
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1929-README.mpc8349itx",
+ "type": "file",
+ "name": "1929-README.mpc8349itx",
+ "base_name": "1929-README",
+ "extension": ".mpc8349itx",
+ "size": 5756,
+ "date": "2020-02-29",
+ "sha1": "aea40fab4131c529cbcf62e0495cb6e35cab72ba",
+ "md5": "50d36ef2f62416937afda2da66d4b27c",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1930-which-2.20-getopt.c",
+ "type": "file",
+ "name": "1930-which-2.20-getopt.c",
+ "base_name": "1930-which-2.20-getopt",
+ "extension": ".c",
+ "size": 30245,
+ "date": "2007-05-25",
+ "sha1": "1122bffdf476e2eda2821c8d32c98a17160a9f73",
+ "md5": "1fd652e360299e5ac45771bd2b225a05",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 9,
+ "end_line": 22,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_234.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 127,
+ "matched_length": 127,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " The GNU C Library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; either version 2 of the\n License, or (at your option) any later version.\n\n The GNU C Library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n\n You should have received a copy of the GNU Library General Public\n License along with the GNU C Library; see the file COPYING.LIB. If not,\n write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,\n Boston, MA 02110-1301, USA. */"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.",
+ "start_line": 6,
+ "end_line": 7
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 6,
+ "end_line": 7
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "roland@gnu.ai.mit.edu",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1931-which-2.20-bash.c",
+ "type": "file",
+ "name": "1931-which-2.20-bash.c",
+ "base_name": "1931-which-2.20-bash",
+ "extension": ".c",
+ "size": 12549,
+ "date": "2008-01-18",
+ "sha1": "14525d0441df25233fa6e5e8188baace3e4ddcbd",
+ "md5": "38d61ecf051843886a5ad2f1231a1047",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 7,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_564.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 113,
+ "matched_length": 113,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License\n * as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02110-1301, USA."
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1987 - 2002 Free Software Foundation, Inc.",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1932-wpa-bsd-gpl-vht.c",
+ "type": "file",
+ "name": "1932-wpa-bsd-gpl-vht.c",
+ "base_name": "1932-wpa-bsd-gpl-vht",
+ "extension": ".c",
+ "size": 7899,
+ "date": "2020-02-29",
+ "sha1": "e1ad13a7e5ab4616803143ce73ee012cd42ab38e",
+ "md5": "15741c972e912408c1df3ba1ca3dcb58",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "bsd-new",
+ "score": 99.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 5,
+ "end_line": 8,
+ "matched_rule": {
+ "identifier": "bsd-new_604.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 26,
+ "matched_length": 26,
+ "match_coverage": 100.0,
+ "rule_relevance": 99.0
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or modify\n * it under the terms of BSD license\n *\n * See README and COPYING for more details."
+ }
+ ],
+ "license_expressions": [
+ "bsd-new"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2002-2009, Jouni Malinen ",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Jouni Malinen",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "j@w1.fi",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1933-zlib-compile",
+ "type": "file",
+ "name": "1933-zlib-compile",
+ "base_name": "1933-zlib-compile",
+ "extension": "",
+ "size": 6933,
+ "date": "2020-02-29",
+ "sha1": "de939c70df1a09cfc5d184a305035c3602e717eb",
+ "md5": "a68285f641336e36a0df329ba793bc51",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1910-cmake-3.4.1",
+ "type": "directory",
+ "name": "1910-cmake-3.4.1",
+ "base_name": "1910-cmake-3.4.1",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 2,
+ "dirs_count": 0,
+ "size_count": 56470,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1910-cmake-3.4.1/cmCommandArgumentParser.cxx",
+ "type": "file",
+ "name": "cmCommandArgumentParser.cxx",
+ "base_name": "cmCommandArgumentParser",
+ "extension": ".cxx",
+ "size": 53318,
+ "date": "2015-12-02",
+ "sha1": "a5a7ba78b9972bfddc0919e510b9abad879d6597",
+ "md5": "7d2947d3b87e369b58a4189705027dfc",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "unknown",
+ "score": 11.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_53.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 11
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "bsd-new",
+ "score": 90.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "bsd-new_26.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "agpl-3.0-plus",
+ "score": 25.88,
+ "name": "GNU Affero General Public License 3.0 or later",
+ "short_name": "AGPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/agpl.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:agpl-3.0-plus",
+ "spdx_license_key": "AGPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/AGPL-3.0-or-later",
+ "start_line": 8,
+ "end_line": 10,
+ "matched_rule": {
+ "identifier": "agpl-3.0-plus_109.RULE",
+ "license_expression": "agpl-3.0-plus",
+ "licenses": [
+ "agpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 85,
+ "matched_length": 22,
+ "match_coverage": 25.88,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " This software is distributed WITHOUT ANY WARRANTY; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n See the License for more information."
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 19,
+ "end_line": 45,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_with_bison-exception-2.2_1.RULE",
+ "license_expression": "gpl-2.0-plus WITH bison-exception-2.2",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bison-exception-2.2"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 216,
+ "matched_length": 216,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA. */\n\n/* As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison. */"
+ },
+ {
+ "key": "bison-exception-2.2",
+ "score": 100.0,
+ "name": "Bison 2.2 exception to GPL 2.0 or later",
+ "short_name": "Bison 2.2 exception to GPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bison-exception-2.2",
+ "spdx_license_key": "Bison-exception-2.2",
+ "spdx_url": "https://spdx.org/licenses/Bison-exception-2.2",
+ "start_line": 19,
+ "end_line": 45,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_with_bison-exception-2.2_1.RULE",
+ "license_expression": "gpl-2.0-plus WITH bison-exception-2.2",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bison-exception-2.2"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 216,
+ "matched_length": 216,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA. */\n\n/* As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison. */"
+ },
+ {
+ "key": "unknown",
+ "score": 11.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 126,
+ "end_line": 126,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_53.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 11
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "bsd-new",
+ "score": 90.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 126,
+ "end_line": 126,
+ "matched_rule": {
+ "identifier": "bsd-new_26.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 48.94,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 126,
+ "end_line": 131,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_with_wxwindows-exception-3.1_6.RULE",
+ "license_expression": "lgpl-2.0-plus WITH wxwindows-exception-3.1",
+ "licenses": [
+ "lgpl-2.0-plus",
+ "wxwindows-exception-3.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 47,
+ "matched_length": 23,
+ "match_coverage": 48.94,
+ "rule_relevance": 100
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");\n see accompanying file Copyright.txt for details.\n\n This software is distributed WITHOUT ANY WARRANTY; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n See the License for more information."
+ },
+ {
+ "key": "wxwindows-exception-3.1",
+ "score": 48.94,
+ "name": "WxWindows Library Exception to GPL 2.0 or later",
+ "short_name": "WxWindows Library Exception to GPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "wxWidgets",
+ "homepage_url": "http://www.wxwidgets.org/about/newlicen.htm",
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:wxwindows-exception-3.1",
+ "spdx_license_key": "WxWindows-exception-3.1",
+ "spdx_url": "https://spdx.org/licenses/WxWindows-exception-3.1",
+ "start_line": 126,
+ "end_line": 131,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_with_wxwindows-exception-3.1_6.RULE",
+ "license_expression": "lgpl-2.0-plus WITH wxwindows-exception-3.1",
+ "licenses": [
+ "lgpl-2.0-plus",
+ "wxwindows-exception-3.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 47,
+ "matched_length": 23,
+ "match_coverage": 48.94,
+ "rule_relevance": 100
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");\n see accompanying file Copyright.txt for details.\n\n This software is distributed WITHOUT ANY WARRANTY; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n See the License for more information."
+ }
+ ],
+ "license_expressions": [
+ "unknown",
+ "bsd-new",
+ "agpl-3.0-plus",
+ "gpl-2.0-plus WITH bison-exception-2.2",
+ "unknown",
+ "bsd-new",
+ "lgpl-2.0-plus WITH wxwindows-exception-3.1"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2000-2009 Kitware, Inc., Insight Software Consortium",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "value": "Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.",
+ "start_line": 16,
+ "end_line": 17
+ },
+ {
+ "value": "Copyright 2000-2009 Kitware, Inc., Insight Software Consortium",
+ "start_line": 124,
+ "end_line": 124
+ }
+ ],
+ "holders": [
+ {
+ "value": "Kitware, Inc., Insight Software Consortium",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 16,
+ "end_line": 17
+ },
+ {
+ "value": "Kitware, Inc., Insight Software Consortium",
+ "start_line": 124,
+ "end_line": 124
+ }
+ ],
+ "authors": [
+ {
+ "value": "Richard Stallman",
+ "start_line": 47,
+ "end_line": 48
+ }
+ ],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1910-cmake-3.4.1/cmCommandArgumentParserTokens.h",
+ "type": "file",
+ "name": "cmCommandArgumentParserTokens.h",
+ "base_name": "cmCommandArgumentParserTokens",
+ "extension": ".h",
+ "size": 3152,
+ "date": "2015-12-02",
+ "sha1": "0f8e4516af766f8452fe49cd068bf00c18c110d5",
+ "md5": "fd1f2b276e8890d0994fd52fc25f89ab",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "unknown",
+ "score": 11.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_53.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 11
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "bsd-new",
+ "score": 90.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "bsd-new_26.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "agpl-3.0-plus",
+ "score": 25.88,
+ "name": "GNU Affero General Public License 3.0 or later",
+ "short_name": "AGPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/agpl.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:agpl-3.0-plus",
+ "spdx_license_key": "AGPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/AGPL-3.0-or-later",
+ "start_line": 8,
+ "end_line": 10,
+ "matched_rule": {
+ "identifier": "agpl-3.0-plus_109.RULE",
+ "license_expression": "agpl-3.0-plus",
+ "licenses": [
+ "agpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 85,
+ "matched_length": 22,
+ "match_coverage": 25.88,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " This software is distributed WITHOUT ANY WARRANTY; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n See the License for more information."
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 19,
+ "end_line": 45,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_with_bison-exception-2.2_1.RULE",
+ "license_expression": "gpl-2.0-plus WITH bison-exception-2.2",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bison-exception-2.2"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 216,
+ "matched_length": 216,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA. */\n\n/* As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison. */"
+ },
+ {
+ "key": "bison-exception-2.2",
+ "score": 100.0,
+ "name": "Bison 2.2 exception to GPL 2.0 or later",
+ "short_name": "Bison 2.2 exception to GPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bison-exception-2.2",
+ "spdx_license_key": "Bison-exception-2.2",
+ "spdx_url": "https://spdx.org/licenses/Bison-exception-2.2",
+ "start_line": 19,
+ "end_line": 45,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_with_bison-exception-2.2_1.RULE",
+ "license_expression": "gpl-2.0-plus WITH bison-exception-2.2",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bison-exception-2.2"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 216,
+ "matched_length": 216,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA. */\n\n/* As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison. */"
+ }
+ ],
+ "license_expressions": [
+ "unknown",
+ "bsd-new",
+ "agpl-3.0-plus",
+ "gpl-2.0-plus WITH bison-exception-2.2"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2000-2009 Kitware, Inc., Insight Software Consortium",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "value": "Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.",
+ "start_line": 16,
+ "end_line": 17
+ }
+ ],
+ "holders": [
+ {
+ "value": "Kitware, Inc., Insight Software Consortium",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 16,
+ "end_line": 17
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10",
+ "type": "directory",
+ "name": "1911-iptables1.4.10",
+ "base_name": "1911-iptables1.4.10",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 4,
+ "dirs_count": 0,
+ "size_count": 39957,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10/ip6tables-restore.c",
+ "type": "file",
+ "name": "ip6tables-restore.c",
+ "base_name": "ip6tables-restore",
+ "extension": ".c",
+ "size": 10879,
+ "date": "2010-10-29",
+ "sha1": "5f2a5ebe3ff3c8f6ed69fd423a747dd0442a6ea7",
+ "md5": "a2e1a2e51b6b8fab02759cec023f4062",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 23.53,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 8,
+ "end_line": 8,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_180.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 8,
+ "match_coverage": 23.53,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 90.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 8,
+ "end_line": 8,
+ "matched_rule": {
+ "identifier": "gpl-2.0_223.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [],
+ "holders": [],
+ "authors": [
+ {
+ "value": "Harald Welte Rusty Russell ",
+ "start_line": 5,
+ "end_line": 7
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "kisza@sch.bme.hu",
+ "start_line": 2,
+ "end_line": 2
+ },
+ {
+ "email": "laforge@gnumonks.org",
+ "start_line": 6,
+ "end_line": 6
+ },
+ {
+ "email": "rusty@linuxcare.com.au",
+ "start_line": 7,
+ "end_line": 7
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10/ip6tables-save.c",
+ "type": "file",
+ "name": "ip6tables-save.c",
+ "base_name": "ip6tables-save",
+ "extension": ".c",
+ "size": 4139,
+ "date": "2010-10-29",
+ "sha1": "53b44383c602544292ff4fed97a40d8d6c005fe4",
+ "md5": "ebc0f44bc2d1c505bd0bd9cfa365f28b",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 23.53,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_180.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 8,
+ "match_coverage": 23.53,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 90.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 6,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "gpl-2.0_223.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [],
+ "holders": [],
+ "authors": [
+ {
+ "value": "Andras Kis-Szabo ",
+ "start_line": 2,
+ "end_line": 6
+ },
+ {
+ "value": "Paul Rusty Russel and Harald Welte ",
+ "start_line": 2,
+ "end_line": 6
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "kisza@sch.bme.hu",
+ "start_line": 2,
+ "end_line": 2
+ },
+ {
+ "email": "rusty@linuxcare.com.au",
+ "start_line": 4,
+ "end_line": 4
+ },
+ {
+ "email": "laforge@gnumonks.org",
+ "start_line": 5,
+ "end_line": 5
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": true,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10/iptables-xml.c",
+ "type": "file",
+ "name": "iptables-xml.c",
+ "base_name": "iptables-xml",
+ "extension": ".c",
+ "size": 20302,
+ "date": "2010-10-29",
+ "sha1": "6c574556090271b9802c6e10ee1163fbf157bcb5",
+ "md5": "266a65603e63fb1678e926f6adf48d64",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 23.53,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_180.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 8,
+ "match_coverage": 23.53,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 90.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 6,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "gpl-2.0_223.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) 2006 Ufo Mechanic ",
+ "start_line": 2,
+ "end_line": 4
+ },
+ {
+ "value": "(c) 2000-2002 by Harald Welte ",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Ufo Mechanic",
+ "start_line": 2,
+ "end_line": 4
+ },
+ {
+ "value": "Harald Welte",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "azez@ufomechanic.net",
+ "start_line": 2,
+ "end_line": 2
+ },
+ {
+ "email": "laforge@gnumonks.org",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "email": "rusty@linuxcare.com.au",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10/libipt_ECN.c",
+ "type": "file",
+ "name": "libipt_ECN.c",
+ "base_name": "libipt_ECN",
+ "extension": ".c",
+ "size": 4637,
+ "date": "2010-10-29",
+ "sha1": "29caa29a50aadc2479295ed557859d0ab8c8140b",
+ "md5": "605ebc2f5ada9ef56c960a9c3b82e6ba",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 23.53,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_180.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 8,
+ "match_coverage": 23.53,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is distributed under the terms of GNU GPL v2, 1991"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 90.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "gpl-2.0_223.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * This program is distributed under the terms of GNU GPL v2, 1991"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) 2002 by Harald Welte ",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Harald Welte",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "laforge@gnumonks.org",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1915-linux2.6.39",
+ "type": "directory",
+ "name": "1915-linux2.6.39",
+ "base_name": "1915-linux2.6.39",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 2,
+ "dirs_count": 0,
+ "size_count": 11792,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1915-linux2.6.39/atmel.h",
+ "type": "file",
+ "name": "atmel.h",
+ "base_name": "atmel",
+ "extension": ".h",
+ "size": 1533,
+ "date": "2020-03-01",
+ "sha1": "5b83135603dfdbaada6eddde846af1fb181557b4",
+ "md5": "ac30123f978028a5f07d826c3007b960",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 7,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_572.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 115,
+ "matched_length": 115,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " This program 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 (at your option) any later version.\n\n This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with Atmel wireless lan drivers; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2005 Dan Williams and Red Hat, Inc.",
+ "start_line": 5,
+ "end_line": 5
+ }
+ ],
+ "holders": [
+ {
+ "value": "Dan Williams and Red Hat, Inc.",
+ "start_line": 5,
+ "end_line": 5
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1915-linux2.6.39/atmel_cs.c",
+ "type": "file",
+ "name": "atmel_cs.c",
+ "base_name": "atmel_cs",
+ "extension": ".c",
+ "size": 10259,
+ "date": "2011-03-29",
+ "sha1": "d6fe468acf99fecbf31446cef2078761430fd444",
+ "md5": "6c8e43ebebe4908d1324196b4ccfd993",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-1.0-plus",
+ "score": 5.0,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 9,
+ "end_line": 9,
+ "matched_rule": {
+ "identifier": "gpl_bare_word_only.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 5
+ },
+ "matched_text": " released by Atmel corp. under the GPL in December 2002. It also"
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 16,
+ "end_line": 28,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_572.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 115,
+ "matched_length": 115,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " This program 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 (at your option) any later version.\n\n This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with Atmel wireless lan drivers; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 61,
+ "end_line": 61,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_module_license_2.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "MODULE_LICENSE(\"GPL\");"
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 262,
+ "end_line": 297,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_or_bsd-new_10.RULE",
+ "license_expression": "gpl-2.0-plus AND bsd-new",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 284,
+ "matched_length": 284,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n In addition:\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE."
+ },
+ {
+ "key": "bsd-new",
+ "score": 100.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 262,
+ "end_line": 297,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_or_bsd-new_10.RULE",
+ "license_expression": "gpl-2.0-plus AND bsd-new",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 284,
+ "matched_length": 284,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n In addition:\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE."
+ }
+ ],
+ "license_expressions": [
+ "gpl-1.0-plus",
+ "gpl-2.0-plus",
+ "gpl-2.0-plus",
+ "gpl-2.0-plus AND bsd-new"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2000-2001 ATMEL Corporation",
+ "start_line": 5,
+ "end_line": 6
+ },
+ {
+ "value": "Copyright 2003 Simon Kelley",
+ "start_line": 5,
+ "end_line": 6
+ },
+ {
+ "value": "(c) Benjamin Reed",
+ "start_line": 8,
+ "end_line": 11
+ },
+ {
+ "value": "(c) David Hinds",
+ "start_line": 8,
+ "end_line": 11
+ }
+ ],
+ "holders": [
+ {
+ "value": "ATMEL Corporation",
+ "start_line": 5,
+ "end_line": 6
+ },
+ {
+ "value": "Simon Kelley",
+ "start_line": 5,
+ "end_line": 6
+ },
+ {
+ "value": "Benjamin Reed",
+ "start_line": 8,
+ "end_line": 11
+ },
+ {
+ "value": "David Hinds",
+ "start_line": 8,
+ "end_line": 11
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "simon@thekelleys.org.uk",
+ "start_line": 14,
+ "end_line": 14
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1917-mtd-utils-1.5.2",
+ "type": "directory",
+ "name": "1917-mtd-utils-1.5.2",
+ "base_name": "1917-mtd-utils-1.5.2",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 3,
+ "dirs_count": 0,
+ "size_count": 25714,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1917-mtd-utils-1.5.2/flash_erase.c",
+ "type": "file",
+ "name": "flash_erase.c",
+ "base_name": "flash_erase",
+ "extension": ".c",
+ "size": 7617,
+ "date": "2020-02-29",
+ "sha1": "9a3f43e5751b57c09a786151b5b9d7efc64aeaad",
+ "md5": "41aaaff4f4ad3c59c387dec133cc6d62",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 18,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_85.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 113,
+ "matched_length": 113,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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 (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA"
+ },
+ {
+ "key": "gpl-1.0-plus",
+ "score": 96.88,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 83,
+ "end_line": 88,
+ "matched_rule": {
+ "identifier": "gpl-1.0-plus_189.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t\"%1$s comes with NO WARRANTY \"\n\t\t\t\"to the extent permitted by law. \"\n\t\t\t\" \"\n\t\t\t\"You may redistribute copies of %1$s \"\n\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-1.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2000 Arcom Control System Ltd",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Copyright (c) 2010 Mike Frysinger ",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Copyright (c) 2000 Arcom Control Systems Ltd",
+ "start_line": 81,
+ "end_line": 81
+ }
+ ],
+ "holders": [
+ {
+ "value": "Arcom Control System Ltd",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Mike Frysinger",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Arcom Control Systems Ltd",
+ "start_line": 81,
+ "end_line": 81
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "vapier@gentoo.org",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1917-mtd-utils-1.5.2/mtdpart.c",
+ "type": "file",
+ "name": "mtdpart.c",
+ "base_name": "mtdpart",
+ "extension": ".c",
+ "size": 4516,
+ "date": "2015-07-25",
+ "sha1": "e60094a03536141e0abed905943b0bfd7691a7df",
+ "md5": "0777e0d4e715583062d09b0620deb86d",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 6,
+ "end_line": 8,
+ "matched_rule": {
+ "identifier": "gpl-2.0_8.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License version 2 as\n * published by the Free Software Foundation."
+ },
+ {
+ "key": "gpl-1.0-plus",
+ "score": 96.88,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 50,
+ "end_line": 55,
+ "matched_rule": {
+ "identifier": "gpl-1.0-plus_189.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t\"%1$s comes with NO WARRANTY \"\n\t\t\t\"to the extent permitted by law. \"\n\t\t\t\" \"\n\t\t\t\"You may redistribute copies of %1$s \"\n\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0",
+ "gpl-1.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2015 The Chromium OS",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "The Chromium OS",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1917-mtd-utils-1.5.2/nanddump.c",
+ "type": "file",
+ "name": "nanddump.c",
+ "base_name": "nanddump",
+ "extension": ".c",
+ "size": 13581,
+ "date": "2015-07-25",
+ "sha1": "dc162bafed96cd6ad7e5c9906260d3a9a74afa6d",
+ "md5": "83aa76115f5c2207b458449de4161e22",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 7,
+ "end_line": 9,
+ "matched_rule": {
+ "identifier": "gpl-2.0_8.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License version 2 as\n * published by the Free Software Foundation."
+ },
+ {
+ "key": "gpl-1.0-plus",
+ "score": 96.88,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 68,
+ "end_line": 73,
+ "matched_rule": {
+ "identifier": "gpl-1.0-plus_189.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t\"%1$s comes with NO WARRANTY \"\n\t\t\t\"to the extent permitted by law. \"\n\t\t\t\" \"\n\t\t\t\"You may redistribute copies of %1$s \"\n\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0",
+ "gpl-1.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2000 David Woodhouse (dwmw2@infradead.org) Steven J. Hill (sjhill@realitydiluted.com)",
+ "start_line": 4,
+ "end_line": 5
+ }
+ ],
+ "holders": [
+ {
+ "value": "David Woodhouse Steven J. Hill",
+ "start_line": 4,
+ "end_line": 5
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "dwmw2@infradead.org",
+ "start_line": 4,
+ "end_line": 4
+ },
+ {
+ "email": "sjhill@realitydiluted.com",
+ "start_line": 5,
+ "end_line": 5
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1918-ntp-4.2.6",
+ "type": "directory",
+ "name": "1918-ntp-4.2.6",
+ "base_name": "1918-ntp-4.2.6",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 2,
+ "dirs_count": 0,
+ "size_count": 18825,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1918-ntp-4.2.6/genshell.c",
+ "type": "file",
+ "name": "genshell.c",
+ "base_name": "genshell",
+ "extension": ".c",
+ "size": 12726,
+ "date": "2010-12-25",
+ "sha1": "6e90946dc8b6f8a580b168a32818bf3c896e7946",
+ "md5": "917f0c4669c39e5785d65ec66ee7f13a",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 95.7,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 11,
+ "end_line": 34,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_209.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 186,
+ "matched_length": 178,
+ "match_coverage": 95.7,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * AutoOpts is a copyrighted work. This source file is not encumbered\n * by AutoOpts licensing, but is provided under the licensing terms chosen\n * by the genshellopt author or copyright holder. AutoOpts is\n * licensed under the terms of the LGPL. The redistributable library\n * (``libopts'') is licensed under the terms of either the LGPL or, at the\n * users discretion, the BSD license. See the AutoOpts and/or libopts sources\n * for details.\n *\n * This source file is copyrighted and licensed under the following terms:\n *\n * genshellopt copyright (c) 1999-2009 Bruce Korb - all rights reserved\n *\n * genshellopt is free software: you can redistribute it and/or modify it\n * under the terms of the GNU General Public License as published by the\n * Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * genshellopt is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n * See the GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License along\n * with this program. If not, see ."
+ },
+ {
+ "key": "gpl-3.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 54,
+ "end_line": 62,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_210.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 100,
+ "matched_length": 100,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\"genshellopt is free software: you can redistribute it and/or modify it under \\\nthe terms of the GNU General Public License as published by the Free Software \\\nFoundation, either version 3 of the License, or (at your option) any later \\\nversion. \\\ngenshellopt is distributed in the hope that it will be useful, but WITHOUT ANY \\\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A \\\nPARTICULAR PURPOSE. See the GNU General Public License for more details. \\\nYou should have received a copy of the GNU General Public License along with \\\nthis program. If not, see .\";"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus",
+ "gpl-3.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "copyright (c) 1999-2009 Bruce Korb",
+ "start_line": 21,
+ "end_line": 21
+ },
+ {
+ "value": "copyright (c) 1999-2009 Bruce Korb",
+ "start_line": 51,
+ "end_line": 52
+ }
+ ],
+ "holders": [
+ {
+ "value": "Bruce Korb",
+ "start_line": 21,
+ "end_line": 21
+ },
+ {
+ "value": "Bruce Korb",
+ "start_line": 51,
+ "end_line": 52
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "autogen-users@lists.sourceforge.net",
+ "start_line": 211,
+ "end_line": 211
+ }
+ ],
+ "urls": [
+ {
+ "url": "http://www.gnu.org/licenses/",
+ "start_line": 34,
+ "end_line": 34
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": true,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1918-ntp-4.2.6/genshell.h",
+ "type": "file",
+ "name": "genshell.h",
+ "base_name": "genshell",
+ "extension": ".h",
+ "size": 6099,
+ "date": "2010-12-25",
+ "sha1": "b276e2f2340b5f26f9b221955a7f7372b90a8ed6",
+ "md5": "fd83b22c2bd42578333334064a1d8f11",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 95.16,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 11,
+ "end_line": 34,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_209.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 186,
+ "matched_length": 177,
+ "match_coverage": 95.16,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * AutoOpts is a copyrighted work. This header file is not encumbered\n * by AutoOpts licensing, but is provided under the licensing terms chosen\n * by the genshellopt author or copyright holder. AutoOpts is\n * licensed under the terms of the LGPL. The redistributable library\n * (``libopts'') is licensed under the terms of either the LGPL or, at the\n * users discretion, the BSD license. See the AutoOpts and/or libopts sources\n * for details.\n *\n * This source file is copyrighted and licensed under the following terms:\n *\n * genshellopt copyright (c) 1999-2009 Bruce Korb - all rights reserved\n *\n * genshellopt is free software: you can redistribute it and/or modify it\n * under the terms of the GNU General Public License as published by the\n * Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * genshellopt is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n * See the GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License along\n * with this program. If not, see ."
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "copyright (c) 1999-2009 Bruce Korb",
+ "start_line": 21,
+ "end_line": 21
+ }
+ ],
+ "holders": [
+ {
+ "value": "Bruce Korb",
+ "start_line": 21,
+ "end_line": 21
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [
+ {
+ "url": "http://www.gnu.org/licenses/",
+ "start_line": 34,
+ "end_line": 34
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": true,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0",
+ "type": "directory",
+ "name": "1920-socat-2.0.0",
+ "base_name": "1920-socat-2.0.0",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 7,
+ "dirs_count": 0,
+ "size_count": 16137,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/gatherinfo.sh",
+ "type": "file",
+ "name": "gatherinfo.sh",
+ "base_name": "gatherinfo",
+ "extension": ".sh",
+ "size": 4097,
+ "date": "2010-06-20",
+ "sha1": "d3e3a7f9b9e146bedd30c4de2963994e5323ce2c",
+ "md5": "9433b1c30dfd3a2dbadf7df9e19e3a3a",
+ "mime_type": "text/x-shellscript",
+ "file_type": "POSIX shell script, ASCII text executable",
+ "programming_language": "Bash",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": true,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001, 2002",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/hostan.c",
+ "type": "file",
+ "name": "hostan.c",
+ "base_name": "hostan",
+ "extension": ".c",
+ "size": 2335,
+ "date": "2010-06-20",
+ "sha1": "5e8c3d4d91376235c6d7f5a2abbaaf71e7190168",
+ "md5": "38aab4665c0065e97ef4081a5d4acc6b",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2006-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/hostan.h",
+ "type": "file",
+ "name": "hostan.h",
+ "base_name": "hostan",
+ "extension": ".h",
+ "size": 272,
+ "date": "2010-06-20",
+ "sha1": "875a4aff4f68c9a48c8829a0805c0ecd46c6386e",
+ "md5": "7f12fa21ca5c2fb52b477ae53c8e634f",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2006",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/procan.h",
+ "type": "file",
+ "name": "procan.h",
+ "base_name": "procan",
+ "extension": ".h",
+ "size": 317,
+ "date": "2010-06-20",
+ "sha1": "66a21a26d896b5da756e60a07483328b8b07266f",
+ "md5": "da30850e5e098436cd532ee45c65377d",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/sslcls.h",
+ "type": "file",
+ "name": "sslcls.h",
+ "base_name": "sslcls",
+ "extension": ".h",
+ "size": 4197,
+ "date": "2010-06-20",
+ "sha1": "cf0acd039541327f2331ea452ffbad5d2accd723",
+ "md5": "619d2d775c2b2a49bd9abda2ce51a673",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2007",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/xio-ascii.c",
+ "type": "file",
+ "name": "xio-ascii.c",
+ "base_name": "xio-ascii",
+ "extension": ".c",
+ "size": 4613,
+ "date": "2010-06-20",
+ "sha1": "c5e58748bbadad5c004012c90eea0ea90bb375b0",
+ "md5": "b719bb96f3b714555cc66e5c668897df",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2002-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/xio-creat.h",
+ "type": "file",
+ "name": "xio-creat.h",
+ "base_name": "xio-creat",
+ "extension": ".h",
+ "size": 306,
+ "date": "2010-06-20",
+ "sha1": "72545320afeb44d39c63cac4cea68e96b43a5d96",
+ "md5": "3c80e4fb0336f80f34db2eef99bdfa31",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2007",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1923-socat-2.0.0",
+ "type": "directory",
+ "name": "1923-socat-2.0.0",
+ "base_name": "1923-socat-2.0.0",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 2,
+ "dirs_count": 0,
+ "size_count": 12568,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1923-socat-2.0.0/proxy.sh",
+ "type": "file",
+ "name": "proxy.sh",
+ "base_name": "proxy",
+ "extension": ".sh",
+ "size": 1672,
+ "date": "2010-06-20",
+ "sha1": "accf51e885a0eb60e4ef4d06bf29ec2f0791c20e",
+ "md5": "97d87b798daa69daf163cffe0e9dfb1c",
+ "mime_type": "text/x-shellscript",
+ "file_type": "Bourne-Again shell script, ASCII text executable",
+ "programming_language": "Bash",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": true,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2003-2004",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1923-socat-2.0.0/sycls.h",
+ "type": "file",
+ "name": "sycls.h",
+ "base_name": "sycls",
+ "extension": ".h",
+ "size": 10896,
+ "date": "2010-06-20",
+ "sha1": "16f589a32339e7ab843dedc53bce00d8fe28c62d",
+ "md5": "1b4b348b08afdbcccf61c89b89fb23f2",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_850.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 12,
+ "matched_length": 12,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1928-u-boot-2010.06",
+ "type": "directory",
+ "name": "1928-u-boot-2010.06",
+ "base_name": "1928-u-boot-2010.06",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 3,
+ "dirs_count": 0,
+ "size_count": 61117,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1928-u-boot-2010.06/netphone.c",
+ "type": "file",
+ "name": "netphone.c",
+ "base_name": "netphone",
+ "extension": ".c",
+ "size": 21728,
+ "date": "2020-02-29",
+ "sha1": "cd6c613c03f6b6e3d7842e793697c0df7328a0de",
+ "md5": "de38c8cc584aca60d2651f5805dcb324",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 22,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_439.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 125,
+ "matched_length": 125,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * See file CREDITS for list of people who contributed to this\n * project.\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License as\n * published by the Free Software Foundation; either version 2 of\n * the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\t See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) Copyright 2000-2004 Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "panto@intracom.gr",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "email": "wd@denx.de",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1928-u-boot-2010.06/netta2.c",
+ "type": "file",
+ "name": "netta2.c",
+ "base_name": "netta2",
+ "extension": ".c",
+ "size": 20474,
+ "date": "2020-03-08",
+ "sha1": "c1caeabd823a75fa1b3ebafa63c5366b7d152a95",
+ "md5": "81a78fe04b1976983ab479c3b3910c0c",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 22,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_439.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 125,
+ "matched_length": 125,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * See file CREDITS for list of people who contributed to this\n * project.\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License as\n * published by the Free Software Foundation; either version 2 of\n * the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\t See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) Copyright 2000-2004 Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "panto@intracom.gr",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "email": "wd@denx.de",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1928-u-boot-2010.06/stxxtc.c",
+ "type": "file",
+ "name": "stxxtc.c",
+ "base_name": "stxxtc",
+ "extension": ".c",
+ "size": 18915,
+ "date": "2020-03-08",
+ "sha1": "58e1309e14568e5ddecf30a7bcbd5992b4273a95",
+ "md5": "901b2a10f53c3de1fb7d4d140b799cc1",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 8,
+ "end_line": 24,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_439.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 125,
+ "matched_length": 125,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * See file CREDITS for list of people who contributed to this\n * project.\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License as\n * published by the Free Software Foundation; either version 2 of\n * the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\t See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) Copyright 2000-2004 Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 6
+ },
+ {
+ "value": "(c) Copyright 2005 Dan Malek, Embedded Edge, LLC, dan@embeddededge.com",
+ "start_line": 2,
+ "end_line": 6
+ }
+ ],
+ "holders": [
+ {
+ "value": "Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 6
+ },
+ {
+ "value": "Dan Malek, Embedded Edge, LLC",
+ "start_line": 2,
+ "end_line": 6
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "panto@intracom.gr",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "email": "wd@denx.de",
+ "start_line": 4,
+ "end_line": 4
+ },
+ {
+ "email": "dan@embeddededge.com",
+ "start_line": 6,
+ "end_line": 6
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ }
+ ]
+}
diff --git a/src/results_analyze/data/json-scan-results/lic_scancode_before.json b/src/results_analyze/data/json-scan-results/lic_scancode_before.json
new file mode 100755
index 0000000..f7659d4
--- /dev/null
+++ b/src/results_analyze/data/json-scan-results/lic_scancode_before.json
@@ -0,0 +1,10612 @@
+{
+ "headers": [
+ {
+ "tool_name": "scancode-toolkit",
+ "tool_version": "3.1.2",
+ "options": {
+ "input": [
+ "Issues/"
+ ],
+ "--classify": true,
+ "--copyright": true,
+ "--email": true,
+ "--generated": true,
+ "--info": true,
+ "--is-license-text": true,
+ "--json-pp": "lic_scancode_mar.json",
+ "--license": true,
+ "--license-clarity-score": true,
+ "--license-text": true,
+ "--package": true,
+ "--processes": "8",
+ "--summary": true,
+ "--summary-key-files": true,
+ "--url": true
+ },
+ "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.",
+ "start_timestamp": "2020-03-08T170025.059726",
+ "end_timestamp": "2020-03-08T170034.262356",
+ "message": null,
+ "errors": [],
+ "extra_data": {
+ "files_count": 45
+ }
+ }
+ ],
+ "summary": {
+ "license_expressions": [
+ {
+ "value": "gpl-2.0",
+ "count": 47
+ },
+ {
+ "value": "gpl-3.0",
+ "count": 27
+ },
+ {
+ "value": "gpl-1.0",
+ "count": 26
+ },
+ {
+ "value": "gpl-2.0-plus",
+ "count": 11
+ },
+ {
+ "value": "unknown",
+ "count": 11
+ },
+ {
+ "value": "lgpl-2.0-plus",
+ "count": 10
+ },
+ {
+ "value": "gpl-1.0-plus",
+ "count": 8
+ },
+ {
+ "value": "gpl-3.0-plus",
+ "count": 7
+ },
+ {
+ "value": "gpl-3.0-plus WITH tex-exception",
+ "count": 7
+ },
+ {
+ "value": "bsd-new",
+ "count": 6
+ },
+ {
+ "value": "lgpl-2.1",
+ "count": 5
+ },
+ {
+ "value": "lgpl-2.1-plus",
+ "count": 5
+ },
+ {
+ "value": "agpl-3.0-plus",
+ "count": 4
+ },
+ {
+ "value": "other-copyleft",
+ "count": 4
+ },
+ {
+ "value": "bzip2-libbzip-2010",
+ "count": 2
+ },
+ {
+ "value": "free-unknown",
+ "count": 2
+ },
+ {
+ "value": "gpl-2.0-plus WITH bison-exception-2.2",
+ "count": 2
+ },
+ {
+ "value": "agpl-1.0-plus",
+ "count": 1
+ },
+ {
+ "value": "apache-2.0 OR gpl-2.0",
+ "count": 1
+ },
+ {
+ "value": "bsd-new OR gpl-2.0-plus",
+ "count": 1
+ },
+ {
+ "value": "gpl-2.0 OR gpl-3.0",
+ "count": 1
+ },
+ {
+ "value": "gpl-2.0-plus AND bsd-new",
+ "count": 1
+ },
+ {
+ "value": "ibm-pibs",
+ "count": 1
+ },
+ {
+ "value": "lgpl-2.0-plus WITH wxwindows-exception-3.1",
+ "count": 1
+ },
+ {
+ "value": "lgpl-3.0",
+ "count": 1
+ },
+ {
+ "value": "ps-or-pdf-font-exception-20170817",
+ "count": 1
+ },
+ {
+ "value": "unknown-license-reference",
+ "count": 1
+ }
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger",
+ "count": 13
+ },
+ {
+ "value": "Copyright (c) Free Software Foundation, Inc.",
+ "count": 8
+ },
+ {
+ "value": null,
+ "count": 4
+ },
+ {
+ "value": "(c) Copyright Pantelis Antoniou, Intracom",
+ "count": 3
+ },
+ {
+ "value": "Copyright Kitware, Inc., Insight Software Consortium",
+ "count": 3
+ },
+ {
+ "value": "copyright (c) Bruce Korb",
+ "count": 3
+ },
+ {
+ "value": "(c) by Harald Welte ",
+ "count": 2
+ },
+ {
+ "value": "Copyright (c) Andy Green ",
+ "count": 2
+ },
+ {
+ "value": "(c) Benjamin Reed",
+ "count": 1
+ },
+ {
+ "value": "(c) Copyright Dan Malek, Embedded Edge, LLC, dan@embeddededge.com",
+ "count": 1
+ },
+ {
+ "value": "(c) David Hinds",
+ "count": 1
+ },
+ {
+ "value": "(c) Ufo Mechanic ",
+ "count": 1
+ },
+ {
+ "value": "COPYRIGHT I B M CORPORATION",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Arcom Control System Ltd",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Arcom Control Systems Ltd",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) David Woodhouse (dwmw2@infradead.org) Steven J. Hill (sjhill@realitydiluted.com)",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Jouni Malinen ",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Julian Seward ",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Lennert Buytenhek",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Mike Frysinger ",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) OpenVPN Technologies, Inc.",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) OpenWrt.org",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Samsung Electronics Co., Ltd. http://www.samsung.com",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) by Julian Seward",
+ "count": 1
+ },
+ {
+ "value": "Copyright ATMEL Corporation",
+ "count": 1
+ },
+ {
+ "value": "Copyright Dan Williams and Red Hat, Inc.",
+ "count": 1
+ },
+ {
+ "value": "Copyright Samsung Electronics Co Kyungmin Park ",
+ "count": 1
+ },
+ {
+ "value": "Copyright Simon Kelley",
+ "count": 1
+ },
+ {
+ "value": "Copyright The Chromium OS",
+ "count": 1
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "count": 13
+ },
+ {
+ "value": "Free Software Foundation, Inc.",
+ "count": 8
+ },
+ {
+ "value": null,
+ "count": 4
+ },
+ {
+ "value": "Bruce Korb",
+ "count": 3
+ },
+ {
+ "value": "Kitware, Inc., Insight Software Consortium",
+ "count": 3
+ },
+ {
+ "value": "Pantelis Antoniou, Intracom",
+ "count": 3
+ },
+ {
+ "value": "Andy Green",
+ "count": 2
+ },
+ {
+ "value": "Harald Welte",
+ "count": 2
+ },
+ {
+ "value": "Julian Seward",
+ "count": 2
+ },
+ {
+ "value": "ATMEL Corporation",
+ "count": 1
+ },
+ {
+ "value": "Arcom Control System Ltd",
+ "count": 1
+ },
+ {
+ "value": "Arcom Control Systems Ltd",
+ "count": 1
+ },
+ {
+ "value": "Benjamin Reed",
+ "count": 1
+ },
+ {
+ "value": "Dan Malek, Embedded Edge, LLC",
+ "count": 1
+ },
+ {
+ "value": "Dan Williams and Red Hat, Inc.",
+ "count": 1
+ },
+ {
+ "value": "David Hinds",
+ "count": 1
+ },
+ {
+ "value": "David Woodhouse Steven J. Hill",
+ "count": 1
+ },
+ {
+ "value": "I B M CORPORATION",
+ "count": 1
+ },
+ {
+ "value": "Jouni Malinen",
+ "count": 1
+ },
+ {
+ "value": "Lennert Buytenhek",
+ "count": 1
+ },
+ {
+ "value": "Mike Frysinger",
+ "count": 1
+ },
+ {
+ "value": "OpenVPN Technologies, Inc.",
+ "count": 1
+ },
+ {
+ "value": "OpenWrt.org",
+ "count": 1
+ },
+ {
+ "value": "Samsung Electronics Co Kyungmin Park",
+ "count": 1
+ },
+ {
+ "value": "Samsung Electronics Co., Ltd.",
+ "count": 1
+ },
+ {
+ "value": "Simon Kelley",
+ "count": 1
+ },
+ {
+ "value": "The Chromium OS",
+ "count": 1
+ },
+ {
+ "value": "Ufo Mechanic",
+ "count": 1
+ }
+ ],
+ "authors": [
+ {
+ "value": null,
+ "count": 39
+ },
+ {
+ "value": "Andras Kis-Szabo ",
+ "count": 1
+ },
+ {
+ "value": "Gary V. Vaughan",
+ "count": 1
+ },
+ {
+ "value": "Harald Welte Rusty Russell ",
+ "count": 1
+ },
+ {
+ "value": "Lennert Buytenhek ",
+ "count": 1
+ },
+ {
+ "value": "Mark Game",
+ "count": 1
+ },
+ {
+ "value": "Paul Rusty Russel and Harald Welte ",
+ "count": 1
+ },
+ {
+ "value": "Richard Stallman",
+ "count": 1
+ }
+ ],
+ "programming_language": [
+ {
+ "value": "C++",
+ "count": 38
+ },
+ {
+ "value": "Bash",
+ "count": 4
+ },
+ {
+ "value": null,
+ "count": 3
+ }
+ ],
+ "packages": []
+ },
+ "license_clarity_score": {
+ "score": 3,
+ "declared": false,
+ "discovered": 0.16,
+ "consistency": false,
+ "spdx": false,
+ "license_texts": false
+ },
+ "summary_of_key_files": {
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "programming_language": []
+ },
+ "files": [
+ {
+ "path": "Issues",
+ "type": "directory",
+ "name": "Issues",
+ "base_name": "Issues",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 45,
+ "dirs_count": 8,
+ "size_count": 514592,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1904-azure-iot-sdk-c-makefile.iot",
+ "type": "file",
+ "name": "1904-azure-iot-sdk-c-makefile.iot",
+ "base_name": "1904-azure-iot-sdk-c-makefile",
+ "extension": ".iot",
+ "size": 3391,
+ "date": "2020-03-08",
+ "sha1": "c7253ba65436387ccb9bf393378cbeb725c7325e",
+ "md5": "4f9cbbdc8c50f9cae2f978d879b18518",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-1.0-plus",
+ "score": 73.33,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-1.0-plus_43.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 15,
+ "matched_length": 11,
+ "match_coverage": 73.33,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# This is free software, licensed under the GNU General Public License v2."
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 50.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 4,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "gpl-3.0_500.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 18,
+ "matched_length": 9,
+ "match_coverage": 50.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# This is free software, licensed under the GNU General Public License v2.\n# See /LICENSE for more information."
+ }
+ ],
+ "license_expressions": [
+ "gpl-1.0-plus",
+ "gpl-3.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2006 OpenWrt.org",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "OpenWrt.org",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1906-libwebsockets-output.c",
+ "type": "file",
+ "name": "1906-libwebsockets-output.c",
+ "base_name": "1906-libwebsockets-output",
+ "extension": ".c",
+ "size": 33269,
+ "date": "2020-03-01",
+ "sha1": "a2d7a215eaedef8ab149bb6a5baedcb54a9850a3",
+ "md5": "8ce65112ba8a3873925f656022085d65",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.1",
+ "score": 100.0,
+ "name": "GNU Lesser General Public License 2.1",
+ "short_name": "LGPL 2.1",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html",
+ "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1",
+ "spdx_license_key": "LGPL-2.1-only",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only",
+ "start_line": 6,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lgpl-2.1_65.RULE",
+ "license_expression": "lgpl-2.1",
+ "licenses": [
+ "lgpl-2.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 74,
+ "matched_length": 74,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This library 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:\n * version 2.1 of the License.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details."
+ },
+ {
+ "key": "lgpl-2.1-plus",
+ "score": 33.0,
+ "name": "GNU Lesser General Public License 2.1 or later",
+ "short_name": "LGPL 2.1 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus",
+ "spdx_license_key": "LGPL-2.1-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later",
+ "start_line": 16,
+ "end_line": 17,
+ "matched_rule": {
+ "identifier": "lgpl-2.1-plus_83_1.RULE",
+ "license_expression": "lgpl-2.1-plus",
+ "licenses": [
+ "lgpl-2.1-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 33
+ },
+ "matched_text": " * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software"
+ },
+ {
+ "key": "other-copyleft",
+ "score": 90.0,
+ "name": "Other Copyleft Licenses",
+ "short_name": "Other Copyleft Licenses",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "nexB",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:other-copyleft",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 17,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "other-copyleft_fsf_address_1.RULE",
+ "license_expression": "other-copyleft",
+ "licenses": [
+ "other-copyleft"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 14,
+ "matched_length": 14,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n * MA 02110-1301 USA"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1",
+ "lgpl-2.1-plus",
+ "other-copyleft"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2010-2015 Andy Green ",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Andy Green",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "andy@warmcat.com",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1906-libwebsoclets-output.c",
+ "type": "file",
+ "name": "1906-libwebsoclets-output.c",
+ "base_name": "1906-libwebsoclets-output",
+ "extension": ".c",
+ "size": 22888,
+ "date": "2017-07-28",
+ "sha1": "6c990c4a7fc56bf9f1df2b859cf5e4be7d285d5e",
+ "md5": "3c9cf47646361f6c51e2c932c688dd88",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.1",
+ "score": 100.0,
+ "name": "GNU Lesser General Public License 2.1",
+ "short_name": "LGPL 2.1",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html",
+ "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1",
+ "spdx_license_key": "LGPL-2.1-only",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only",
+ "start_line": 6,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lgpl-2.1_65.RULE",
+ "license_expression": "lgpl-2.1",
+ "licenses": [
+ "lgpl-2.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 74,
+ "matched_length": 74,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This library 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:\n * version 2.1 of the License.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details."
+ },
+ {
+ "key": "lgpl-2.1-plus",
+ "score": 33.0,
+ "name": "GNU Lesser General Public License 2.1 or later",
+ "short_name": "LGPL 2.1 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus",
+ "spdx_license_key": "LGPL-2.1-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later",
+ "start_line": 16,
+ "end_line": 17,
+ "matched_rule": {
+ "identifier": "lgpl-2.1-plus_83_1.RULE",
+ "license_expression": "lgpl-2.1-plus",
+ "licenses": [
+ "lgpl-2.1-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 33
+ },
+ "matched_text": " * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software"
+ },
+ {
+ "key": "other-copyleft",
+ "score": 90.0,
+ "name": "Other Copyleft Licenses",
+ "short_name": "Other Copyleft Licenses",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "nexB",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:other-copyleft",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 17,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "other-copyleft_fsf_address_1.RULE",
+ "license_expression": "other-copyleft",
+ "licenses": [
+ "other-copyleft"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 14,
+ "matched_length": 14,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n * MA 02110-1301 USA"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1",
+ "lgpl-2.1-plus",
+ "other-copyleft"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2010-2015 Andy Green ",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Andy Green",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "andy@warmcat.com",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1907-bison-2.4.3-getargs.c",
+ "type": "file",
+ "name": "1907-bison-2.4.3-getargs.c",
+ "base_name": "1907-bison-2.4.3-getargs",
+ "extension": ".c",
+ "size": 15802,
+ "date": "2010-08-06",
+ "sha1": "6db3a67499cbba3a63354231bd4d35183e44f2ef",
+ "md5": "3ca1ea52773e7a8ccae4f1e5caa2b2ba",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 8,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus.LICENSE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": true,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 102,
+ "matched_length": 102,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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 (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see . */"
+ },
+ {
+ "key": "free-unknown",
+ "score": 100.0,
+ "name": "Free unknown license detected but not recognized",
+ "short_name": "Free unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 349,
+ "end_line": 350,
+ "matched_rule": {
+ "identifier": "free-unknown_1.RULE",
+ "license_expression": "free-unknown",
+ "licenses": [
+ "free-unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 23,
+ "matched_length": 23,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": "This is free software; see the source for copying conditions. There is NO \\\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \\"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus",
+ "free-unknown"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1984, 1986, 1989, 1992, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Copyright (c) Free Software Foundation, Inc.",
+ "start_line": 345,
+ "end_line": 346
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 345,
+ "end_line": 346
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [
+ {
+ "url": "http://www.gnu.org/licenses/",
+ "start_line": 19,
+ "end_line": 19
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1908-bzip2-1.0.5-bzip2.c",
+ "type": "file",
+ "name": "1908-bzip2-1.0.5-bzip2.c",
+ "base_name": "1908-bzip2-1.0.5-bzip2",
+ "extension": ".c",
+ "size": 58670,
+ "date": "2008-03-20",
+ "sha1": "5dd305e238554f6d0c5b9064a29607816a2e0878",
+ "md5": "df7798bc9d6feb2437a166e6936e285f",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "bzip2-libbzip-2010",
+ "score": 62.79,
+ "name": "bzip2 License 2010",
+ "short_name": "bzip2 License 2010",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "bzip",
+ "homepage_url": "https://github.com/asimonov-im/bzip2/blob/master/LICENSE",
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bzip2-libbzip-2010",
+ "spdx_license_key": "bzip2-1.0.6",
+ "spdx_url": "https://spdx.org/licenses/bzip2-1.0.6",
+ "start_line": 13,
+ "end_line": 17,
+ "matched_rule": {
+ "identifier": "bzip2-libbzip-2010_5.RULE",
+ "license_expression": "bzip2-libbzip-2010",
+ "licenses": [
+ "bzip2-libbzip-2010"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 43,
+ "matched_length": 27,
+ "match_coverage": 62.79,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " Please read the WARNING, DISCLAIMER and PATENTS sections in the \n README file.\n\n This program is released under the terms of the license contained\n in the file LICENSE."
+ },
+ {
+ "key": "bsd-new",
+ "score": 85.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 1610,
+ "end_line": 1611,
+ "matched_rule": {
+ "identifier": "bsd-new_547.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 20,
+ "matched_length": 17,
+ "match_coverage": 85.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " \" This program is free software; you can redistribute it and/or modify \"\n \" it under the terms set out in the LICENSE file, which is included \""
+ },
+ {
+ "key": "free-unknown",
+ "score": 90.7,
+ "name": "Free unknown license detected but not recognized",
+ "short_name": "Free unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 1610,
+ "end_line": 1616,
+ "matched_rule": {
+ "identifier": "free-unknown_26.RULE",
+ "license_expression": "free-unknown",
+ "licenses": [
+ "free-unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 43,
+ "matched_length": 39,
+ "match_coverage": 90.7,
+ "rule_relevance": 100
+ },
+ "matched_text": " \" This program is free software; you can redistribute it and/or modify \"\n \" it under the terms set out in the LICENSE file, which is included \"\n \" in the bzip2-1.0.5 source distribution. \"\n \" \"\n \" This program is distributed in the hope that it will be useful, \"\n \" but WITHOUT ANY WARRANTY; without even the implied warranty of \"\n \" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the \""
+ }
+ ],
+ "license_expressions": [
+ "bzip2-libbzip-2010",
+ "bsd-new",
+ "free-unknown"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1996-2007 Julian Seward ",
+ "start_line": 10,
+ "end_line": 11
+ },
+ {
+ "value": "Copyright (c) 1996-2007 by Julian Seward",
+ "start_line": 1608,
+ "end_line": 1608
+ }
+ ],
+ "holders": [
+ {
+ "value": "Julian Seward",
+ "start_line": 10,
+ "end_line": 11
+ },
+ {
+ "value": "Julian Seward",
+ "start_line": 1608,
+ "end_line": 1608
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "jseward@bzip.org",
+ "start_line": 11,
+ "end_line": 11
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1912-libtool-2.2.10-argz.c",
+ "type": "file",
+ "name": "1912-libtool-2.2.10-argz.c",
+ "base_name": "1912-libtool-2.2.10-argz",
+ "extension": ".c",
+ "size": 5903,
+ "date": "2010-05-20",
+ "sha1": "0463f3f27739f3fecb1e7c51130541fb213d7d29",
+ "md5": "9bc35c1c3c4ada358e2c0f1afeb4b8b8",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.1-plus",
+ "score": 40.62,
+ "name": "GNU Lesser General Public License 2.1 or later",
+ "short_name": "LGPL 2.1 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus",
+ "spdx_license_key": "LGPL-2.1-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later",
+ "start_line": 3,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lgpl-2.1-plus_newlib.RULE",
+ "license_expression": "lgpl-2.1-plus",
+ "licenses": [
+ "lgpl-2.1-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 128,
+ "matched_length": 52,
+ "match_coverage": 40.62,
+ "rule_relevance": 100
+ },
+ "matched_text": " Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.\n Written by Gary V. Vaughan, 2004\n\n NOTE: The canonical source of this file is maintained with the\n GNU Libtool package. Report bugs to bug-libtool@gnu.org.\n\nGNU Libltdl is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2 of the License, or (at your option) any later version.\n\nAs a special exception to the GNU Lesser General Public License,"
+ },
+ {
+ "key": "unknown",
+ "score": 16.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 14,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_11.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 16
+ },
+ "matched_text": "As a special exception to the GNU Lesser General Public License,"
+ },
+ {
+ "key": "lgpl-2.1-plus",
+ "score": 33.0,
+ "name": "GNU Lesser General Public License 2.1 or later",
+ "short_name": "LGPL 2.1 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus",
+ "spdx_license_key": "LGPL-2.1-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later",
+ "start_line": 21,
+ "end_line": 22,
+ "matched_rule": {
+ "identifier": "lgpl-2.1-plus_83_1.RULE",
+ "license_expression": "lgpl-2.1-plus",
+ "licenses": [
+ "lgpl-2.1-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 33
+ },
+ "matched_text": "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Lesser General Public License for more details."
+ },
+ {
+ "key": "lgpl-2.1-plus",
+ "score": 33.0,
+ "name": "GNU Lesser General Public License 2.1 or later",
+ "short_name": "LGPL 2.1 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus",
+ "spdx_license_key": "LGPL-2.1-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later",
+ "start_line": 24,
+ "end_line": 25,
+ "matched_rule": {
+ "identifier": "lgpl-2.1-plus_83_1.RULE",
+ "license_expression": "lgpl-2.1-plus",
+ "licenses": [
+ "lgpl-2.1-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 33
+ },
+ "matched_text": "You should have received a copy of the GNU Lesser General Public\nLicense along with GNU Libltdl; see the file COPYING.LIB. If not, a"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 38.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 26,
+ "end_line": 26,
+ "matched_rule": {
+ "identifier": "lgpl_3.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 7,
+ "matched_length": 7,
+ "match_coverage": 100.0,
+ "rule_relevance": 38
+ },
+ "matched_text": "copy can be downloaded from http://www.gnu.org/licenses/lgpl.html,"
+ },
+ {
+ "key": "other-copyleft",
+ "score": 90.0,
+ "name": "Other Copyleft Licenses",
+ "short_name": "Other Copyleft Licenses",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "nexB",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:other-copyleft",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 27,
+ "end_line": 28,
+ "matched_rule": {
+ "identifier": "other-copyleft_fsf_address_1.RULE",
+ "license_expression": "other-copyleft",
+ "licenses": [
+ "other-copyleft"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 14,
+ "matched_length": 14,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": "or obtained by writing to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA."
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1-plus",
+ "unknown",
+ "lgpl-2.1-plus",
+ "lgpl-2.1-plus",
+ "lgpl-2.0-plus",
+ "other-copyleft"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [
+ {
+ "value": "Gary V. Vaughan",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "bug-libtool@gnu.org",
+ "start_line": 7,
+ "end_line": 7
+ }
+ ],
+ "urls": [
+ {
+ "url": "http://www.gnu.org/licenses/lgpl.html",
+ "start_line": 26,
+ "end_line": 26
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1914-linux2.6.39-gpiolib.c",
+ "type": "file",
+ "name": "1914-linux2.6.39-gpiolib.c",
+ "base_name": "1914-linux2.6.39-gpiolib",
+ "extension": ".c",
+ "size": 7436,
+ "date": "2011-03-29",
+ "sha1": "f6a36929fb4fab8b085c622546370a4383fb525b",
+ "md5": "d65d50417d40e75f9c7a6c4d4627eff9",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 11,
+ "end_line": 13,
+ "matched_rule": {
+ "identifier": "gpl-2.0_8.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License version 2 as\n * published by the Free Software Foundation."
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 266,
+ "end_line": 266,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.base\t= S5PC100_GPL1(0),"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 268,
+ "end_line": 268,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.label\t= \"GPL1\","
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 273,
+ "end_line": 273,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.base\t= S5PC100_GPL2(0),"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 275,
+ "end_line": 275,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.label\t= \"GPL2\","
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 280,
+ "end_line": 280,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.base\t= S5PC100_GPL3(0),"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 282,
+ "end_line": 282,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\t\t\t.label\t= \"GPL3\","
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-3.0",
+ "gpl-3.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2010 Samsung Electronics Co., Ltd. http://www.samsung.com",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Copyright 2009 Samsung Electronics Co Kyungmin Park ",
+ "start_line": 6,
+ "end_line": 7
+ }
+ ],
+ "holders": [
+ {
+ "value": "Samsung Electronics Co., Ltd.",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Samsung Electronics Co Kyungmin Park",
+ "start_line": 6,
+ "end_line": 7
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "kyungmin.park@samsung.com",
+ "start_line": 7,
+ "end_line": 7
+ }
+ ],
+ "urls": [
+ {
+ "url": "http://www.samsung.com/",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1919-openvpn-client.up",
+ "type": "file",
+ "name": "1919-openvpn-client.up",
+ "base_name": "1919-openvpn-client",
+ "extension": ".up",
+ "size": 2829,
+ "date": "2014-05-01",
+ "sha1": "d05f4e2c11d6461239290dd205833555dc26e944",
+ "md5": "ecd15a368a3b24000d0726c9f3da905b",
+ "mime_type": "text/x-shellscript",
+ "file_type": "POSIX shell script, ASCII text executable",
+ "programming_language": "Bash",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": true,
+ "licenses": [
+ {
+ "key": "gpl-1.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl_85.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 4,
+ "matched_length": 4,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# Licensed under the GPL version 2"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 95.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_183.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 95.0
+ },
+ "matched_text": "# Licensed under the GPL version 2"
+ }
+ ],
+ "license_expressions": [
+ "gpl-1.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2005-2010 OpenVPN Technologies, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "OpenVPN Technologies, Inc.",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [
+ {
+ "url": "http://www.boldandbusted.com/",
+ "start_line": 8,
+ "end_line": 8
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": true,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1921-socat-2.0.0-error.h",
+ "type": "file",
+ "name": "1921-socat-2.0.0-error.h",
+ "base_name": "1921-socat-2.0.0-error",
+ "extension": ".h",
+ "size": 9820,
+ "date": "2010-06-20",
+ "sha1": "7da22330320f2f4b2a32b8582eff1f5da7d0879d",
+ "md5": "b808430986d2140b4079395da71d6169",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 20.59,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_394.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 7,
+ "match_coverage": 20.59,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1922-socat-2-xioexit.c",
+ "type": "file",
+ "name": "1922-socat-2-xioexit.c",
+ "base_name": "1922-socat-2-xioexit",
+ "extension": ".c",
+ "size": 549,
+ "date": "2010-06-20",
+ "sha1": "951b699947daf7984d2a9ee1ed37c668700c845e",
+ "md5": "58b147ccb330e46194fd79dd4fac4541",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-1.0-plus",
+ "score": 16.67,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl_185.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 42,
+ "matched_length": 7,
+ "match_coverage": 16.67,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "bzip2-libbzip-2010",
+ "score": 13.95,
+ "name": "bzip2 License 2010",
+ "short_name": "bzip2 License 2010",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "bzip",
+ "homepage_url": "https://github.com/asimonov-im/bzip2/blob/master/LICENSE",
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bzip2-libbzip-2010",
+ "spdx_license_key": "bzip2-1.0.6",
+ "spdx_url": "https://spdx.org/licenses/bzip2-1.0.6",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "bzip2-libbzip-2010_13.RULE",
+ "license_expression": "bzip2-libbzip-2010",
+ "licenses": [
+ "bzip2-libbzip-2010"
+ ],
+ "is_license_text": true,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 43,
+ "matched_length": 6,
+ "match_coverage": 13.95,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-1.0-plus",
+ "bzip2-libbzip-2010",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2005",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1923-socat-2-proxy.sh",
+ "type": "file",
+ "name": "1923-socat-2-proxy.sh",
+ "base_name": "1923-socat-2-proxy",
+ "extension": ".sh",
+ "size": 1672,
+ "date": "2010-06-20",
+ "sha1": "accf51e885a0eb60e4ef4d06bf29ec2f0791c20e",
+ "md5": "97d87b798daa69daf163cffe0e9dfb1c",
+ "mime_type": "text/x-shellscript",
+ "file_type": "Bourne-Again shell script, ASCII text executable",
+ "programming_language": "Bash",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": true,
+ "licenses": [
+ {
+ "key": "lgpl-2.1",
+ "score": 22.58,
+ "name": "GNU Lesser General Public License 2.1",
+ "short_name": "LGPL 2.1",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html",
+ "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1",
+ "spdx_license_key": "LGPL-2.1-only",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "lgpl-2.1_48.RULE",
+ "license_expression": "lgpl-2.1",
+ "licenses": [
+ "lgpl-2.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 31,
+ "matched_length": 7,
+ "match_coverage": 22.58,
+ "rule_relevance": 100
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2003-2004",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1924-socat-2-filan.h",
+ "type": "file",
+ "name": "1924-socat-2-filan.h",
+ "base_name": "1924-socat-2-filan",
+ "extension": ".h",
+ "size": 1168,
+ "date": "2010-06-20",
+ "sha1": "7752c709327a2cf795aef6db5a7db47b7996ae69",
+ "md5": "26dfb4b8f2aff7518118f5a8d2e6c589",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "ps-or-pdf-font-exception-20170817",
+ "score": 11.59,
+ "name": "PS/PDF font exception (2017-08-17)",
+ "short_name": "PS-or-PDF-font-exception-20170817",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Artifex Software",
+ "homepage_url": "https://github.com/ArtifexSoftware/urw-base35-fonts/blob/master/LICENSE",
+ "text_url": "https://github.com/ArtifexSoftware/urw-base35-fonts/blob/65962e27febc3883a17e651cdb23e783668c996f/LICENSE",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ps-or-pdf-font-exception-20170817",
+ "spdx_license_key": "PS-or-PDF-font-exception-20170817",
+ "spdx_url": "https://spdx.org/licenses/PS-or-PDF-font-exception-20170817",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "ps-or-pdf-font-exception-20170817.LICENSE",
+ "license_expression": "ps-or-pdf-font-exception-20170817",
+ "licenses": [
+ "ps-or-pdf-font-exception-20170817"
+ ],
+ "is_license_text": true,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 69,
+ "matched_length": 8,
+ "match_coverage": 11.59,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "ps-or-pdf-font-exception-20170817",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2008",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1925-tcpdump-4.1.1-print-stp.c",
+ "type": "file",
+ "name": "1925-tcpdump-4.1.1-print-stp.c",
+ "base_name": "1925-tcpdump-4.1.1-print-stp",
+ "extension": ".c",
+ "size": 11342,
+ "date": "2010-03-12",
+ "sha1": "b356964f7efd8d013095428c338be3941b3e9c0a",
+ "md5": "38389cb10f38c73bb4600161cd56c007",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "bsd-new",
+ "score": 79.17,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 4,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "bsd-new_or_gpl-2.0-plus_2.RULE",
+ "license_expression": "bsd-new OR gpl-2.0-plus",
+ "licenses": [
+ "bsd-new",
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 24,
+ "matched_length": 19,
+ "match_coverage": 79.17,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This software may be distributed either under the terms of the\n * BSD-style license that accompanies tcpdump or the GNU General"
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 79.17,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 4,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "bsd-new_or_gpl-2.0-plus_2.RULE",
+ "license_expression": "bsd-new OR gpl-2.0-plus",
+ "licenses": [
+ "bsd-new",
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 24,
+ "matched_length": 19,
+ "match_coverage": 79.17,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This software may be distributed either under the terms of the\n * BSD-style license that accompanies tcpdump or the GNU General"
+ },
+ {
+ "key": "apache-2.0",
+ "score": 20.0,
+ "name": "Apache License 2.0",
+ "short_name": "Apache 2.0",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Apache Software Foundation",
+ "homepage_url": "http://www.apache.org/licenses/",
+ "text_url": "http://www.apache.org/licenses/LICENSE-2.0",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0",
+ "spdx_license_key": "Apache-2.0",
+ "spdx_url": "https://spdx.org/licenses/Apache-2.0",
+ "start_line": 5,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "apache-2.0_or_gpl-2.0_2.RULE",
+ "license_expression": "apache-2.0 OR gpl-2.0",
+ "licenses": [
+ "apache-2.0",
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 30,
+ "matched_length": 6,
+ "match_coverage": 20.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * BSD-style license that accompanies tcpdump or the GNU General\n * Public License"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 20.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 5,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "apache-2.0_or_gpl-2.0_2.RULE",
+ "license_expression": "apache-2.0 OR gpl-2.0",
+ "licenses": [
+ "apache-2.0",
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 30,
+ "matched_length": 6,
+ "match_coverage": 20.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * BSD-style license that accompanies tcpdump or the GNU General\n * Public License"
+ }
+ ],
+ "license_expressions": [
+ "bsd-new OR gpl-2.0-plus",
+ "apache-2.0 OR gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2000 Lennert Buytenhek",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "Lennert Buytenhek",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [
+ {
+ "value": "Lennert Buytenhek ",
+ "start_line": 9,
+ "end_line": 9
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "buytenh@gnu.org",
+ "start_line": 9,
+ "end_line": 9
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1926-tcpdump-4.1.1-getopt.h",
+ "type": "file",
+ "name": "1926-tcpdump-4.1.1-getopt.h",
+ "base_name": "1926-tcpdump-4.1.1-getopt",
+ "extension": ".h",
+ "size": 4570,
+ "date": "2010-03-12",
+ "sha1": "6047dcf7ae87f2186258c1c9265b4064257c9aa3",
+ "md5": "ce4f0ef80d5226ad40a927c8c35259b0",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 7,
+ "end_line": 7,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_215.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "modify it under the terms of the GNU Library General Public License as"
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 69.23,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 7,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_283.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 78,
+ "matched_length": 54,
+ "match_coverage": 69.23,
+ "rule_relevance": 100
+ },
+ "matched_text": "modify it under the terms of the GNU Library General Public License as\npublished by the Free Software Foundation; either version 2 of the\nLicense, or (at your option) any later version.\n\nThe GNU C Library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLibrary General Public License for more details."
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 9.59,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 16,
+ "end_line": 17,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_20.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 73,
+ "matched_length": 7,
+ "match_coverage": 9.59,
+ "rule_relevance": 100
+ },
+ "matched_text": "You should have received a copy of the GNU Library General Public\nLicense along with the GNU C Library; see the file COPYING.LIB. If"
+ },
+ {
+ "key": "other-copyleft",
+ "score": 90.0,
+ "name": "Other Copyleft Licenses",
+ "short_name": "Other Copyleft Licenses",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "nexB",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:other-copyleft",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 18,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "other-copyleft_fsf_address_2.RULE",
+ "license_expression": "other-copyleft",
+ "licenses": [
+ "other-copyleft"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 11,
+ "matched_length": 11,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": "not, write to the Free Software Foundation, Inc., 675 Mass Ave,\nCambridge, MA 02139, USA. */"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.0-plus",
+ "gpl-2.0-plus",
+ "lgpl-2.0-plus",
+ "other-copyleft"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1927-u-boot-2010.06-4xx_pci.c",
+ "type": "file",
+ "name": "1927-u-boot-2010.06-4xx_pci.c",
+ "base_name": "1927-u-boot-2010.06-4xx_pci",
+ "extension": ".c",
+ "size": 29321,
+ "date": "2020-02-29",
+ "sha1": "e5f4c0fff5d22358916e0c25b71ba8d664e3fdc2",
+ "md5": "d10bd92c900de7aa998f9e1132b374c6",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "unknown-license-reference",
+ "score": 100.0,
+ "name": "Unknown License file reference",
+ "short_name": "Unknown License reference",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown-license-reference",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 2,
+ "end_line": 2,
+ "matched_rule": {
+ "identifier": "unknown-license-reference_dual-licensed.RULE",
+ "license_expression": "unknown-license-reference",
+ "licenses": [
+ "unknown-license-reference"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * This source code is dual-licensed. You may use it under the terms of"
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 26.67,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 2,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_288.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 45,
+ "matched_length": 12,
+ "match_coverage": 26.67,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This source code is dual-licensed. You may use it under the terms of\n * the GNU General Public license version 2, or under the license below."
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 56.52,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 2,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_or_gpl-3.0_3.RULE",
+ "license_expression": "gpl-2.0 OR gpl-3.0",
+ "licenses": [
+ "gpl-2.0",
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 23,
+ "matched_length": 13,
+ "match_coverage": 56.52,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This source code is dual-licensed. You may use it under the terms of\n * the GNU General Public license version 2, or under the license below."
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 56.52,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 2,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_or_gpl-3.0_3.RULE",
+ "license_expression": "gpl-2.0 OR gpl-3.0",
+ "licenses": [
+ "gpl-2.0",
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 23,
+ "matched_length": 13,
+ "match_coverage": 56.52,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This source code is dual-licensed. You may use it under the terms of\n * the GNU General Public license version 2, or under the license below."
+ },
+ {
+ "key": "unknown",
+ "score": 16.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "unknown_55.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 16
+ },
+ "matched_text": " * the GNU General Public license version 2, or under the license below."
+ },
+ {
+ "key": "ibm-pibs",
+ "score": 99.29,
+ "name": "IBM PowerPC Initialization and Boot Software",
+ "short_name": "IBM PowerPC Software",
+ "category": "Permissive",
+ "is_exception": false,
+ "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",
+ "text_url": "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:ibm-pibs",
+ "spdx_license_key": "IBM-pibs",
+ "spdx_url": "https://spdx.org/licenses/IBM-pibs",
+ "start_line": 5,
+ "end_line": 21,
+ "matched_rule": {
+ "identifier": "ibm-pibs.LICENSE",
+ "license_expression": "ibm-pibs",
+ "licenses": [
+ "ibm-pibs"
+ ],
+ "is_license_text": true,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 139,
+ "matched_length": 139,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This source code has been made available to you by IBM on an AS-IS\n * basis. Anyone receiving this source is licensed under IBM\n * copyrights to use it in any way he or she deems fit, including\n * copying it, modifying it, compiling it, and redistributing it either\n * with or without modifications. No license under IBM patents or\n * patent applications is to be implied by the copyright license.\n *\n * Any user of this software should understand that IBM cannot provide\n * technical support for this software and will not be responsible for\n * any consequences resulting from the use of this software.\n *\n * Any person who transfers this source code or any derivative work\n * must include the IBM copyright notice, this paragraph, and the\n * preceding two paragraphs in the transferred software.\n *\n * COPYRIGHT I B M CORPORATION 1995\n * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M"
+ }
+ ],
+ "license_expressions": [
+ "unknown-license-reference",
+ "gpl-2.0-plus",
+ "gpl-2.0 OR gpl-3.0",
+ "unknown",
+ "ibm-pibs"
+ ],
+ "copyrights": [
+ {
+ "value": "COPYRIGHT I B M CORPORATION 1995",
+ "start_line": 20,
+ "end_line": 21
+ }
+ ],
+ "holders": [
+ {
+ "value": "I B M CORPORATION",
+ "start_line": 20,
+ "end_line": 21
+ }
+ ],
+ "authors": [
+ {
+ "value": "Mark Game",
+ "start_line": 29,
+ "end_line": 29
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "stefan.roese@esd-electronics.com",
+ "start_line": 52,
+ "end_line": 52
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1929-README.mpc8349itx",
+ "type": "file",
+ "name": "1929-README.mpc8349itx",
+ "base_name": "1929-README",
+ "extension": ".mpc8349itx",
+ "size": 5756,
+ "date": "2020-02-29",
+ "sha1": "aea40fab4131c529cbcf62e0495cb6e35cab72ba",
+ "md5": "50d36ef2f62416937afda2da66d4b27c",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-3.0",
+ "score": 100.0,
+ "name": "GNU Lesser General Public License 3.0",
+ "short_name": "LGPL 3.0",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/lgpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/lgpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-3.0",
+ "spdx_license_key": "LGPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/LGPL-3.0-only",
+ "start_line": 27,
+ "end_line": 27,
+ "matched_rule": {
+ "identifier": "lgpl-3.0_58.RULE",
+ "license_expression": "lgpl-3.0",
+ "licenses": [
+ "lgpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "\tC LGPL3 ON (0)\t\tHRCW source, bit 2"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-3.0"
+ ],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1930-which-2.20-getopt.c",
+ "type": "file",
+ "name": "1930-which-2.20-getopt.c",
+ "base_name": "1930-which-2.20-getopt",
+ "extension": ".c",
+ "size": 30245,
+ "date": "2007-05-25",
+ "sha1": "1122bffdf476e2eda2821c8d32c98a17160a9f73",
+ "md5": "1fd652e360299e5ac45771bd2b225a05",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "agpl-1.0-plus",
+ "score": 78.08,
+ "name": "Affero General Public License 1.0 or later",
+ "short_name": "AGPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Affero",
+ "homepage_url": "http://www.affero.org/oagpl.html",
+ "text_url": "http://www.affero.org/oagpl.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:agpl-1.0-plus",
+ "spdx_license_key": "AGPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/AGPL-1.0-or-later",
+ "start_line": 9,
+ "end_line": 17,
+ "matched_rule": {
+ "identifier": "agpl-1.0-plus.LICENSE",
+ "license_expression": "agpl-1.0-plus",
+ "licenses": [
+ "agpl-1.0-plus"
+ ],
+ "is_license_text": true,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 73,
+ "matched_length": 57,
+ "match_coverage": 78.08,
+ "rule_relevance": 100
+ },
+ "matched_text": " The GNU C Library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; either version 2 of the\n License, or (at your option) any later version.\n\n The GNU C Library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details."
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 10,
+ "end_line": 10,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_215.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " modify it under the terms of the GNU Library General Public License as"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 68.5,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 12,
+ "end_line": 22,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_3.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 127,
+ "matched_length": 87,
+ "match_coverage": 68.5,
+ "rule_relevance": 100
+ },
+ "matched_text": " License, or (at your option) any later version.\n\n The GNU C Library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n\n You should have received a copy of the GNU Library General Public\n License along with the GNU C Library; see the file COPYING.LIB. If not,\n write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,\n Boston, MA 02110-1301, USA. */"
+ }
+ ],
+ "license_expressions": [
+ "agpl-1.0-plus",
+ "lgpl-2.0-plus",
+ "lgpl-2.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.",
+ "start_line": 6,
+ "end_line": 7
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 6,
+ "end_line": 7
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "roland@gnu.ai.mit.edu",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1931-which-2.20-bash.c",
+ "type": "file",
+ "name": "1931-which-2.20-bash.c",
+ "base_name": "1931-which-2.20-bash",
+ "extension": ".c",
+ "size": 12549,
+ "date": "2008-01-18",
+ "sha1": "14525d0441df25233fa6e5e8188baace3e4ddcbd",
+ "md5": "38d61ecf051843886a5ad2f1231a1047",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 98.23,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 7,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "gpl-2.0_88.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 113,
+ "matched_length": 111,
+ "match_coverage": 98.23,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License\n * as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02110-1301, USA."
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 1987 - 2002 Free Software Foundation, Inc.",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "holders": [
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 2,
+ "end_line": 2
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1932-wpa-bsd-gpl-vht.c",
+ "type": "file",
+ "name": "1932-wpa-bsd-gpl-vht.c",
+ "base_name": "1932-wpa-bsd-gpl-vht",
+ "extension": ".c",
+ "size": 7899,
+ "date": "2020-02-29",
+ "sha1": "e1ad13a7e5ab4616803143ce73ee012cd42ab38e",
+ "md5": "15741c972e912408c1df3ba1ca3dcb58",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-1.0-plus",
+ "score": 75.0,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 5,
+ "end_line": 8,
+ "matched_rule": {
+ "identifier": "gpl-1.0-plus_25.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 28,
+ "matched_length": 21,
+ "match_coverage": 75.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or modify\n * it under the terms of BSD license\n *\n * See README and COPYING for more details."
+ }
+ ],
+ "license_expressions": [
+ "gpl-1.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2002-2009, Jouni Malinen ",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Jouni Malinen",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "j@w1.fi",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1933-zlib-compile",
+ "type": "file",
+ "name": "1933-zlib-compile",
+ "base_name": "1933-zlib-compile",
+ "extension": "",
+ "size": 6933,
+ "date": "2020-02-29",
+ "sha1": "de939c70df1a09cfc5d184a305035c3602e717eb",
+ "md5": "a68285f641336e36a0df329ba793bc51",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 5.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 24,
+ "end_line": 24,
+ "matched_rule": {
+ "identifier": "lgpl_bare_single_word.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 5
+ },
+ "matched_text": " VALUE('LGPL') /* Service program library. */"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.0-plus"
+ ],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1910-cmake-3.4.1",
+ "type": "directory",
+ "name": "1910-cmake-3.4.1",
+ "base_name": "1910-cmake-3.4.1",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 2,
+ "dirs_count": 0,
+ "size_count": 56470,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1910-cmake-3.4.1/cmCommandArgumentParser.cxx",
+ "type": "file",
+ "name": "cmCommandArgumentParser.cxx",
+ "base_name": "cmCommandArgumentParser",
+ "extension": ".cxx",
+ "size": 53318,
+ "date": "2015-12-02",
+ "sha1": "a5a7ba78b9972bfddc0919e510b9abad879d6597",
+ "md5": "7d2947d3b87e369b58a4189705027dfc",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "unknown",
+ "score": 11.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_53.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 11
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "bsd-new",
+ "score": 90.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "bsd-new_26.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "agpl-3.0-plus",
+ "score": 25.88,
+ "name": "GNU Affero General Public License 3.0 or later",
+ "short_name": "AGPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/agpl.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:agpl-3.0-plus",
+ "spdx_license_key": "AGPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/AGPL-3.0-or-later",
+ "start_line": 8,
+ "end_line": 10,
+ "matched_rule": {
+ "identifier": "agpl-3.0-plus_109.RULE",
+ "license_expression": "agpl-3.0-plus",
+ "licenses": [
+ "agpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 85,
+ "matched_length": 22,
+ "match_coverage": 25.88,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " This software is distributed WITHOUT ANY WARRANTY; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n See the License for more information."
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 19,
+ "end_line": 45,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_with_bison-exception-2.2_1.RULE",
+ "license_expression": "gpl-2.0-plus WITH bison-exception-2.2",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bison-exception-2.2"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 216,
+ "matched_length": 216,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA. */\n\n/* As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison. */"
+ },
+ {
+ "key": "bison-exception-2.2",
+ "score": 100.0,
+ "name": "Bison 2.2 exception to GPL 2.0 or later",
+ "short_name": "Bison 2.2 exception to GPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bison-exception-2.2",
+ "spdx_license_key": "Bison-exception-2.2",
+ "spdx_url": "https://spdx.org/licenses/Bison-exception-2.2",
+ "start_line": 19,
+ "end_line": 45,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_with_bison-exception-2.2_1.RULE",
+ "license_expression": "gpl-2.0-plus WITH bison-exception-2.2",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bison-exception-2.2"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 216,
+ "matched_length": 216,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA. */\n\n/* As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison. */"
+ },
+ {
+ "key": "unknown",
+ "score": 11.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 126,
+ "end_line": 126,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_53.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 11
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "bsd-new",
+ "score": 90.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 126,
+ "end_line": 126,
+ "matched_rule": {
+ "identifier": "bsd-new_26.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 48.94,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 126,
+ "end_line": 131,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_with_wxwindows-exception-3.1_6.RULE",
+ "license_expression": "lgpl-2.0-plus WITH wxwindows-exception-3.1",
+ "licenses": [
+ "lgpl-2.0-plus",
+ "wxwindows-exception-3.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 47,
+ "matched_length": 23,
+ "match_coverage": 48.94,
+ "rule_relevance": 100
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");\n see accompanying file Copyright.txt for details.\n\n This software is distributed WITHOUT ANY WARRANTY; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n See the License for more information."
+ },
+ {
+ "key": "wxwindows-exception-3.1",
+ "score": 48.94,
+ "name": "WxWindows Library Exception to GPL 2.0 or later",
+ "short_name": "WxWindows Library Exception to GPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "wxWidgets",
+ "homepage_url": "http://www.wxwidgets.org/about/newlicen.htm",
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:wxwindows-exception-3.1",
+ "spdx_license_key": "WxWindows-exception-3.1",
+ "spdx_url": "https://spdx.org/licenses/WxWindows-exception-3.1",
+ "start_line": 126,
+ "end_line": 131,
+ "matched_rule": {
+ "identifier": "lgpl-2.0-plus_with_wxwindows-exception-3.1_6.RULE",
+ "license_expression": "lgpl-2.0-plus WITH wxwindows-exception-3.1",
+ "licenses": [
+ "lgpl-2.0-plus",
+ "wxwindows-exception-3.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 47,
+ "matched_length": 23,
+ "match_coverage": 48.94,
+ "rule_relevance": 100
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");\n see accompanying file Copyright.txt for details.\n\n This software is distributed WITHOUT ANY WARRANTY; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n See the License for more information."
+ }
+ ],
+ "license_expressions": [
+ "unknown",
+ "bsd-new",
+ "agpl-3.0-plus",
+ "gpl-2.0-plus WITH bison-exception-2.2",
+ "unknown",
+ "bsd-new",
+ "lgpl-2.0-plus WITH wxwindows-exception-3.1"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2000-2009 Kitware, Inc., Insight Software Consortium",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "value": "Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.",
+ "start_line": 16,
+ "end_line": 17
+ },
+ {
+ "value": "Copyright 2000-2009 Kitware, Inc., Insight Software Consortium",
+ "start_line": 124,
+ "end_line": 124
+ }
+ ],
+ "holders": [
+ {
+ "value": "Kitware, Inc., Insight Software Consortium",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 16,
+ "end_line": 17
+ },
+ {
+ "value": "Kitware, Inc., Insight Software Consortium",
+ "start_line": 124,
+ "end_line": 124
+ }
+ ],
+ "authors": [
+ {
+ "value": "Richard Stallman",
+ "start_line": 47,
+ "end_line": 48
+ }
+ ],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1910-cmake-3.4.1/cmCommandArgumentParserTokens.h",
+ "type": "file",
+ "name": "cmCommandArgumentParserTokens.h",
+ "base_name": "cmCommandArgumentParserTokens",
+ "extension": ".h",
+ "size": 3152,
+ "date": "2015-12-02",
+ "sha1": "0f8e4516af766f8452fe49cd068bf00c18c110d5",
+ "md5": "fd1f2b276e8890d0994fd52fc25f89ab",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "unknown",
+ "score": 11.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_53.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 11
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "bsd-new",
+ "score": 90.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "bsd-new_26.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 2,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " Distributed under the OSI-approved BSD License (the \"License\");"
+ },
+ {
+ "key": "agpl-3.0-plus",
+ "score": 25.88,
+ "name": "GNU Affero General Public License 3.0 or later",
+ "short_name": "AGPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/agpl.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:agpl-3.0-plus",
+ "spdx_license_key": "AGPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/AGPL-3.0-or-later",
+ "start_line": 8,
+ "end_line": 10,
+ "matched_rule": {
+ "identifier": "agpl-3.0-plus_109.RULE",
+ "license_expression": "agpl-3.0-plus",
+ "licenses": [
+ "agpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 85,
+ "matched_length": 22,
+ "match_coverage": 25.88,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " This software is distributed WITHOUT ANY WARRANTY; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n See the License for more information."
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 19,
+ "end_line": 45,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_with_bison-exception-2.2_1.RULE",
+ "license_expression": "gpl-2.0-plus WITH bison-exception-2.2",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bison-exception-2.2"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 216,
+ "matched_length": 216,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA. */\n\n/* As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison. */"
+ },
+ {
+ "key": "bison-exception-2.2",
+ "score": 100.0,
+ "name": "Bison 2.2 exception to GPL 2.0 or later",
+ "short_name": "Bison 2.2 exception to GPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bison-exception-2.2",
+ "spdx_license_key": "Bison-exception-2.2",
+ "spdx_url": "https://spdx.org/licenses/Bison-exception-2.2",
+ "start_line": 19,
+ "end_line": 45,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_with_bison-exception-2.2_1.RULE",
+ "license_expression": "gpl-2.0-plus WITH bison-exception-2.2",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bison-exception-2.2"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 216,
+ "matched_length": 216,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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, or (at your option)\n any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA. */\n\n/* As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison. */"
+ }
+ ],
+ "license_expressions": [
+ "unknown",
+ "bsd-new",
+ "agpl-3.0-plus",
+ "gpl-2.0-plus WITH bison-exception-2.2"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2000-2009 Kitware, Inc., Insight Software Consortium",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "value": "Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.",
+ "start_line": 16,
+ "end_line": 17
+ }
+ ],
+ "holders": [
+ {
+ "value": "Kitware, Inc., Insight Software Consortium",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "value": "Free Software Foundation, Inc.",
+ "start_line": 16,
+ "end_line": 17
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10",
+ "type": "directory",
+ "name": "1911-iptables1.4.10",
+ "base_name": "1911-iptables1.4.10",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 4,
+ "dirs_count": 0,
+ "size_count": 39957,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10/ip6tables-restore.c",
+ "type": "file",
+ "name": "ip6tables-restore.c",
+ "base_name": "ip6tables-restore",
+ "extension": ".c",
+ "size": 10879,
+ "date": "2010-10-29",
+ "sha1": "5f2a5ebe3ff3c8f6ed69fd423a747dd0442a6ea7",
+ "md5": "a2e1a2e51b6b8fab02759cec023f4062",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 23.53,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 8,
+ "end_line": 8,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_180.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 8,
+ "match_coverage": 23.53,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 90.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 8,
+ "end_line": 8,
+ "matched_rule": {
+ "identifier": "gpl-2.0_223.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [],
+ "holders": [],
+ "authors": [
+ {
+ "value": "Harald Welte Rusty Russell ",
+ "start_line": 5,
+ "end_line": 7
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "kisza@sch.bme.hu",
+ "start_line": 2,
+ "end_line": 2
+ },
+ {
+ "email": "laforge@gnumonks.org",
+ "start_line": 6,
+ "end_line": 6
+ },
+ {
+ "email": "rusty@linuxcare.com.au",
+ "start_line": 7,
+ "end_line": 7
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10/ip6tables-save.c",
+ "type": "file",
+ "name": "ip6tables-save.c",
+ "base_name": "ip6tables-save",
+ "extension": ".c",
+ "size": 4139,
+ "date": "2010-10-29",
+ "sha1": "53b44383c602544292ff4fed97a40d8d6c005fe4",
+ "md5": "ebc0f44bc2d1c505bd0bd9cfa365f28b",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 23.53,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_180.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 8,
+ "match_coverage": 23.53,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 90.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 6,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "gpl-2.0_223.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [],
+ "holders": [],
+ "authors": [
+ {
+ "value": "Andras Kis-Szabo ",
+ "start_line": 2,
+ "end_line": 6
+ },
+ {
+ "value": "Paul Rusty Russel and Harald Welte ",
+ "start_line": 2,
+ "end_line": 6
+ }
+ ],
+ "packages": [],
+ "emails": [
+ {
+ "email": "kisza@sch.bme.hu",
+ "start_line": 2,
+ "end_line": 2
+ },
+ {
+ "email": "rusty@linuxcare.com.au",
+ "start_line": 4,
+ "end_line": 4
+ },
+ {
+ "email": "laforge@gnumonks.org",
+ "start_line": 5,
+ "end_line": 5
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": true,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10/iptables-xml.c",
+ "type": "file",
+ "name": "iptables-xml.c",
+ "base_name": "iptables-xml",
+ "extension": ".c",
+ "size": 20302,
+ "date": "2010-10-29",
+ "sha1": "6c574556090271b9802c6e10ee1163fbf157bcb5",
+ "md5": "266a65603e63fb1678e926f6adf48d64",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 23.53,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_180.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 8,
+ "match_coverage": 23.53,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 90.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 6,
+ "end_line": 6,
+ "matched_rule": {
+ "identifier": "gpl-2.0_223.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * This code is distributed under the terms of GNU GPL v2"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) 2006 Ufo Mechanic ",
+ "start_line": 2,
+ "end_line": 4
+ },
+ {
+ "value": "(c) 2000-2002 by Harald Welte ",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Ufo Mechanic",
+ "start_line": 2,
+ "end_line": 4
+ },
+ {
+ "value": "Harald Welte",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "azez@ufomechanic.net",
+ "start_line": 2,
+ "end_line": 2
+ },
+ {
+ "email": "laforge@gnumonks.org",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "email": "rusty@linuxcare.com.au",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1911-iptables1.4.10/libipt_ECN.c",
+ "type": "file",
+ "name": "libipt_ECN.c",
+ "base_name": "libipt_ECN",
+ "extension": ".c",
+ "size": 4637,
+ "date": "2010-10-29",
+ "sha1": "29caa29a50aadc2479295ed557859d0ab8c8140b",
+ "md5": "605ebc2f5ada9ef56c960a9c3b82e6ba",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 23.53,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_180.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 34,
+ "matched_length": 8,
+ "match_coverage": 23.53,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is distributed under the terms of GNU GPL v2, 1991"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 90.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 5,
+ "end_line": 5,
+ "matched_rule": {
+ "identifier": "gpl-2.0_223.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 90.0
+ },
+ "matched_text": " * This program is distributed under the terms of GNU GPL v2, 1991"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) 2002 by Harald Welte ",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Harald Welte",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "laforge@gnumonks.org",
+ "start_line": 3,
+ "end_line": 3
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1915-linux2.6.39",
+ "type": "directory",
+ "name": "1915-linux2.6.39",
+ "base_name": "1915-linux2.6.39",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 2,
+ "dirs_count": 0,
+ "size_count": 11792,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1915-linux2.6.39/atmel.h",
+ "type": "file",
+ "name": "atmel.h",
+ "base_name": "atmel",
+ "extension": ".h",
+ "size": 1533,
+ "date": "2020-03-01",
+ "sha1": "5b83135603dfdbaada6eddde846af1fb181557b4",
+ "md5": "ac30123f978028a5f07d826c3007b960",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 96.46,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 7,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_103.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 113,
+ "matched_length": 109,
+ "match_coverage": 96.46,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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 (at your option) any later version.\n\n This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with Atmel wireless lan drivers; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2005 Dan Williams and Red Hat, Inc.",
+ "start_line": 5,
+ "end_line": 5
+ }
+ ],
+ "holders": [
+ {
+ "value": "Dan Williams and Red Hat, Inc.",
+ "start_line": 5,
+ "end_line": 5
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1915-linux2.6.39/atmel_cs.c",
+ "type": "file",
+ "name": "atmel_cs.c",
+ "base_name": "atmel_cs",
+ "extension": ".c",
+ "size": 10259,
+ "date": "2011-03-29",
+ "sha1": "d6fe468acf99fecbf31446cef2078761430fd444",
+ "md5": "6c8e43ebebe4908d1324196b4ccfd993",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-1.0-plus",
+ "score": 5.0,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 9,
+ "end_line": 9,
+ "matched_rule": {
+ "identifier": "gpl_bare_word_only.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 5
+ },
+ "matched_text": " released by Atmel corp. under the GPL in December 2002. It also"
+ },
+ {
+ "key": "gpl-3.0-plus",
+ "score": 96.46,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 16,
+ "end_line": 28,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_103.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 113,
+ "matched_length": 109,
+ "match_coverage": 96.46,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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 (at your option) any later version.\n\n This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with Atmel wireless lan drivers; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 61,
+ "end_line": 61,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_module_license_2.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "MODULE_LICENSE(\"GPL\");"
+ },
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 262,
+ "end_line": 297,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_or_bsd-new_10.RULE",
+ "license_expression": "gpl-2.0-plus AND bsd-new",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 284,
+ "matched_length": 284,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n In addition:\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE."
+ },
+ {
+ "key": "bsd-new",
+ "score": 100.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 262,
+ "end_line": 297,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_or_bsd-new_10.RULE",
+ "license_expression": "gpl-2.0-plus AND bsd-new",
+ "licenses": [
+ "gpl-2.0-plus",
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 284,
+ "matched_length": 284,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n In addition:\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE."
+ }
+ ],
+ "license_expressions": [
+ "gpl-1.0-plus",
+ "gpl-3.0-plus",
+ "gpl-2.0-plus",
+ "gpl-2.0-plus AND bsd-new"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2000-2001 ATMEL Corporation",
+ "start_line": 5,
+ "end_line": 6
+ },
+ {
+ "value": "Copyright 2003 Simon Kelley",
+ "start_line": 5,
+ "end_line": 6
+ },
+ {
+ "value": "(c) Benjamin Reed",
+ "start_line": 8,
+ "end_line": 11
+ },
+ {
+ "value": "(c) David Hinds",
+ "start_line": 8,
+ "end_line": 11
+ }
+ ],
+ "holders": [
+ {
+ "value": "ATMEL Corporation",
+ "start_line": 5,
+ "end_line": 6
+ },
+ {
+ "value": "Simon Kelley",
+ "start_line": 5,
+ "end_line": 6
+ },
+ {
+ "value": "Benjamin Reed",
+ "start_line": 8,
+ "end_line": 11
+ },
+ {
+ "value": "David Hinds",
+ "start_line": 8,
+ "end_line": 11
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "simon@thekelleys.org.uk",
+ "start_line": 14,
+ "end_line": 14
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1917-mtd-utils-1.5.2",
+ "type": "directory",
+ "name": "1917-mtd-utils-1.5.2",
+ "base_name": "1917-mtd-utils-1.5.2",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 3,
+ "dirs_count": 0,
+ "size_count": 25714,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1917-mtd-utils-1.5.2/flash_erase.c",
+ "type": "file",
+ "name": "flash_erase.c",
+ "base_name": "flash_erase",
+ "extension": ".c",
+ "size": 7617,
+ "date": "2020-02-29",
+ "sha1": "9a3f43e5751b57c09a786151b5b9d7efc64aeaad",
+ "md5": "41aaaff4f4ad3c59c387dec133cc6d62",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 18,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_85.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 113,
+ "matched_length": 113,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " This program 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 (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA"
+ },
+ {
+ "key": "gpl-1.0-plus",
+ "score": 61.54,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 83,
+ "end_line": 88,
+ "matched_rule": {
+ "identifier": "gpl-1.0-plus_81.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 39,
+ "matched_length": 24,
+ "match_coverage": 61.54,
+ "rule_relevance": 100
+ },
+ "matched_text": "\t\t\t\"%1$s comes with NO WARRANTY \"\n\t\t\t\"to the extent permitted by law. \"\n\t\t\t\" \"\n\t\t\t\"You may redistribute copies of %1$s \"\n\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ },
+ {
+ "key": "gpl-3.0-plus",
+ "score": 63.64,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 87,
+ "end_line": 88,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_33.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 22,
+ "matched_length": 14,
+ "match_coverage": 63.64,
+ "rule_relevance": 100
+ },
+ "matched_text": "\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-1.0-plus",
+ "gpl-3.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2000 Arcom Control System Ltd",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Copyright (c) 2010 Mike Frysinger ",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Copyright (c) 2000 Arcom Control Systems Ltd",
+ "start_line": 81,
+ "end_line": 81
+ }
+ ],
+ "holders": [
+ {
+ "value": "Arcom Control System Ltd",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Mike Frysinger",
+ "start_line": 3,
+ "end_line": 4
+ },
+ {
+ "value": "Arcom Control Systems Ltd",
+ "start_line": 81,
+ "end_line": 81
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "vapier@gentoo.org",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1917-mtd-utils-1.5.2/mtdpart.c",
+ "type": "file",
+ "name": "mtdpart.c",
+ "base_name": "mtdpart",
+ "extension": ".c",
+ "size": 4516,
+ "date": "2015-07-25",
+ "sha1": "e60094a03536141e0abed905943b0bfd7691a7df",
+ "md5": "0777e0d4e715583062d09b0620deb86d",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 6,
+ "end_line": 8,
+ "matched_rule": {
+ "identifier": "gpl-2.0_8.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License version 2 as\n * published by the Free Software Foundation."
+ },
+ {
+ "key": "gpl-1.0-plus",
+ "score": 61.54,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 50,
+ "end_line": 55,
+ "matched_rule": {
+ "identifier": "gpl-1.0-plus_81.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 39,
+ "matched_length": 24,
+ "match_coverage": 61.54,
+ "rule_relevance": 100
+ },
+ "matched_text": "\t\t\t\"%1$s comes with NO WARRANTY \"\n\t\t\t\"to the extent permitted by law. \"\n\t\t\t\" \"\n\t\t\t\"You may redistribute copies of %1$s \"\n\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ },
+ {
+ "key": "gpl-3.0-plus",
+ "score": 63.64,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 54,
+ "end_line": 55,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_33.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 22,
+ "matched_length": 14,
+ "match_coverage": 63.64,
+ "rule_relevance": 100
+ },
+ "matched_text": "\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0",
+ "gpl-1.0-plus",
+ "gpl-3.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright 2015 The Chromium OS",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "The Chromium OS",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1917-mtd-utils-1.5.2/nanddump.c",
+ "type": "file",
+ "name": "nanddump.c",
+ "base_name": "nanddump",
+ "extension": ".c",
+ "size": 13581,
+ "date": "2015-07-25",
+ "sha1": "dc162bafed96cd6ad7e5c9906260d3a9a74afa6d",
+ "md5": "83aa76115f5c2207b458449de4161e22",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 7,
+ "end_line": 9,
+ "matched_rule": {
+ "identifier": "gpl-2.0_8.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 31,
+ "matched_length": 31,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * This program is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License version 2 as\n * published by the Free Software Foundation."
+ },
+ {
+ "key": "gpl-1.0-plus",
+ "score": 61.54,
+ "name": "GNU General Public License 1.0 or later",
+ "short_name": "GPL 1.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus",
+ "spdx_license_key": "GPL-1.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-or-later",
+ "start_line": 68,
+ "end_line": 73,
+ "matched_rule": {
+ "identifier": "gpl-1.0-plus_81.RULE",
+ "license_expression": "gpl-1.0-plus",
+ "licenses": [
+ "gpl-1.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 39,
+ "matched_length": 24,
+ "match_coverage": 61.54,
+ "rule_relevance": 100
+ },
+ "matched_text": "\t\t\t\"%1$s comes with NO WARRANTY \"\n\t\t\t\"to the extent permitted by law. \"\n\t\t\t\" \"\n\t\t\t\"You may redistribute copies of %1$s \"\n\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ },
+ {
+ "key": "gpl-3.0-plus",
+ "score": 63.64,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 72,
+ "end_line": 73,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_33.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 22,
+ "matched_length": 14,
+ "match_coverage": 63.64,
+ "rule_relevance": 100
+ },
+ "matched_text": "\t\t\t\"under the terms of the GNU General Public Licence. \"\n\t\t\t\"See the file `COPYING' for more information. \","
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0",
+ "gpl-1.0-plus",
+ "gpl-3.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright (c) 2000 David Woodhouse (dwmw2@infradead.org) Steven J. Hill (sjhill@realitydiluted.com)",
+ "start_line": 4,
+ "end_line": 5
+ }
+ ],
+ "holders": [
+ {
+ "value": "David Woodhouse Steven J. Hill",
+ "start_line": 4,
+ "end_line": 5
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "dwmw2@infradead.org",
+ "start_line": 4,
+ "end_line": 4
+ },
+ {
+ "email": "sjhill@realitydiluted.com",
+ "start_line": 5,
+ "end_line": 5
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1918-ntp-4.2.6",
+ "type": "directory",
+ "name": "1918-ntp-4.2.6",
+ "base_name": "1918-ntp-4.2.6",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 2,
+ "dirs_count": 0,
+ "size_count": 18825,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1918-ntp-4.2.6/genshell.c",
+ "type": "file",
+ "name": "genshell.c",
+ "base_name": "genshell",
+ "extension": ".c",
+ "size": 12726,
+ "date": "2010-12-25",
+ "sha1": "6e90946dc8b6f8a580b168a32818bf3c896e7946",
+ "md5": "917f0c4669c39e5785d65ec66ee7f13a",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "unknown",
+ "score": 27.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 14,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_67.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 5,
+ "matched_length": 5,
+ "match_coverage": 100.0,
+ "rule_relevance": 27
+ },
+ "matched_text": " * licensed under the terms of the LGPL. The redistributable library"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 5.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 14,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lgpl_bare_single_word.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 5
+ },
+ "matched_text": " * licensed under the terms of the LGPL. The redistributable library"
+ },
+ {
+ "key": "unknown",
+ "score": 27.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 15,
+ "end_line": 15,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_67.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 5,
+ "matched_length": 5,
+ "match_coverage": 100.0,
+ "rule_relevance": 27
+ },
+ "matched_text": " * (``libopts'') is licensed under the terms of either the LGPL or, at the"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 5.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 15,
+ "end_line": 15,
+ "matched_rule": {
+ "identifier": "lgpl_bare_single_word.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 5
+ },
+ "matched_text": " * (``libopts'') is licensed under the terms of either the LGPL or, at the"
+ },
+ {
+ "key": "bsd-new",
+ "score": 99.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 16,
+ "end_line": 16,
+ "matched_rule": {
+ "identifier": "bsd-new_145.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 99.0
+ },
+ "matched_text": " * users discretion, the BSD license. See the AutoOpts and/or libopts sources"
+ },
+ {
+ "key": "agpl-3.0-plus",
+ "score": 90.83,
+ "name": "GNU Affero General Public License 3.0 or later",
+ "short_name": "AGPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/agpl.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:agpl-3.0-plus",
+ "spdx_license_key": "AGPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/AGPL-3.0-or-later",
+ "start_line": 16,
+ "end_line": 34,
+ "matched_rule": {
+ "identifier": "agpl-3.0-plus_112.RULE",
+ "license_expression": "agpl-3.0-plus",
+ "licenses": [
+ "agpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 109,
+ "matched_length": 99,
+ "match_coverage": 90.83,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * users discretion, the BSD license. See the AutoOpts and/or libopts sources\n * for details.\n *\n * This source file is copyrighted and licensed under the following terms:\n *\n * genshellopt copyright (c) 1999-2009 Bruce Korb - all rights reserved\n *\n * genshellopt is free software: you can redistribute it and/or modify it\n * under the terms of the GNU General Public License as published by the\n * Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * genshellopt is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n * See the GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License along\n * with this program. If not, see ."
+ },
+ {
+ "key": "unknown",
+ "score": 27.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 19,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_77.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 5,
+ "matched_length": 5,
+ "match_coverage": 100.0,
+ "rule_relevance": 27
+ },
+ "matched_text": " * This source file is copyrighted and licensed under the following terms:"
+ },
+ {
+ "key": "gpl-3.0-plus",
+ "score": 98.99,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 54,
+ "end_line": 62,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_27.RULE",
+ "license_expression": "gpl-3.0-plus",
+ "licenses": [
+ "gpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 98,
+ "matched_length": 98,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": "\"genshellopt is free software: you can redistribute it and/or modify it under \\\nthe terms of the GNU General Public License as published by the Free Software \\\nFoundation, either version 3 of the License, or (at your option) any later \\\nversion. \\\ngenshellopt is distributed in the hope that it will be useful, but WITHOUT ANY \\\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A \\\nPARTICULAR PURPOSE. See the GNU General Public License for more details. \\\nYou should have received a copy of the GNU General Public License along with \\\nthis program. If not, see .\";"
+ }
+ ],
+ "license_expressions": [
+ "unknown",
+ "lgpl-2.0-plus",
+ "unknown",
+ "lgpl-2.0-plus",
+ "bsd-new",
+ "agpl-3.0-plus",
+ "unknown",
+ "gpl-3.0-plus"
+ ],
+ "copyrights": [
+ {
+ "value": "copyright (c) 1999-2009 Bruce Korb",
+ "start_line": 21,
+ "end_line": 21
+ },
+ {
+ "value": "copyright (c) 1999-2009 Bruce Korb",
+ "start_line": 51,
+ "end_line": 52
+ }
+ ],
+ "holders": [
+ {
+ "value": "Bruce Korb",
+ "start_line": 21,
+ "end_line": 21
+ },
+ {
+ "value": "Bruce Korb",
+ "start_line": 51,
+ "end_line": 52
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "autogen-users@lists.sourceforge.net",
+ "start_line": 211,
+ "end_line": 211
+ }
+ ],
+ "urls": [
+ {
+ "url": "http://www.gnu.org/licenses/",
+ "start_line": 34,
+ "end_line": 34
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": true,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1918-ntp-4.2.6/genshell.h",
+ "type": "file",
+ "name": "genshell.h",
+ "base_name": "genshell",
+ "extension": ".h",
+ "size": 6099,
+ "date": "2010-12-25",
+ "sha1": "b276e2f2340b5f26f9b221955a7f7372b90a8ed6",
+ "md5": "fd83b22c2bd42578333334064a1d8f11",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "unknown",
+ "score": 27.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 14,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_67.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 5,
+ "matched_length": 5,
+ "match_coverage": 100.0,
+ "rule_relevance": 27
+ },
+ "matched_text": " * licensed under the terms of the LGPL. The redistributable library"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 5.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 14,
+ "end_line": 14,
+ "matched_rule": {
+ "identifier": "lgpl_bare_single_word.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 5
+ },
+ "matched_text": " * licensed under the terms of the LGPL. The redistributable library"
+ },
+ {
+ "key": "unknown",
+ "score": 27.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 15,
+ "end_line": 15,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_67.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 5,
+ "matched_length": 5,
+ "match_coverage": 100.0,
+ "rule_relevance": 27
+ },
+ "matched_text": " * (``libopts'') is licensed under the terms of either the LGPL or, at the"
+ },
+ {
+ "key": "lgpl-2.0-plus",
+ "score": 5.0,
+ "name": "GNU Library General Public License 2.0 or later",
+ "short_name": "LGPL 2.0 or later",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus",
+ "spdx_license_key": "LGPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.0-or-later",
+ "start_line": 15,
+ "end_line": 15,
+ "matched_rule": {
+ "identifier": "lgpl_bare_single_word.RULE",
+ "license_expression": "lgpl-2.0-plus",
+ "licenses": [
+ "lgpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 5
+ },
+ "matched_text": " * (``libopts'') is licensed under the terms of either the LGPL or, at the"
+ },
+ {
+ "key": "bsd-new",
+ "score": 99.0,
+ "name": "BSD-3-Clause",
+ "short_name": "BSD-3-Clause",
+ "category": "Permissive",
+ "is_exception": false,
+ "owner": "Regents of the University of California",
+ "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "text_url": "http://www.opensource.org/licenses/BSD-3-Clause",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new",
+ "spdx_license_key": "BSD-3-Clause",
+ "spdx_url": "https://spdx.org/licenses/BSD-3-Clause",
+ "start_line": 16,
+ "end_line": 16,
+ "matched_rule": {
+ "identifier": "bsd-new_145.RULE",
+ "license_expression": "bsd-new",
+ "licenses": [
+ "bsd-new"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 3,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 99.0
+ },
+ "matched_text": " * users discretion, the BSD license. See the AutoOpts and/or libopts sources"
+ },
+ {
+ "key": "agpl-3.0-plus",
+ "score": 90.83,
+ "name": "GNU Affero General Public License 3.0 or later",
+ "short_name": "AGPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/agpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/agpl.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:agpl-3.0-plus",
+ "spdx_license_key": "AGPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/AGPL-3.0-or-later",
+ "start_line": 16,
+ "end_line": 34,
+ "matched_rule": {
+ "identifier": "agpl-3.0-plus_112.RULE",
+ "license_expression": "agpl-3.0-plus",
+ "licenses": [
+ "agpl-3.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 109,
+ "matched_length": 99,
+ "match_coverage": 90.83,
+ "rule_relevance": 100.0
+ },
+ "matched_text": " * users discretion, the BSD license. See the AutoOpts and/or libopts sources\n * for details.\n *\n * This source file is copyrighted and licensed under the following terms:\n *\n * genshellopt copyright (c) 1999-2009 Bruce Korb - all rights reserved\n *\n * genshellopt is free software: you can redistribute it and/or modify it\n * under the terms of the GNU General Public License as published by the\n * Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * genshellopt is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n * See the GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License along\n * with this program. If not, see ."
+ },
+ {
+ "key": "unknown",
+ "score": 27.0,
+ "name": "Unknown license detected but not recognized",
+ "short_name": "unknown",
+ "category": "Unstated License",
+ "is_exception": false,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:unknown",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 19,
+ "end_line": 19,
+ "matched_rule": {
+ "identifier": "lead-in_unknown_77.RULE",
+ "license_expression": "unknown",
+ "licenses": [
+ "unknown"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 5,
+ "matched_length": 5,
+ "match_coverage": 100.0,
+ "rule_relevance": 27
+ },
+ "matched_text": " * This source file is copyrighted and licensed under the following terms:"
+ }
+ ],
+ "license_expressions": [
+ "unknown",
+ "lgpl-2.0-plus",
+ "unknown",
+ "lgpl-2.0-plus",
+ "bsd-new",
+ "agpl-3.0-plus",
+ "unknown"
+ ],
+ "copyrights": [
+ {
+ "value": "copyright (c) 1999-2009 Bruce Korb",
+ "start_line": 21,
+ "end_line": 21
+ }
+ ],
+ "holders": [
+ {
+ "value": "Bruce Korb",
+ "start_line": 21,
+ "end_line": 21
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [
+ {
+ "url": "http://www.gnu.org/licenses/",
+ "start_line": 34,
+ "end_line": 34
+ }
+ ],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": true,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0",
+ "type": "directory",
+ "name": "1920-socat-2.0.0",
+ "base_name": "1920-socat-2.0.0",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 7,
+ "dirs_count": 0,
+ "size_count": 16137,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/gatherinfo.sh",
+ "type": "file",
+ "name": "gatherinfo.sh",
+ "base_name": "gatherinfo",
+ "extension": ".sh",
+ "size": 4097,
+ "date": "2010-06-20",
+ "sha1": "d3e3a7f9b9e146bedd30c4de2963994e5323ce2c",
+ "md5": "9433b1c30dfd3a2dbadf7df9e19e3a3a",
+ "mime_type": "text/x-shellscript",
+ "file_type": "POSIX shell script, ASCII text executable",
+ "programming_language": "Bash",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": true,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 13.21,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ },
+ {
+ "key": "tex-exception",
+ "score": 13.21,
+ "name": "TeX exception to GPL 3.0",
+ "short_name": "TeX exception to GPL 3.0",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tex-exception",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus WITH tex-exception",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001, 2002",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/hostan.c",
+ "type": "file",
+ "name": "hostan.c",
+ "base_name": "hostan",
+ "extension": ".c",
+ "size": 2335,
+ "date": "2010-06-20",
+ "sha1": "5e8c3d4d91376235c6d7f5a2abbaaf71e7190168",
+ "md5": "38aab4665c0065e97ef4081a5d4acc6b",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 13.21,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "tex-exception",
+ "score": 13.21,
+ "name": "TeX exception to GPL 3.0",
+ "short_name": "TeX exception to GPL 3.0",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tex-exception",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus WITH tex-exception",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2006-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/hostan.h",
+ "type": "file",
+ "name": "hostan.h",
+ "base_name": "hostan",
+ "extension": ".h",
+ "size": 272,
+ "date": "2010-06-20",
+ "sha1": "875a4aff4f68c9a48c8829a0805c0ecd46c6386e",
+ "md5": "7f12fa21ca5c2fb52b477ae53c8e634f",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 13.21,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "tex-exception",
+ "score": 13.21,
+ "name": "TeX exception to GPL 3.0",
+ "short_name": "TeX exception to GPL 3.0",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tex-exception",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus WITH tex-exception",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2006",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/procan.h",
+ "type": "file",
+ "name": "procan.h",
+ "base_name": "procan",
+ "extension": ".h",
+ "size": 317,
+ "date": "2010-06-20",
+ "sha1": "66a21a26d896b5da756e60a07483328b8b07266f",
+ "md5": "da30850e5e098436cd532ee45c65377d",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 13.21,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "tex-exception",
+ "score": 13.21,
+ "name": "TeX exception to GPL 3.0",
+ "short_name": "TeX exception to GPL 3.0",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tex-exception",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus WITH tex-exception",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/sslcls.h",
+ "type": "file",
+ "name": "sslcls.h",
+ "base_name": "sslcls",
+ "extension": ".h",
+ "size": 4197,
+ "date": "2010-06-20",
+ "sha1": "cf0acd039541327f2331ea452ffbad5d2accd723",
+ "md5": "619d2d775c2b2a49bd9abda2ce51a673",
+ "mime_type": "text/plain",
+ "file_type": "ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 13.21,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "tex-exception",
+ "score": 13.21,
+ "name": "TeX exception to GPL 3.0",
+ "short_name": "TeX exception to GPL 3.0",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tex-exception",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus WITH tex-exception",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2007",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/xio-ascii.c",
+ "type": "file",
+ "name": "xio-ascii.c",
+ "base_name": "xio-ascii",
+ "extension": ".c",
+ "size": 4613,
+ "date": "2010-06-20",
+ "sha1": "c5e58748bbadad5c004012c90eea0ea90bb375b0",
+ "md5": "b719bb96f3b714555cc66e5c668897df",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 13.21,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "tex-exception",
+ "score": 13.21,
+ "name": "TeX exception to GPL 3.0",
+ "short_name": "TeX exception to GPL 3.0",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tex-exception",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus WITH tex-exception",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2002-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1920-socat-2.0.0/xio-creat.h",
+ "type": "file",
+ "name": "xio-creat.h",
+ "base_name": "xio-creat",
+ "extension": ".h",
+ "size": 306,
+ "date": "2010-06-20",
+ "sha1": "72545320afeb44d39c63cac4cea68e96b43a5d96",
+ "md5": "3c80e4fb0336f80f34db2eef99bdfa31",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-3.0-plus",
+ "score": 13.21,
+ "name": "GNU General Public License 3.0 or later",
+ "short_name": "GPL 3.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus",
+ "spdx_license_key": "GPL-3.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-or-later",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "tex-exception",
+ "score": 13.21,
+ "name": "TeX exception to GPL 3.0",
+ "short_name": "TeX exception to GPL 3.0",
+ "category": "Copyleft Limited",
+ "is_exception": true,
+ "owner": "Unspecified",
+ "homepage_url": null,
+ "text_url": "",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:tex-exception",
+ "spdx_license_key": null,
+ "spdx_url": "",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-3.0-plus_with_tex-exception_4.RULE",
+ "license_expression": "gpl-3.0-plus WITH tex-exception",
+ "licenses": [
+ "gpl-3.0-plus",
+ "tex-exception"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 53,
+ "matched_length": 7,
+ "match_coverage": 13.21,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "gpl-3.0-plus WITH tex-exception",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2007",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1923-socat-2.0.0",
+ "type": "directory",
+ "name": "1923-socat-2.0.0",
+ "base_name": "1923-socat-2.0.0",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 2,
+ "dirs_count": 0,
+ "size_count": 12568,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1923-socat-2.0.0/proxy.sh",
+ "type": "file",
+ "name": "proxy.sh",
+ "base_name": "proxy",
+ "extension": ".sh",
+ "size": 1672,
+ "date": "2010-06-20",
+ "sha1": "accf51e885a0eb60e4ef4d06bf29ec2f0791c20e",
+ "md5": "97d87b798daa69daf163cffe0e9dfb1c",
+ "mime_type": "text/x-shellscript",
+ "file_type": "Bourne-Again shell script, ASCII text executable",
+ "programming_language": "Bash",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": true,
+ "licenses": [
+ {
+ "key": "lgpl-2.1",
+ "score": 22.58,
+ "name": "GNU Lesser General Public License 2.1",
+ "short_name": "LGPL 2.1",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html",
+ "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1",
+ "spdx_license_key": "LGPL-2.1-only",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "lgpl-2.1_48.RULE",
+ "license_expression": "lgpl-2.1",
+ "licenses": [
+ "lgpl-2.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 31,
+ "matched_length": 7,
+ "match_coverage": 22.58,
+ "rule_relevance": 100
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 4,
+ "end_line": 4,
+ "matched_rule": {
+ "identifier": "gpl-2.0_756.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 6,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "# Published under the GNU General Public License V.2, see file COPYING"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1",
+ "gpl-2.0"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2003-2004",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 3,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1923-socat-2.0.0/sycls.h",
+ "type": "file",
+ "name": "sycls.h",
+ "base_name": "sycls",
+ "extension": ".h",
+ "size": 10896,
+ "date": "2010-06-20",
+ "sha1": "16f589a32339e7ab843dedc53bce00d8fe28c62d",
+ "md5": "1b4b348b08afdbcccf61c89b89fb23f2",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "lgpl-2.1",
+ "score": 22.58,
+ "name": "GNU Lesser General Public License 2.1",
+ "short_name": "LGPL 2.1",
+ "category": "Copyleft Limited",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html",
+ "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1",
+ "spdx_license_key": "LGPL-2.1-only",
+ "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only",
+ "start_line": 3,
+ "end_line": 3,
+ "matched_rule": {
+ "identifier": "lgpl-2.1_48.RULE",
+ "license_expression": "lgpl-2.1",
+ "licenses": [
+ "lgpl-2.1"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "3-seq",
+ "rule_length": 31,
+ "matched_length": 7,
+ "match_coverage": 22.58,
+ "rule_relevance": 100
+ },
+ "matched_text": "/* Published under the GNU General Public License V.2, see file COPYING */"
+ }
+ ],
+ "license_expressions": [
+ "lgpl-2.1"
+ ],
+ "copyrights": [
+ {
+ "value": "Copyright Gerhard Rieger 2001-2008",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "holders": [
+ {
+ "value": "Gerhard Rieger",
+ "start_line": 2,
+ "end_line": 3
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1928-u-boot-2010.06",
+ "type": "directory",
+ "name": "1928-u-boot-2010.06",
+ "base_name": "1928-u-boot-2010.06",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 3,
+ "dirs_count": 0,
+ "size_count": 61117,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1928-u-boot-2010.06/netphone.c",
+ "type": "file",
+ "name": "netphone.c",
+ "base_name": "netphone",
+ "extension": ".c",
+ "size": 21728,
+ "date": "2020-02-29",
+ "sha1": "cd6c613c03f6b6e3d7842e793697c0df7328a0de",
+ "md5": "de38c8cc584aca60d2651f5805dcb324",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 22,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_439.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 125,
+ "matched_length": 125,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * See file CREDITS for list of people who contributed to this\n * project.\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License as\n * published by the Free Software Foundation; either version 2 of\n * the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\t See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 125,
+ "end_line": 125,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 126,
+ "end_line": 126,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_0001\t0x00040000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 127,
+ "end_line": 127,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_1110\t0x00080000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 128,
+ "end_line": 128,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_1111\t0x000C0000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 130,
+ "end_line": 130,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 131,
+ "end_line": 131,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_0001\t0x00010000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 132,
+ "end_line": 132,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_1110\t0x00020000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 133,
+ "end_line": 133,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_1111\t0x00030000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 135,
+ "end_line": 135,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 136,
+ "end_line": 136,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_0001\t0x00004000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 137,
+ "end_line": 137,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_1110\t0x00008000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 138,
+ "end_line": 138,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_1111\t0x0000C000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 175,
+ "end_line": 175,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_0000\tGPL1_0000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 176,
+ "end_line": 176,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_0001\tGPL1_0001"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 177,
+ "end_line": 177,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_1110\tGPL1_1110"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 178,
+ "end_line": 178,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_1111\tGPL1_1111"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 180,
+ "end_line": 180,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_0000\tGPL2_0000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 181,
+ "end_line": 181,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_0001\tGPL2_0001"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 182,
+ "end_line": 182,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_1110\tGPL2_1110"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 183,
+ "end_line": 183,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_1111\tGPL2_1111"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 185,
+ "end_line": 185,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_0000\t\tGPL3_0000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 186,
+ "end_line": 186,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_0001\t\tGPL3_0001"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 187,
+ "end_line": 187,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_1110\t\tGPL3_1110"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 188,
+ "end_line": 188,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_1111\t\tGPL3_1111"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) Copyright 2000-2004 Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "panto@intracom.gr",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "email": "wd@denx.de",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1928-u-boot-2010.06/netta2.c",
+ "type": "file",
+ "name": "netta2.c",
+ "base_name": "netta2",
+ "extension": ".c",
+ "size": 20474,
+ "date": "2020-03-08",
+ "sha1": "c1caeabd823a75fa1b3ebafa63c5366b7d152a95",
+ "md5": "81a78fe04b1976983ab479c3b3910c0c",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 6,
+ "end_line": 22,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_439.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 125,
+ "matched_length": 125,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * See file CREDITS for list of people who contributed to this\n * project.\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License as\n * published by the Free Software Foundation; either version 2 of\n * the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\t See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 123,
+ "end_line": 123,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 124,
+ "end_line": 124,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_0001\t0x00040000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 125,
+ "end_line": 125,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_1110\t0x00080000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 126,
+ "end_line": 126,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_1111\t0x000C0000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 128,
+ "end_line": 128,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 129,
+ "end_line": 129,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_0001\t0x00010000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 130,
+ "end_line": 130,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_1110\t0x00020000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 131,
+ "end_line": 131,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_1111\t0x00030000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 133,
+ "end_line": 133,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 134,
+ "end_line": 134,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_0001\t0x00004000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 135,
+ "end_line": 135,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_1110\t0x00008000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 136,
+ "end_line": 136,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_1111\t0x0000C000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 173,
+ "end_line": 173,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_0000\tGPL1_0000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 174,
+ "end_line": 174,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_0001\tGPL1_0001"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 175,
+ "end_line": 175,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_1110\tGPL1_1110"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 176,
+ "end_line": 176,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_1111\tGPL1_1111"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 178,
+ "end_line": 178,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_0000\tGPL2_0000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 179,
+ "end_line": 179,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_0001\tGPL2_0001"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 180,
+ "end_line": 180,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_1110\tGPL2_1110"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 181,
+ "end_line": 181,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_1111\tGPL2_1111"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 183,
+ "end_line": 183,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_0000\t\tGPL3_0000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 184,
+ "end_line": 184,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_0001\t\tGPL3_0001"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 185,
+ "end_line": 185,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_1110\t\tGPL3_1110"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 186,
+ "end_line": 186,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_1111\t\tGPL3_1111"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) Copyright 2000-2004 Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "holders": [
+ {
+ "value": "Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 4
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "panto@intracom.gr",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "email": "wd@denx.de",
+ "start_line": 4,
+ "end_line": 4
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ },
+ {
+ "path": "Issues/1928-u-boot-2010.06/stxxtc.c",
+ "type": "file",
+ "name": "stxxtc.c",
+ "base_name": "stxxtc",
+ "extension": ".c",
+ "size": 18915,
+ "date": "2020-03-08",
+ "sha1": "58e1309e14568e5ddecf30a7bcbd5992b4273a95",
+ "md5": "901b2a10f53c3de1fb7d4d140b799cc1",
+ "mime_type": "text/x-c",
+ "file_type": "C source, ASCII text",
+ "programming_language": "C++",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "licenses": [
+ {
+ "key": "gpl-2.0-plus",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0 or later",
+ "short_name": "GPL 2.0 or later",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus",
+ "spdx_license_key": "GPL-2.0-or-later",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later",
+ "start_line": 8,
+ "end_line": 24,
+ "matched_rule": {
+ "identifier": "gpl-2.0-plus_439.RULE",
+ "license_expression": "gpl-2.0-plus",
+ "licenses": [
+ "gpl-2.0-plus"
+ ],
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "matcher": "2-aho",
+ "rule_length": 125,
+ "matched_length": 125,
+ "match_coverage": 100.0,
+ "rule_relevance": 100
+ },
+ "matched_text": " * See file CREDITS for list of people who contributed to this\n * project.\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License as\n * published by the Free Software Foundation; either version 2 of\n * the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\t See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 120,
+ "end_line": 120,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 121,
+ "end_line": 121,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_0001\t0x00040000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 122,
+ "end_line": 122,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_1110\t0x00080000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 123,
+ "end_line": 123,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL1_1111\t0x000C0000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 125,
+ "end_line": 125,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 126,
+ "end_line": 126,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_0001\t0x00010000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 127,
+ "end_line": 127,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_1110\t0x00020000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 128,
+ "end_line": 128,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL2_1111\t0x00030000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 130,
+ "end_line": 130,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_0000\t0x00000000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 131,
+ "end_line": 131,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_0001\t0x00004000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 132,
+ "end_line": 132,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_1110\t0x00008000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 133,
+ "end_line": 133,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define GPL3_1111\t0x0000C000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 170,
+ "end_line": 170,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_0000\tGPL1_0000"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 171,
+ "end_line": 171,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_0001\tGPL1_0001"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 172,
+ "end_line": 172,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_1110\tGPL1_1110"
+ },
+ {
+ "key": "gpl-1.0",
+ "score": 100.0,
+ "name": "GNU General Public License 1.0",
+ "short_name": "GPL 1.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-1.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0",
+ "spdx_license_key": "GPL-1.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-1.0-only",
+ "start_line": 173,
+ "end_line": 173,
+ "matched_rule": {
+ "identifier": "gpl-1.0_11.RULE",
+ "license_expression": "gpl-1.0",
+ "licenses": [
+ "gpl-1.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define RAS_1111\tGPL1_1111"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 175,
+ "end_line": 175,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_0000\tGPL2_0000"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 176,
+ "end_line": 176,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_0001\tGPL2_0001"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 177,
+ "end_line": 177,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_1110\tGPL2_1110"
+ },
+ {
+ "key": "gpl-2.0",
+ "score": 100.0,
+ "name": "GNU General Public License 2.0",
+ "short_name": "GPL 2.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-2.0.txt",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0",
+ "spdx_license_key": "GPL-2.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-2.0-only",
+ "start_line": 178,
+ "end_line": 178,
+ "matched_rule": {
+ "identifier": "gpl-2.0_690.RULE",
+ "license_expression": "gpl-2.0",
+ "licenses": [
+ "gpl-2.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define CAS_1111\tGPL2_1111"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 180,
+ "end_line": 180,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_0000\t\tGPL3_0000"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 181,
+ "end_line": 181,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_0001\t\tGPL3_0001"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 182,
+ "end_line": 182,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_1110\t\tGPL3_1110"
+ },
+ {
+ "key": "gpl-3.0",
+ "score": 100.0,
+ "name": "GNU General Public License 3.0",
+ "short_name": "GPL 3.0",
+ "category": "Copyleft",
+ "is_exception": false,
+ "owner": "Free Software Foundation (FSF)",
+ "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html",
+ "text_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html",
+ "reference_url": "https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0",
+ "spdx_license_key": "GPL-3.0-only",
+ "spdx_url": "https://spdx.org/licenses/GPL-3.0-only",
+ "start_line": 183,
+ "end_line": 183,
+ "matched_rule": {
+ "identifier": "gpl-3.0_123.RULE",
+ "license_expression": "gpl-3.0",
+ "licenses": [
+ "gpl-3.0"
+ ],
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": true,
+ "matcher": "2-aho",
+ "rule_length": 1,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 100.0
+ },
+ "matched_text": "#define WE_1111\t\tGPL3_1111"
+ }
+ ],
+ "license_expressions": [
+ "gpl-2.0-plus",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-1.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-2.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0",
+ "gpl-3.0"
+ ],
+ "copyrights": [
+ {
+ "value": "(c) Copyright 2000-2004 Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 6
+ },
+ {
+ "value": "(c) Copyright 2005 Dan Malek, Embedded Edge, LLC, dan@embeddededge.com",
+ "start_line": 2,
+ "end_line": 6
+ }
+ ],
+ "holders": [
+ {
+ "value": "Pantelis Antoniou, Intracom",
+ "start_line": 2,
+ "end_line": 6
+ },
+ {
+ "value": "Dan Malek, Embedded Edge, LLC",
+ "start_line": 2,
+ "end_line": 6
+ }
+ ],
+ "authors": [],
+ "packages": [],
+ "emails": [
+ {
+ "email": "panto@intracom.gr",
+ "start_line": 3,
+ "end_line": 3
+ },
+ {
+ "email": "wd@denx.de",
+ "start_line": 4,
+ "end_line": 4
+ },
+ {
+ "email": "dan@embeddededge.com",
+ "start_line": 6,
+ "end_line": 6
+ }
+ ],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 0,
+ "dirs_count": 0,
+ "size_count": 0,
+ "scan_errors": []
+ }
+ ]
+}
diff --git a/src/results_analyze/data/json-scan-results/sample_metadata.json b/src/results_analyze/data/json-scan-results/sample_metadata.json
new file mode 100644
index 0000000..6b406c3
--- /dev/null
+++ b/src/results_analyze/data/json-scan-results/sample_metadata.json
@@ -0,0 +1,13 @@
+{
+ "type":"scancode",
+ "url":"cd:/pypi/pypi/-/ccxt/1.28.76",
+ "fetchedAt":"2020-05-26T21:18:08.229Z",
+ "links":
+ {"self":{"href":"urn:pypi:pypi:-:ccxt:revision:1.28.76:tool:scancode:3.2.2","type":"resource"},
+ "siblings":{"href":"urn:pypi:pypi:-:ccxt:revision:1.28.76:tool:scancode","type":"collection"}},
+ "schemaVersion":"3.2.2",
+ "toolVersion":"3.0.2",
+ "contentType":"application/json",
+ "releaseDate":"2020-05-26T20:42:30",
+ "processedAt":"2020-05-26T21:20:17.862Z"
+}
diff --git a/src/results_analyze/load_results_package.py b/src/results_analyze/load_results_package.py
index f0acfba..6960022 100644
--- a/src/results_analyze/load_results_package.py
+++ b/src/results_analyze/load_results_package.py
@@ -50,6 +50,8 @@ def __init__(self):
self.results_file = ResultsDataFrameFile()
self.metadata_filename = 'projects_metadata.h5'
self.hdf_dir = os.path.join(os.path.dirname(__file__), 'data/hdf5/')
+ self.json_input_dir = os.path.join(os.path.dirname(__file__), 'data/json-scan-results/')
+ self.mock_metadata_filename = 'sample_metadata.json'
@staticmethod
def get_hdf5_file_path(hdf_dir, filename):
@@ -118,6 +120,29 @@ def append_metadata_dataframe(self, metadata_dataframe):
self.store_dataframe_to_hdf5(metadata_dataframe, file_path, df_key='metadata',
h5_format='Table', is_append=True)
+ @staticmethod
+ def mock_db_data_from_json(json_filepath, metadata_filepath):
+ """
+ Takes Input from a File containing Scancode Scan Results, and returns a DataFrame is the same
+ format as that of the DataBase Data.
+
+ :param json_filepath: String
+ :param metadata_filepath: String
+
+ :return json_df: pd.Dataframe
+ Returns a DataFrame with two columns "path" and "json_content". And one row of Data.
+ """
+
+ json_dict_content = PostgresFetch.import_data_from_json(json_filepath)
+ json_dict_metadata = PostgresFetch.import_data_from_json(metadata_filepath)
+
+ json_dict = pd.Series([{"_metadata": json_dict_metadata, "content": json_dict_content}])
+ mock_path = pd.Series(["mock/data/-/multiple-packages/random/1.0.0/tool/scancode/3.2.2.json"])
+
+ json_df = pd.DataFrame({"path": mock_path, "json_content": json_dict})
+
+ return json_df
+
@staticmethod
def decompress_dataframe(compressed_dataframe):
"""
@@ -264,16 +289,24 @@ def modify_package_level_dataframe(self, metadata_dataframe):
return files_dataframe, metadata_dataframe
- def create_package_level_dataframe(self):
+ def create_package_level_dataframe(self, json_filename=None):
"""
Creates a Package Level DataFrame, with File/License Information Levels.
+ :param json_filename : String
+ Optional Parameter, if Passed, Takes input from a JSON File instead of a Postgres Database
+
:returns main_dataframe : df.DataFrame object
Main Storage DataFrame
Has Project, File and License level information organized via pd.MultiIndex.
"""
# Loads Dataframes
- path_json_dataframe = self.convert_records_to_json()
+ if json_filename:
+ json_filepath = os.path.join(self.json_input_dir, json_filename)
+ mock_metadata_filepath = os.path.join(self.json_input_dir, self.mock_metadata_filename)
+ path_json_dataframe = self.mock_db_data_from_json(json_filepath, mock_metadata_filepath)
+ else:
+ path_json_dataframe = self.convert_records_to_json()
# ToDo: Assert Scancode Options
diff --git a/src/results_analyze/postgres.py b/src/results_analyze/postgres.py
index cf1009d..dedf469 100644
--- a/src/results_analyze/postgres.py
+++ b/src/results_analyze/postgres.py
@@ -51,13 +51,13 @@ def get_credentials_filepath(self):
file_path = os.path.join(self.data_dir, 'credentials.json')
return file_path
- def import_database_credentials(self):
+ @staticmethod
+ def import_data_from_json(file_path):
"""
Fetch postgres Database credentials.
:returns credentials: JSON dict with credentials
"""
- file_path = self.get_credentials_filepath()
with open(file_path) as f:
credentials = json.load(f)
@@ -91,7 +91,8 @@ def init_connection(self):
:returns connection: psycopg2.connection Object
"""
# Fetch credentials from data/credentials.json
- credentials = self.import_database_credentials()
+ file_path = self.get_credentials_filepath()
+ credentials = self.import_data_from_json(file_path)
# Initialize Connection Object
connection = psycopg2.connect(user=credentials['user'],