From e3aaf6309e65ad8d814d9713a20d4e930b07cbe9 Mon Sep 17 00:00:00 2001 From: Arijit De Date: Wed, 31 May 2023 20:50:06 +0530 Subject: [PATCH 1/9] Publish PDF version of RTD documentation Made changes in the .readthedocs.yaml to enable format for downloading pdf and epub versions of the documentation and added latex_elements in the conf.py file which generates the pdf without blank pages. The minimum version requirement for sphinx was 6.2.1 which was causing build failure in read the docs, hence changing it 3.3.1 as written in setup.cfg of nexB/aboutcode Signed-off-by: Arijit De --- .readthedocs.yml | 5 +++++ docs/source/conf.py | 6 ++++++ setup.cfg | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 1b71cd9..2a7dc0b 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -5,6 +5,11 @@ # Required version: 2 +# Build PDF & ePub +formats: + - epub + - pdf + # Where the Sphinx conf.py file is located sphinx: configuration: docs/source/conf.py diff --git a/docs/source/conf.py b/docs/source/conf.py index d5435e7..39835c6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -95,3 +95,9 @@ .. role:: img-title-para """ + +# -- Options for LaTeX output ------------------------------------------------- + +latex_elements = { + 'classoptions': ',openany,oneside' +} \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 18bfbde..b02fd34 100644 --- a/setup.cfg +++ b/setup.cfg @@ -58,6 +58,6 @@ testing = isort docs = - Sphinx == 6.2.1 + Sphinx == 5.1.0 sphinx-rtd-theme >= 0.5.0 doc8 >= 0.8.1 From 5be7a24d3f6b581f3dd9aef193923a4a23420dea Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Tue, 6 Jun 2023 21:46:49 +0530 Subject: [PATCH 2/9] Bump github actions versions #75 Update the following actions: * actions/checkout * actions/setup-python Reference: https://github.com/nexB/skeleton/issues/75 Signed-off-by: Ayan Sinha Mahapatra --- .github/workflows/docs-ci.yml | 4 ++-- .github/workflows/pypi-release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs-ci.yml b/.github/workflows/docs-ci.yml index 18a44aa..511b7c2 100644 --- a/.github/workflows/docs-ci.yml +++ b/.github/workflows/docs-ci.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 22315ff..4ebe10d 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -24,9 +24,9 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: 3.9 From 78a64e5348f0bca0cb0fa5ead20ae4e4e16e5766 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Mon, 10 Jul 2023 15:17:09 +0530 Subject: [PATCH 3/9] Update github actions Reference: https://github.com/nexB/skeleton/issues/75 Signed-off-by: Ayan Sinha Mahapatra --- .github/workflows/pypi-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 4ebe10d..9585730 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -78,6 +78,6 @@ jobs: - name: Publish to PyPI if: startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} From a4d8628e1fc3c956f28ac8104e2d895bfad7f592 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Mon, 10 Jul 2023 15:22:22 +0530 Subject: [PATCH 4/9] Update RTD buil Signed-off-by: Ayan Sinha Mahapatra --- .readthedocs.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.readthedocs.yml b/.readthedocs.yml index 2a7dc0b..8ab2368 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -5,6 +5,12 @@ # Required version: 2 +# Build in latest ubuntu/python +build: + os: ubuntu-22.04 + tools: + python: "3.11" + # Build PDF & ePub formats: - epub From 4c68fba913f5ebd7598200e14b8085e5d38865a2 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Mon, 10 Jul 2023 15:34:19 +0530 Subject: [PATCH 5/9] Fix unordered lists issue Signed-off-by: Ayan Sinha Mahapatra --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index b02fd34..ae1043e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -58,6 +58,6 @@ testing = isort docs = - Sphinx == 5.1.0 - sphinx-rtd-theme >= 0.5.0 - doc8 >= 0.8.1 + Sphinx>=5.0.2 + sphinx-rtd-theme>=1.0.0 + doc8>=0.11.2 \ No newline at end of file From c33241d5f0407f740e0a49280ffc65a60f1ab247 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Thu, 25 May 2023 23:25:58 +0530 Subject: [PATCH 6/9] Add redirects for docs Signed-off-by: Ayan Sinha Mahapatra --- docs/source/conf.py | 6 ++++++ setup.cfg | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 39835c6..918d62c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,8 +29,14 @@ # ones. extensions = [ "sphinx.ext.intersphinx", + "sphinx_reredirects", ] + +# Redirects for olds pages +# See https://documatt.gitlab.io/sphinx-reredirects/usage.html +redirects = {} + # This points to aboutcode.readthedocs.io # In case of "undefined label" ERRORS check docs on intersphinx to troubleshoot # Link was created at commit - https://github.com/nexB/aboutcode/commit/faea9fcf3248f8f198844fe34d43833224ac4a83 diff --git a/setup.cfg b/setup.cfg index ae1043e..d6c7da7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -60,4 +60,6 @@ testing = docs = Sphinx>=5.0.2 sphinx-rtd-theme>=1.0.0 - doc8>=0.11.2 \ No newline at end of file + sphinx-reredirects >= 0.1.2 + doc8>=0.11.2 + From 8c042228dbd0f2f8e61852e7fb60e848d9dd4371 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Tue, 18 Jul 2023 10:05:03 -0700 Subject: [PATCH 7/9] Add macOS-13 job in azure-pipelines.yml Signed-off-by: Jono Yang --- README.rst | 5 ++++- azure-pipelines.yml | 12 ++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index be65734..6cbd839 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ A Simple Python Project Skeleton ================================ This repo attempts to standardize the structure of the Python-based project's -repositories using modern Python packaging and configuration techniques. +repositories using modern Python packaging and configuration techniques. Using this `blog post`_ as inspiration, this repository serves as the base for all new Python projects and is mergeable in existing repositories as well. @@ -41,6 +41,9 @@ More usage instructions can be found in ``docs/skeleton-usage.rst``. Release Notes ============= +- 2023-07-18: + - Add macOS-13 job in azure-pipelines.yml + - 2022-03-04: - Synchronize configure and configure.bat scripts for sanity - Update CI operating system support with latest Azure OS images diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5067fd4..764883d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,7 +26,7 @@ jobs: - template: etc/ci/azure-posix.yml parameters: job_name: macos11_cpython - image_name: macos-11 + image_name: macOS-11 python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] test_suites: all: venv/bin/pytest -n 2 -vvs @@ -34,7 +34,15 @@ jobs: - template: etc/ci/azure-posix.yml parameters: job_name: macos12_cpython - image_name: macos-12 + image_name: macOS-12 + python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] + test_suites: + all: venv/bin/pytest -n 2 -vvs + + - template: etc/ci/azure-posix.yml + parameters: + job_name: macos13_cpython + image_name: macOS-13 python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] test_suites: all: venv/bin/pytest -n 2 -vvs From 5ab9b3a15e0095a8186ca3870cb9f9eade83833d Mon Sep 17 00:00:00 2001 From: Omkar Phansopkar Date: Wed, 18 Oct 2023 15:42:56 +0530 Subject: [PATCH 8/9] Added docs server script, dark mode & copybutton for docs Signed-off-by: Omkar Phansopkar --- .github/workflows/docs-ci.yml | 3 --- docs/Makefile | 8 ++++++++ docs/make.bat | 12 ++++++++++++ docs/scripts/doc8_style_check.sh | 0 docs/source/conf.py | 4 ++++ setup.cfg | 3 +++ 6 files changed, 27 insertions(+), 3 deletions(-) mode change 100644 => 100755 docs/scripts/doc8_style_check.sh diff --git a/.github/workflows/docs-ci.yml b/.github/workflows/docs-ci.yml index 511b7c2..ada779b 100644 --- a/.github/workflows/docs-ci.yml +++ b/.github/workflows/docs-ci.yml @@ -20,9 +20,6 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Give permission to run scripts - run: chmod +x ./docs/scripts/doc8_style_check.sh - - name: Install Dependencies run: pip install -e .[docs] diff --git a/docs/Makefile b/docs/Makefile index d0c3cbf..788b039 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -5,6 +5,7 @@ # from the environment for the first two. SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build +SPHINXAUTOBUILD = sphinx-autobuild SOURCEDIR = source BUILDDIR = build @@ -14,6 +15,13 @@ help: .PHONY: help Makefile +# Run the development server using sphinx-autobuild +docs: + @echo + @echo "Starting up the docs server..." + @echo + $(SPHINXAUTOBUILD) --port 8000 --watch ${SOURCEDIR} $(SOURCEDIR) "$(BUILDDIR)/html" $(SPHINXOPTS) $(O) + # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile diff --git a/docs/make.bat b/docs/make.bat index 6247f7e..4a3c1a4 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -7,11 +7,16 @@ REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) +if "%SPHINXAUTOBUILD%" == "" ( + set SPHINXAUTOBUILD=sphinx-autobuild +) set SOURCEDIR=source set BUILDDIR=build if "%1" == "" goto help +if "%1" == "docs" goto docs + %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. @@ -28,6 +33,13 @@ if errorlevel 9009 ( %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% goto end +:docs +@echo +@echo Starting up the docs server... +@echo +%SPHINXAUTOBUILD% --port 8000 --watch %SOURCEDIR% %SOURCEDIR% %BUILDDIR%\html %SPHINXOPTS% %O% +goto end + :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% diff --git a/docs/scripts/doc8_style_check.sh b/docs/scripts/doc8_style_check.sh old mode 100644 new mode 100755 diff --git a/docs/source/conf.py b/docs/source/conf.py index 918d62c..54e5e66 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -30,6 +30,10 @@ extensions = [ "sphinx.ext.intersphinx", "sphinx_reredirects", + 'sphinx_rtd_theme', + "sphinx_rtd_dark_mode", + "sphinx.ext.extlinks", + "sphinx_copybutton", ] diff --git a/setup.cfg b/setup.cfg index d6c7da7..bd0e58a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -62,4 +62,7 @@ docs = sphinx-rtd-theme>=1.0.0 sphinx-reredirects >= 0.1.2 doc8>=0.11.2 + sphinx-autobuild + sphinx-rtd-dark-mode>=1.3.0 + sphinx-copybutton From e4fe0dc487789ac7fba74cd86824cbaa99adb97c Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Wed, 22 Nov 2023 18:55:34 +0530 Subject: [PATCH 9/9] Add license udpates and additions This updates the licenses to SPDX license list 3.22 Signed-off-by: Ayan Sinha Mahapatra --- .../data/license_key_index.json.ABOUT | 4 +- .../data/scancode-licensedb-index.json | 1707 ++++++++++++++++- 2 files changed, 1624 insertions(+), 87 deletions(-) diff --git a/src/license_expression/data/license_key_index.json.ABOUT b/src/license_expression/data/license_key_index.json.ABOUT index e1d127b..2c7a851 100644 --- a/src/license_expression/data/license_key_index.json.ABOUT +++ b/src/license_expression/data/license_key_index.json.ABOUT @@ -1,6 +1,6 @@ about_resource: scancode-licensedb-index.json -download_url: https://github.com/nexB/scancode-licensedb/raw/eb22bc0f02585cec38865e323eaf079cc52ebcfb/docs/index.json -spdx_license_list_version: 3.20 +download_url: https://raw.githubusercontent.com/nexB/scancode-licensedb/63bfc0320f8b554a1a7a3ae84f8f4afd396e8601/docs/index.json +spdx_license_list_version: 3.22 name: scancode-licensedb-index.json license_expression: cc-by-4.0 copyright: Copyright (c) nexB Inc. and others. diff --git a/src/license_expression/data/scancode-licensedb-index.json b/src/license_expression/data/scancode-licensedb-index.json index fee0bee..7ee2f88 100644 --- a/src/license_expression/data/scancode-licensedb-index.json +++ b/src/license_expression/data/scancode-licensedb-index.json @@ -59,6 +59,18 @@ "html": "996-icu-1.0.html", "license": "996-icu-1.0.LICENSE" }, + { + "license_key": "aardvark-py-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-aardvark-py-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aardvark-py-2014.json", + "yaml": "aardvark-py-2014.yml", + "html": "aardvark-py-2014.html", + "license": "aardvark-py-2014.LICENSE" + }, { "license_key": "abrms", "category": "Proprietary Free", @@ -495,6 +507,18 @@ "html": "adobe-scl.html", "license": "adobe-scl.LICENSE" }, + { + "license_key": "adobe-utopia", + "category": "Permissive", + "spdx_license_key": "Adobe-Utopia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-utopia.json", + "yaml": "adobe-utopia.yml", + "html": "adobe-utopia.html", + "license": "adobe-utopia.LICENSE" + }, { "license_key": "adrian", "category": "Permissive", @@ -829,6 +853,18 @@ "html": "alasir.html", "license": "alasir.LICENSE" }, + { + "license_key": "aldor-public-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-aldor-public-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aldor-public-2.0.json", + "yaml": "aldor-public-2.0.yml", + "html": "aldor-public-2.0.html", + "license": "aldor-public-2.0.LICENSE" + }, { "license_key": "alexisisaac-freeware", "category": "Permissive", @@ -877,6 +913,18 @@ "html": "allen-institute-software-2018.html", "license": "allen-institute-software-2018.LICENSE" }, + { + "license_key": "alliance-open-media-patent-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-alliance-open-media-patent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alliance-open-media-patent-1.0.json", + "yaml": "alliance-open-media-patent-1.0.yml", + "html": "alliance-open-media-patent-1.0.html", + "license": "alliance-open-media-patent-1.0.LICENSE" + }, { "license_key": "altermime", "category": "Copyleft Limited", @@ -927,6 +975,18 @@ "html": "amazon-sl.html", "license": "amazon-sl.LICENSE" }, + { + "license_key": "amd-aspf-2023", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-amd-aspf-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-aspf-2023.json", + "yaml": "amd-aspf-2023.yml", + "html": "amd-aspf-2023.html", + "license": "amd-aspf-2023.LICENSE" + }, { "license_key": "amd-historical", "category": "Permissive", @@ -1654,6 +1714,18 @@ "html": "artistic-perl-1.0.html", "license": "artistic-perl-1.0.LICENSE" }, + { + "license_key": "asal-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-asal-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asal-1.0.json", + "yaml": "asal-1.0.yml", + "html": "asal-1.0.html", + "license": "asal-1.0.LICENSE" + }, { "license_key": "ascender-eula", "category": "Proprietary Free", @@ -1726,11 +1798,25 @@ "html": "asn1.html", "license": "asn1.LICENSE" }, + { + "license_key": "asterisk-exception", + "category": "Copyleft", + "spdx_license_key": "Asterisk-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "asterisk-exception.json", + "yaml": "asterisk-exception.yml", + "html": "asterisk-exception.html", + "license": "asterisk-exception.LICENSE" + }, { "license_key": "aswf-digital-assets-1.0", "category": "Free Restricted", - "spdx_license_key": "LicenseRef-scancode-aswf-digital-assets-1.0", - "other_spdx_license_keys": [], + "spdx_license_key": "ASWF-Digital-Assets-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-aswf-digital-assets-1.0" + ], "is_exception": false, "is_deprecated": false, "json": "aswf-digital-assets-1.0.json", @@ -1741,8 +1827,10 @@ { "license_key": "aswf-digital-assets-1.1", "category": "Free Restricted", - "spdx_license_key": "LicenseRef-scancode-aswf-digital-assets-1.1", - "other_spdx_license_keys": [], + "spdx_license_key": "ASWF-Digital-Assets-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-aswf-digital-assets-1.1" + ], "is_exception": false, "is_deprecated": false, "json": "aswf-digital-assets-1.1.json", @@ -1885,8 +1973,10 @@ { "license_key": "autoconf-macro-exception", "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-autoconf-macro-exception", - "other_spdx_license_keys": [], + "spdx_license_key": "Autoconf-exception-macro", + "other_spdx_license_keys": [ + "LicenseRef-scancode-autoconf-macro-exception" + ], "is_exception": true, "is_deprecated": false, "json": "autoconf-macro-exception.json", @@ -1897,8 +1987,10 @@ { "license_key": "autoconf-simple-exception", "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception", - "other_spdx_license_keys": [], + "spdx_license_key": "Autoconf-exception-generic-3.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-autoconf-simple-exception" + ], "is_exception": true, "is_deprecated": false, "json": "autoconf-simple-exception.json", @@ -2153,8 +2245,10 @@ { "license_key": "bigelow-holmes", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-bigelow-holmes", - "other_spdx_license_keys": [], + "spdx_license_key": "Lucida-Bitmap-Fonts", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bigelow-holmes" + ], "is_exception": false, "is_deprecated": false, "json": "bigelow-holmes.json", @@ -2694,6 +2788,18 @@ "html": "broadcom-linux-timer.html", "license": "broadcom-linux-timer.LICENSE" }, + { + "license_key": "broadcom-opus-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-broadcom-opus-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-opus-patent.json", + "yaml": "broadcom-opus-patent.yml", + "html": "broadcom-opus-patent.html", + "license": "broadcom-opus-patent.LICENSE" + }, { "license_key": "broadcom-proprietary", "category": "Proprietary Free", @@ -2912,6 +3018,18 @@ "html": "bsd-3-clause-fda.html", "license": "bsd-3-clause-fda.LICENSE" }, + { + "license_key": "bsd-3-clause-hp", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-HP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-hp.json", + "yaml": "bsd-3-clause-hp.yml", + "html": "bsd-3-clause-hp.html", + "license": "bsd-3-clause-hp.LICENSE" + }, { "license_key": "bsd-3-clause-jtag", "category": "Permissive", @@ -2989,8 +3107,10 @@ { "license_key": "bsd-3-clause-sun", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-sun", - "other_spdx_license_keys": [], + "spdx_license_key": "BSD-3-Clause-Sun", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-3-clause-sun" + ], "is_exception": false, "is_deprecated": false, "json": "bsd-3-clause-sun.json", @@ -3130,6 +3250,18 @@ "html": "bsd-export.html", "license": "bsd-export.LICENSE" }, + { + "license_key": "bsd-inferno-nettverk", + "category": "Permissive", + "spdx_license_key": "BSD-Inferno-Nettverk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-inferno-nettverk.json", + "yaml": "bsd-inferno-nettverk.yml", + "html": "bsd-inferno-nettverk.html", + "license": "bsd-inferno-nettverk.LICENSE" + }, { "license_key": "bsd-innosys", "category": "Permissive", @@ -3437,6 +3569,18 @@ "html": "bsd-source-code.html", "license": "bsd-source-code.LICENSE" }, + { + "license_key": "bsd-systemics", + "category": "Permissive", + "spdx_license_key": "BSD-Systemics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-systemics.json", + "yaml": "bsd-systemics.yml", + "html": "bsd-systemics.html", + "license": "bsd-systemics.LICENSE" + }, { "license_key": "bsd-top", "category": "Permissive", @@ -3685,7 +3829,7 @@ }, { "license_key": "caldera", - "category": "Permissive", + "category": "Free Restricted", "spdx_license_key": "Caldera", "other_spdx_license_keys": [], "is_exception": false, @@ -3767,6 +3911,18 @@ "html": "can-ogl-toronto-1.0.html", "license": "can-ogl-toronto-1.0.LICENSE" }, + { + "license_key": "capec-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-capec-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "capec-tou.json", + "yaml": "capec-tou.yml", + "html": "capec-tou.html", + "license": "capec-tou.LICENSE" + }, { "license_key": "careware", "category": "Permissive", @@ -4465,6 +4621,18 @@ "html": "cc-by-sa-3.0-de.html", "license": "cc-by-sa-3.0-de.LICENSE" }, + { + "license_key": "cc-by-sa-3.0-igo", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0-igo.json", + "yaml": "cc-by-sa-3.0-igo.yml", + "html": "cc-by-sa-3.0-igo.html", + "license": "cc-by-sa-3.0-igo.LICENSE" + }, { "license_key": "cc-by-sa-4.0", "category": "Copyleft Limited", @@ -4513,6 +4681,18 @@ "html": "cc-lgpl-2.1-pt.html", "license": "cc-lgpl-2.1-pt.LICENSE" }, + { + "license_key": "cc-nc-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-nc-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nc-1.0.json", + "yaml": "cc-nc-1.0.yml", + "html": "cc-nc-1.0.html", + "license": "cc-nc-1.0.LICENSE" + }, { "license_key": "cc-nc-sampling-plus-1.0", "category": "Proprietary Free", @@ -4525,6 +4705,18 @@ "html": "cc-nc-sampling-plus-1.0.html", "license": "cc-nc-sampling-plus-1.0.LICENSE" }, + { + "license_key": "cc-nd-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-nd-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nd-1.0.json", + "yaml": "cc-nd-1.0.yml", + "html": "cc-nd-1.0.html", + "license": "cc-nd-1.0.LICENSE" + }, { "license_key": "cc-pd", "category": "Public Domain", @@ -4549,6 +4741,18 @@ "html": "cc-pdm-1.0.html", "license": "cc-pdm-1.0.LICENSE" }, + { + "license_key": "cc-sa-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cc-sa-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sa-1.0.json", + "yaml": "cc-sa-1.0.yml", + "html": "cc-sa-1.0.html", + "license": "cc-sa-1.0.LICENSE" + }, { "license_key": "cc-sampling-1.0", "category": "Proprietary Free", @@ -4909,6 +5113,18 @@ "html": "chartdirector-6.0.html", "license": "chartdirector-6.0.LICENSE" }, + { + "license_key": "check-cvs", + "category": "Permissive", + "spdx_license_key": "check-cvs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "check-cvs.json", + "yaml": "check-cvs.yml", + "html": "check-cvs.html", + "license": "check-cvs.LICENSE" + }, { "license_key": "checkmk", "category": "Permissive", @@ -4981,6 +5197,30 @@ "html": "christopher-velazquez.html", "license": "christopher-velazquez.LICENSE" }, + { + "license_key": "cisco-avch264-patent", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cisco-avch264-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cisco-avch264-patent.json", + "yaml": "cisco-avch264-patent.yml", + "html": "cisco-avch264-patent.html", + "license": "cisco-avch264-patent.LICENSE" + }, + { + "license_key": "civicrm-exception-to-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-civicrm-exception-to-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "civicrm-exception-to-agpl-3.0.json", + "yaml": "civicrm-exception-to-agpl-3.0.yml", + "html": "civicrm-exception-to-agpl-3.0.html", + "license": "civicrm-exception-to-agpl-3.0.LICENSE" + }, { "license_key": "classic-vb", "category": "Permissive", @@ -5091,6 +5331,18 @@ "html": "clisp-exception-2.0.html", "license": "clisp-exception-2.0.LICENSE" }, + { + "license_key": "clojure-exception-to-gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-clojure-exception-to-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clojure-exception-to-gpl-3.0.json", + "yaml": "clojure-exception-to-gpl-3.0.yml", + "html": "clojure-exception-to-gpl-3.0.html", + "license": "clojure-exception-to-gpl-3.0.LICENSE" + }, { "license_key": "cloudera-express", "category": "Proprietary Free", @@ -5141,6 +5393,18 @@ "html": "cmu-computing-services.html", "license": "cmu-computing-services.LICENSE" }, + { + "license_key": "cmu-flite", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-flite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-flite.json", + "yaml": "cmu-flite.yml", + "html": "cmu-flite.html", + "license": "cmu-flite.LICENSE" + }, { "license_key": "cmu-mit", "category": "Permissive", @@ -5153,6 +5417,18 @@ "html": "cmu-mit.html", "license": "cmu-mit.LICENSE" }, + { + "license_key": "cmu-nara-nagoya", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-nara-nagoya", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-nara-nagoya.json", + "yaml": "cmu-nara-nagoya.yml", + "html": "cmu-nara-nagoya.html", + "license": "cmu-nara-nagoya.LICENSE" + }, { "license_key": "cmu-simple", "category": "Permissive", @@ -5323,6 +5599,18 @@ "html": "codeguru-permissions.html", "license": "codeguru-permissions.LICENSE" }, + { + "license_key": "codelite-exception-to-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-codelite-exception-to-gpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "codelite-exception-to-gpl.json", + "yaml": "codelite-exception-to-gpl.yml", + "html": "codelite-exception-to-gpl.html", + "license": "codelite-exception-to-gpl.LICENSE" + }, { "license_key": "codesourcery-2004", "category": "Permissive", @@ -5793,6 +6081,18 @@ "html": "crcalc.html", "license": "crcalc.LICENSE" }, + { + "license_key": "cronyx", + "category": "Permissive", + "spdx_license_key": "Cronyx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cronyx.json", + "yaml": "cronyx.yml", + "html": "cronyx.html", + "license": "cronyx.LICENSE" + }, { "license_key": "crossword", "category": "Permissive", @@ -5805,6 +6105,18 @@ "html": "crossword.html", "license": "crossword.LICENSE" }, + { + "license_key": "crunchbase-data-2019-12-17", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-crunchbase-data-2019-12-17", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crunchbase-data-2019-12-17.json", + "yaml": "crunchbase-data-2019-12-17.yml", + "html": "crunchbase-data-2019-12-17.html", + "license": "crunchbase-data-2019-12-17.LICENSE" + }, { "license_key": "crypto-keys-redistribution", "category": "Copyleft", @@ -6457,6 +6769,18 @@ "html": "dl-de-by-nc-1-0-en.html", "license": "dl-de-by-nc-1-0-en.LICENSE" }, + { + "license_key": "dl-de-zero-2.0", + "category": "Permissive", + "spdx_license_key": "DL-DE-ZERO-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-zero-2.0.json", + "yaml": "dl-de-zero-2.0.yml", + "html": "dl-de-zero-2.0.html", + "license": "dl-de-zero-2.0.LICENSE" + }, { "license_key": "dmalloc", "category": "Permissive", @@ -7263,6 +7587,18 @@ "html": "emx-library.html", "license": "emx-library.LICENSE" }, + { + "license_key": "energyplus", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-energyplus-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "energyplus.json", + "yaml": "energyplus.yml", + "html": "energyplus.html", + "license": "energyplus.LICENSE" + }, { "license_key": "energyplus-bsd", "category": "Permissive", @@ -7722,6 +8058,30 @@ "html": "fawkes-runtime-exception.html", "license": "fawkes-runtime-exception.LICENSE" }, + { + "license_key": "fbm", + "category": "Permissive", + "spdx_license_key": "FBM", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fbm.json", + "yaml": "fbm.yml", + "html": "fbm.html", + "license": "fbm.LICENSE" + }, + { + "license_key": "ferguson-twofish", + "category": "Permissive", + "spdx_license_key": "Ferguson-Twofish", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ferguson-twofish.json", + "yaml": "ferguson-twofish.yml", + "html": "ferguson-twofish.html", + "license": "ferguson-twofish.LICENSE" + }, { "license_key": "fftpack-2004", "category": "Permissive", @@ -7761,8 +8121,10 @@ { "license_key": "flex-2.5", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-flex-2.5", - "other_spdx_license_keys": [], + "spdx_license_key": "BSD-3-Clause-flex", + "other_spdx_license_keys": [ + "LicenseRef-scancode-flex-2.5" + ], "is_exception": false, "is_deprecated": false, "json": "flex-2.5.json", @@ -7940,6 +8302,18 @@ "html": "free-fork.html", "license": "free-fork.LICENSE" }, + { + "license_key": "free-surfer-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-free-surfer-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-surfer-1.0.json", + "yaml": "free-surfer-1.0.yml", + "html": "free-surfer-1.0.html", + "license": "free-surfer-1.0.LICENSE" + }, { "license_key": "free-unknown", "category": "Unstated License", @@ -8029,8 +8403,10 @@ { "license_key": "freetts", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-freetts", - "other_spdx_license_keys": [], + "spdx_license_key": "MIT-Festival", + "other_spdx_license_keys": [ + "LicenseRef-scancode-freetts" + ], "is_exception": false, "is_deprecated": false, "json": "freetts.json", @@ -8184,6 +8560,30 @@ "html": "fujion-exception-to-apache-2.0.html", "license": "fujion-exception-to-apache-2.0.LICENSE" }, + { + "license_key": "furuseth", + "category": "Permissive", + "spdx_license_key": "Furuseth", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "furuseth.json", + "yaml": "furuseth.yml", + "html": "furuseth.html", + "license": "furuseth.LICENSE" + }, + { + "license_key": "fwlw", + "category": "Permissive", + "spdx_license_key": "fwlw", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fwlw.json", + "yaml": "fwlw.yml", + "html": "fwlw.html", + "license": "fwlw.LICENSE" + }, { "license_key": "gareth-mccaughan", "category": "Permissive", @@ -8233,12 +8633,26 @@ "license": "gcc-compiler-exception-2.0.LICENSE" }, { - "license_key": "gcc-exception-3.0", + "license_key": "gcc-exception-2.0-note", "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-exception-3.0", + "spdx_license_key": "GCC-exception-2.0-note", "other_spdx_license_keys": [], "is_exception": true, "is_deprecated": false, + "json": "gcc-exception-2.0-note.json", + "yaml": "gcc-exception-2.0-note.yml", + "html": "gcc-exception-2.0-note.html", + "license": "gcc-exception-2.0-note.LICENSE" + }, + { + "license_key": "gcc-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gcc-exception-3.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-exception-3.0" + ], + "is_exception": true, + "is_deprecated": false, "json": "gcc-exception-3.0.json", "yaml": "gcc-exception-3.0.yml", "html": "gcc-exception-3.0.html", @@ -8678,6 +9092,18 @@ "html": "ghostscript-1988.html", "license": "ghostscript-1988.LICENSE" }, + { + "license_key": "github-codeql-terms-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-github-codeql-terms-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "github-codeql-terms-2020.json", + "yaml": "github-codeql-terms-2020.yml", + "html": "github-codeql-terms-2020.html", + "license": "github-codeql-terms-2020.LICENSE" + }, { "license_key": "gitlab-ee", "category": "Commercial", @@ -9955,6 +10381,18 @@ "html": "gpl-3.0-gcc.html", "license": "gpl-3.0-gcc.LICENSE" }, + { + "license_key": "gpl-3.0-interface-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-interface-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-interface-exception.json", + "yaml": "gpl-3.0-interface-exception.yml", + "html": "gpl-3.0-interface-exception.html", + "license": "gpl-3.0-interface-exception.LICENSE" + }, { "license_key": "gpl-3.0-linking-exception", "category": "Copyleft Limited", @@ -10454,6 +10892,18 @@ "html": "hessla.html", "license": "hessla.LICENSE" }, + { + "license_key": "hfoil-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hfoil-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hfoil-1.0.json", + "yaml": "hfoil-1.0.yml", + "html": "hfoil-1.0.html", + "license": "hfoil-1.0.LICENSE" + }, { "license_key": "hidapi", "category": "Permissive", @@ -10592,7 +11042,7 @@ "spdx_license_key": "LicenseRef-scancode-hot-potato", "other_spdx_license_keys": [], "is_exception": false, - "is_deprecated": false, + "is_deprecated": true, "json": "hot-potato.json", "yaml": "hot-potato.yml", "html": "hot-potato.html", @@ -10610,6 +11060,18 @@ "html": "hp.html", "license": "hp.LICENSE" }, + { + "license_key": "hp-1986", + "category": "Permissive", + "spdx_license_key": "HP-1986", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-1986.json", + "yaml": "hp-1986.yml", + "html": "hp-1986.html", + "license": "hp-1986.LICENSE" + }, { "license_key": "hp-enterprise-eula", "category": "Proprietary Free", @@ -10695,8 +11157,32 @@ "license": "hp-ux-jre.LICENSE" }, { - "license_key": "hpnd-export-us", - "category": "Free Restricted", + "license_key": "hpnd-doc", + "category": "Permissive", + "spdx_license_key": "HPND-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-doc.json", + "yaml": "hpnd-doc.yml", + "html": "hpnd-doc.html", + "license": "hpnd-doc.LICENSE" + }, + { + "license_key": "hpnd-doc-sell", + "category": "Permissive", + "spdx_license_key": "HPND-doc-sell", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-doc-sell.json", + "yaml": "hpnd-doc-sell.yml", + "html": "hpnd-doc-sell.html", + "license": "hpnd-doc-sell.LICENSE" + }, + { + "license_key": "hpnd-export-us", + "category": "Free Restricted", "spdx_license_key": "HPND-export-US", "other_spdx_license_keys": [], "is_exception": false, @@ -10706,6 +11192,30 @@ "html": "hpnd-export-us.html", "license": "hpnd-export-us.LICENSE" }, + { + "license_key": "hpnd-pbmplus", + "category": "Permissive", + "spdx_license_key": "HPND-Pbmplus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-pbmplus.json", + "yaml": "hpnd-pbmplus.yml", + "html": "hpnd-pbmplus.html", + "license": "hpnd-pbmplus.LICENSE" + }, + { + "license_key": "hpnd-sell-regexpr", + "category": "Permissive", + "spdx_license_key": "HPND-sell-regexpr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-sell-regexpr.json", + "yaml": "hpnd-sell-regexpr.yml", + "html": "hpnd-sell-regexpr.html", + "license": "hpnd-sell-regexpr.LICENSE" + }, { "license_key": "hpnd-sell-variant-mit-disclaimer", "category": "Permissive", @@ -10718,6 +11228,18 @@ "html": "hpnd-sell-variant-mit-disclaimer.html", "license": "hpnd-sell-variant-mit-disclaimer.LICENSE" }, + { + "license_key": "hpnd-uc", + "category": "Permissive", + "spdx_license_key": "HPND-UC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-uc.json", + "yaml": "hpnd-uc.yml", + "html": "hpnd-uc.html", + "license": "hpnd-uc.LICENSE" + }, { "license_key": "hs-regexp", "category": "Permissive", @@ -10766,6 +11288,18 @@ "html": "httpget.html", "license": "httpget.LICENSE" }, + { + "license_key": "huggingface-tos-20220915", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-huggingface-tos-20220915", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "huggingface-tos-20220915.json", + "yaml": "huggingface-tos-20220915.yml", + "html": "huggingface-tos-20220915.html", + "license": "huggingface-tos-20220915.LICENSE" + }, { "license_key": "hugo", "category": "Source-available", @@ -11337,8 +11871,10 @@ { "license_key": "inner-net-2.0", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-inner-net-2.0", - "other_spdx_license_keys": [], + "spdx_license_key": "Inner-Net-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-inner-net-2.0" + ], "is_exception": false, "is_deprecated": false, "json": "inner-net-2.0.json", @@ -11615,8 +12151,10 @@ { "license_key": "iolib-exception-2.0", "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-iolib-exception-2.0", - "other_spdx_license_keys": [], + "spdx_license_key": "GNU-compiler-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-iolib-exception-2.0" + ], "is_exception": true, "is_deprecated": false, "json": "iolib-exception-2.0.json", @@ -11744,6 +12282,18 @@ "html": "issl-2018.html", "license": "issl-2018.LICENSE" }, + { + "license_key": "issl-2022", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-issl-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "issl-2022.json", + "yaml": "issl-2022.yml", + "html": "issl-2022.html", + "license": "issl-2022.LICENSE" + }, { "license_key": "itc-eula", "category": "Commercial", @@ -12120,6 +12670,18 @@ "html": "josl-1.0.html", "license": "josl-1.0.LICENSE" }, + { + "license_key": "jpegxr", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jpegxr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpegxr.json", + "yaml": "jpegxr.yml", + "html": "jpegxr.html", + "license": "jpegxr.LICENSE" + }, { "license_key": "jpl-image", "category": "Source-available", @@ -12216,6 +12778,18 @@ "html": "jscheme.html", "license": "jscheme.LICENSE" }, + { + "license_key": "jsel-2.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jsel-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsel-2.0.json", + "yaml": "jsel-2.0.yml", + "html": "jsel-2.0.html", + "license": "jsel-2.0.LICENSE" + }, { "license_key": "jsfromhell", "category": "Permissive", @@ -12324,6 +12898,18 @@ "html": "karl-peterson.html", "license": "karl-peterson.LICENSE" }, + { + "license_key": "kastrup", + "category": "Permissive", + "spdx_license_key": "Kastrup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kastrup.json", + "yaml": "kastrup.yml", + "html": "kastrup.html", + "license": "kastrup.LICENSE" + }, { "license_key": "katharos-0.1.0", "category": "Proprietary Free", @@ -12498,6 +13084,18 @@ "html": "knuth-ctan.html", "license": "knuth-ctan.LICENSE" }, + { + "license_key": "ko-man-page", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ko-man-page", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ko-man-page.json", + "yaml": "ko-man-page.yml", + "html": "ko-man-page.html", + "license": "ko-man-page.LICENSE" + }, { "license_key": "kreative-relay-fonts-free-use-1.2f", "category": "Proprietary Free", @@ -12548,6 +13146,18 @@ "html": "lal-1.3.html", "license": "lal-1.3.LICENSE" }, + { + "license_key": "lance-norskog-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lance-norskog-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lance-norskog-license.json", + "yaml": "lance-norskog-license.yml", + "html": "lance-norskog-license.html", + "license": "lance-norskog-license.LICENSE" + }, { "license_key": "larabie", "category": "Proprietary Free", @@ -12572,6 +13182,18 @@ "html": "latex2e.html", "license": "latex2e.LICENSE" }, + { + "license_key": "latex2e-translated-notice", + "category": "Permissive", + "spdx_license_key": "Latex2e-translated-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "latex2e-translated-notice.json", + "yaml": "latex2e-translated-notice.yml", + "html": "latex2e-translated-notice.html", + "license": "latex2e-translated-notice.LICENSE" + }, { "license_key": "lattice-osl-2017", "category": "Copyleft Limited", @@ -13171,6 +13793,18 @@ "html": "libpng-v2.html", "license": "libpng-v2.LICENSE" }, + { + "license_key": "libpri-openh323-exception", + "category": "Copyleft", + "spdx_license_key": "libpri-OpenH323-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libpri-openh323-exception.json", + "yaml": "libpri-openh323-exception.yml", + "html": "libpri-openh323-exception.html", + "license": "libpri-openh323-exception.LICENSE" + }, { "license_key": "librato-exception", "category": "Proprietary Free", @@ -13231,6 +13865,18 @@ "html": "libtool-exception-2.0.html", "license": "libtool-exception-2.0.LICENSE" }, + { + "license_key": "libtool-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-libtool-exception-lgpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libtool-exception-lgpl.json", + "yaml": "libtool-exception-lgpl.yml", + "html": "libtool-exception-lgpl.html", + "license": "libtool-exception-lgpl.LICENSE" + }, { "license_key": "libutil-david-nugent", "category": "Permissive", @@ -13279,6 +13925,18 @@ "html": "license-file-reference.html", "license": "license-file-reference.LICENSE" }, + { + "license_key": "liferay-dxp-eula-2.0.0-2023-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liferay-dxp-eula-2.0.0-2023-06.json", + "yaml": "liferay-dxp-eula-2.0.0-2023-06.yml", + "html": "liferay-dxp-eula-2.0.0-2023-06.html", + "license": "liferay-dxp-eula-2.0.0-2023-06.LICENSE" + }, { "license_key": "liferay-ee", "category": "Commercial", @@ -13461,6 +14119,42 @@ "html": "linux-device-drivers.html", "license": "linux-device-drivers.LICENSE" }, + { + "license_key": "linux-man-pages-1-para", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-1-para", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-1-para.json", + "yaml": "linux-man-pages-1-para.yml", + "html": "linux-man-pages-1-para.html", + "license": "linux-man-pages-1-para.LICENSE" + }, + { + "license_key": "linux-man-pages-2-para", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-copyleft-2-para", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-2-para.json", + "yaml": "linux-man-pages-2-para.yml", + "html": "linux-man-pages-2-para.html", + "license": "linux-man-pages-2-para.LICENSE" + }, + { + "license_key": "linux-man-pages-copyleft-var", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-copyleft-var", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-copyleft-var.json", + "yaml": "linux-man-pages-copyleft-var.yml", + "html": "linux-man-pages-copyleft-var.html", + "license": "linux-man-pages-copyleft-var.LICENSE" + }, { "license_key": "linux-openib", "category": "Permissive", @@ -13509,6 +14203,18 @@ "html": "linuxhowtos.html", "license": "linuxhowtos.LICENSE" }, + { + "license_key": "llama-2-license-2023", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-llama-2-license-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llama-2-license-2023.json", + "yaml": "llama-2-license-2023.yml", + "html": "llama-2-license-2023.html", + "license": "llama-2-license-2023.LICENSE" + }, { "license_key": "llama-license-2023", "category": "Proprietary Free", @@ -13524,8 +14230,10 @@ { "license_key": "llgpl", "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-llgpl", - "other_spdx_license_keys": [], + "spdx_license_key": "LLGPL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-llgpl" + ], "is_exception": false, "is_deprecated": false, "json": "llgpl.json", @@ -13895,6 +14603,18 @@ "html": "madwifi-dual.html", "license": "madwifi-dual.LICENSE" }, + { + "license_key": "magaz", + "category": "Permissive", + "spdx_license_key": "magaz", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "magaz.json", + "yaml": "magaz.yml", + "html": "magaz.html", + "license": "magaz.LICENSE" + }, { "license_key": "magpie-exception-1.0", "category": "Copyleft", @@ -13981,6 +14701,18 @@ "html": "markus-kuhn-license.html", "license": "markus-kuhn-license.LICENSE" }, + { + "license_key": "markus-mummert-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-markus-mummert-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "markus-mummert-permissive.json", + "yaml": "markus-mummert-permissive.yml", + "html": "markus-mummert-permissive.html", + "license": "markus-mummert-permissive.LICENSE" + }, { "license_key": "martin-birgmeier", "category": "Permissive", @@ -14103,6 +14835,18 @@ "html": "mcafee-tou.html", "license": "mcafee-tou.LICENSE" }, + { + "license_key": "mcphee-slideshow", + "category": "Permissive", + "spdx_license_key": "McPhee-slideshow", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcphee-slideshow.json", + "yaml": "mcphee-slideshow.yml", + "html": "mcphee-slideshow.html", + "license": "mcphee-slideshow.LICENSE" + }, { "license_key": "mcrae-pl-4-r53", "category": "Proprietary Free", @@ -14211,6 +14955,18 @@ "html": "metageek-inssider-eula.html", "license": "metageek-inssider-eula.LICENSE" }, + { + "license_key": "metamail", + "category": "Permissive", + "spdx_license_key": "metamail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metamail.json", + "yaml": "metamail.yml", + "html": "metamail.html", + "license": "metamail.LICENSE" + }, { "license_key": "metrolink-1.0", "category": "Copyleft", @@ -14399,7 +15155,12 @@ "license_key": "mit", "category": "Permissive", "spdx_license_key": "MIT", - "other_spdx_license_keys": [], + "other_spdx_license_keys": [ + "LicenseRef-MIT-Bootstrap", + "LicenseRef-MIT-Discord", + "LicenseRef-MIT-TC", + "LicenseRef-MIT-Diehl" + ], "is_exception": false, "is_deprecated": false, "json": "mit.json", @@ -14641,6 +15402,18 @@ "html": "mit-taylor-variant.html", "license": "mit-taylor-variant.LICENSE" }, + { + "license_key": "mit-testregex", + "category": "Permissive", + "spdx_license_key": "MIT-testregex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-testregex.json", + "yaml": "mit-testregex.yml", + "html": "mit-testregex.html", + "license": "mit-testregex.LICENSE" + }, { "license_key": "mit-veillard-variant", "category": "Permissive", @@ -14656,9 +15429,10 @@ { "license_key": "mit-with-modification-obligations", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-mit-modification-obligations", + "spdx_license_key": "HPND-export-US-modify", "other_spdx_license_keys": [ - "LicenseRef-scancode-mit-with-modification-obligations" + "LicenseRef-scancode-mit-with-modification-obligations", + "LicenseRef-scancode-mit-modification-obligations" ], "is_exception": false, "is_deprecated": false, @@ -14670,8 +15444,10 @@ { "license_key": "mit-xfig", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-mit-xfig", - "other_spdx_license_keys": [], + "spdx_license_key": "Xfig", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-xfig" + ], "is_exception": false, "is_deprecated": false, "json": "mit-xfig.json", @@ -14679,6 +15455,18 @@ "html": "mit-xfig.html", "license": "mit-xfig.LICENSE" }, + { + "license_key": "mmixware", + "category": "Permissive", + "spdx_license_key": "MMIXware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mmixware.json", + "yaml": "mmixware.yml", + "html": "mmixware.html", + "license": "mmixware.LICENSE" + }, { "license_key": "mod-dav-1.0", "category": "Permissive", @@ -14727,6 +15515,18 @@ "html": "monkeysaudio.html", "license": "monkeysaudio.LICENSE" }, + { + "license_key": "morbig-ieee-std-usage", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-morbig-ieee-std-usage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "morbig-ieee-std-usage.json", + "yaml": "morbig-ieee-std-usage.yml", + "html": "morbig-ieee-std-usage.html", + "license": "morbig-ieee-std-usage.LICENSE" + }, { "license_key": "motorola", "category": "Permissive", @@ -14766,8 +15566,10 @@ { "license_key": "mozilla-gc", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-mozilla-gc", - "other_spdx_license_keys": [], + "spdx_license_key": "Boehm-GC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mozilla-gc" + ], "is_exception": false, "is_deprecated": false, "json": "mozilla-gc.json", @@ -14814,8 +15616,10 @@ { "license_key": "mpeg-ssg", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-mpeg-ssg", - "other_spdx_license_keys": [], + "spdx_license_key": "MPEG-SSG", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mpeg-ssg" + ], "is_exception": false, "is_deprecated": false, "json": "mpeg-ssg.json", @@ -15191,6 +15995,30 @@ "html": "ms-dxsdk-d3dx-9.29.952.3.html", "license": "ms-dxsdk-d3dx-9.29.952.3.LICENSE" }, + { + "license_key": "ms-edge-devtools-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-edge-devtools-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-edge-devtools-2022.json", + "yaml": "ms-edge-devtools-2022.yml", + "html": "ms-edge-devtools-2022.html", + "license": "ms-edge-devtools-2022.LICENSE" + }, + { + "license_key": "ms-edge-webview2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-edge-webview2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-edge-webview2.json", + "yaml": "ms-edge-webview2.yml", + "html": "ms-edge-webview2.html", + "license": "ms-edge-webview2.LICENSE" + }, { "license_key": "ms-edge-webview2-fixed", "category": "Proprietary Free", @@ -15535,6 +16363,18 @@ "html": "ms-office-system-programs-eula.html", "license": "ms-office-system-programs-eula.LICENSE" }, + { + "license_key": "ms-opus-patent-2012", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-opus-patent-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-opus-patent-2012.json", + "yaml": "ms-opus-patent-2012.yml", + "html": "ms-opus-patent-2012.html", + "license": "ms-opus-patent-2012.LICENSE" + }, { "license_key": "ms-patent-promise", "category": "Patent License", @@ -16019,6 +16859,18 @@ "html": "ms-windows-sdk-win10.html", "license": "ms-windows-sdk-win10.LICENSE" }, + { + "license_key": "ms-windows-sdk-win10-net-6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10-net-6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-win10-net-6.json", + "yaml": "ms-windows-sdk-win10-net-6.yml", + "html": "ms-windows-sdk-win10-net-6.html", + "license": "ms-windows-sdk-win10-net-6.LICENSE" + }, { "license_key": "ms-windows-sdk-win7-net-4", "category": "Proprietary Free", @@ -16091,6 +16943,18 @@ "html": "ms-xml-core-4.0.html", "license": "ms-xml-core-4.0.LICENSE" }, + { + "license_key": "msdn-magazine-sample-code-2007", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-msdn-magazine-sample-code-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msdn-magazine-sample-code-2007.json", + "yaml": "msdn-magazine-sample-code-2007.yml", + "html": "msdn-magazine-sample-code-2007.html", + "license": "msdn-magazine-sample-code-2007.LICENSE" + }, { "license_key": "msj-sample-code", "category": "Permissive", @@ -16369,6 +17233,18 @@ "html": "mysql-linking-exception-2018.html", "license": "mysql-linking-exception-2018.LICENSE" }, + { + "license_key": "n8n-ee-2022", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-n8n-ee-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "n8n-ee-2022.json", + "yaml": "n8n-ee-2022.yml", + "html": "n8n-ee-2022.html", + "license": "n8n-ee-2022.LICENSE" + }, { "license_key": "naist-2003", "category": "Permissive", @@ -16467,6 +17343,18 @@ "html": "ncgl-uk-2.0.html", "license": "ncgl-uk-2.0.LICENSE" }, + { + "license_key": "ncsa-httpd-1995", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ncsa-httpd-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ncsa-httpd-1995.json", + "yaml": "ncsa-httpd-1995.yml", + "html": "ncsa-httpd-1995.html", + "license": "ncsa-httpd-1995.LICENSE" + }, { "license_key": "nero-eula", "category": "Commercial", @@ -16539,6 +17427,18 @@ "html": "netcomponents.html", "license": "netcomponents.LICENSE" }, + { + "license_key": "netdata-ncul1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netdata-ncul1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netdata-ncul1.json", + "yaml": "netdata-ncul1.yml", + "html": "netdata-ncul1.html", + "license": "netdata-ncul1.LICENSE" + }, { "license_key": "netron", "category": "Permissive", @@ -16757,6 +17657,18 @@ "html": "nist-pd-fallback.html", "license": "nist-pd-fallback.LICENSE" }, + { + "license_key": "nist-software", + "category": "Permissive", + "spdx_license_key": "NIST-Software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-software.json", + "yaml": "nist-software.yml", + "html": "nist-software.html", + "license": "nist-software.LICENSE" + }, { "license_key": "nist-srd", "category": "Permissive", @@ -17021,6 +17933,18 @@ "html": "npsl-exception-0.94.html", "license": "npsl-exception-0.94.LICENSE" }, + { + "license_key": "npsl-exception-0.95", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.95", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.95.json", + "yaml": "npsl-exception-0.95.yml", + "html": "npsl-exception-0.95.html", + "license": "npsl-exception-0.95.LICENSE" + }, { "license_key": "nrl", "category": "Permissive", @@ -17552,21 +18476,57 @@ "license": "oculus-sdk-3.5.LICENSE" }, { - "license_key": "odbl-1.0", - "category": "Copyleft", - "spdx_license_key": "ODbL-1.0", + "license_key": "odb-cpl", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-odb-cpl", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, - "json": "odbl-1.0.json", - "yaml": "odbl-1.0.yml", - "html": "odbl-1.0.html", - "license": "odbl-1.0.LICENSE" + "json": "odb-cpl.json", + "yaml": "odb-cpl.yml", + "html": "odb-cpl.html", + "license": "odb-cpl.LICENSE" }, { - "license_key": "odc-1.0", - "category": "Copyleft", - "spdx_license_key": null, + "license_key": "odb-fpl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-odb-fpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odb-fpl.json", + "yaml": "odb-fpl.yml", + "html": "odb-fpl.html", + "license": "odb-fpl.LICENSE" + }, + { + "license_key": "odb-ncuel", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-odb-ncuel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odb-ncuel.json", + "yaml": "odb-ncuel.yml", + "html": "odb-ncuel.html", + "license": "odb-ncuel.LICENSE" + }, + { + "license_key": "odbl-1.0", + "category": "Copyleft", + "spdx_license_key": "ODbL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odbl-1.0.json", + "yaml": "odbl-1.0.yml", + "html": "odbl-1.0.html", + "license": "odbl-1.0.LICENSE" + }, + { + "license_key": "odc-1.0", + "category": "Copyleft", + "spdx_license_key": null, "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": true, @@ -17663,7 +18623,7 @@ }, { "license_key": "ofl-1.1", - "category": "Permissive", + "category": "Copyleft Limited", "spdx_license_key": "OFL-1.1", "other_spdx_license_keys": [], "is_exception": false, @@ -17877,6 +18837,18 @@ "html": "olf-ccla-1.0.html", "license": "olf-ccla-1.0.LICENSE" }, + { + "license_key": "olfl-1.3", + "category": "Permissive", + "spdx_license_key": "OLFL-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "olfl-1.3.json", + "yaml": "olfl-1.3.yml", + "html": "olfl-1.3.html", + "license": "olfl-1.3.LICENSE" + }, { "license_key": "oll-1.0", "category": "Permissive", @@ -17889,6 +18861,18 @@ "html": "oll-1.0.html", "license": "oll-1.0.LICENSE" }, + { + "license_key": "on2-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-on2-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "on2-patent.json", + "yaml": "on2-patent.yml", + "html": "on2-patent.html", + "license": "on2-patent.LICENSE" + }, { "license_key": "ooura-2001", "category": "Proprietary Free", @@ -17913,18 +18897,6 @@ "html": "open-diameter.html", "license": "open-diameter.LICENSE" }, - { - "license_key": "open-group", - "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-open-group", - "other_spdx_license_keys": [], - "is_exception": false, - "is_deprecated": false, - "json": "open-group.json", - "yaml": "open-group.yml", - "html": "open-group.html", - "license": "open-group.LICENSE" - }, { "license_key": "open-public", "category": "Copyleft Limited", @@ -17937,6 +18909,18 @@ "html": "open-public.html", "license": "open-public.LICENSE" }, + { + "license_key": "open-weights-permissive-1.0.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-open-weights-permissive-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-weights-permissive-1.0.0.json", + "yaml": "open-weights-permissive-1.0.0.yml", + "html": "open-weights-permissive-1.0.0.html", + "license": "open-weights-permissive-1.0.0.LICENSE" + }, { "license_key": "openai-tou-20230314", "category": "Commercial", @@ -17961,6 +18945,18 @@ "html": "openbd-exception-3.0.html", "license": "openbd-exception-3.0.LICENSE" }, + { + "license_key": "opencarp-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opencarp-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opencarp-1.0.json", + "yaml": "opencarp-1.0.yml", + "html": "opencarp-1.0.html", + "license": "opencarp-1.0.LICENSE" + }, { "license_key": "opengroup", "category": "Copyleft Limited", @@ -17973,6 +18969,18 @@ "html": "opengroup.html", "license": "opengroup.LICENSE" }, + { + "license_key": "opengroup-pl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-opengroup-pl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opengroup-pl.json", + "yaml": "opengroup-pl.yml", + "html": "opengroup-pl.html", + "license": "opengroup-pl.LICENSE" + }, { "license_key": "openi-pl-1.0", "category": "Copyleft Limited", @@ -18436,8 +19444,10 @@ { "license_key": "openssl-exception-gpl-3.0-plus", "category": "Copyleft", - "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-3.0-plus", - "other_spdx_license_keys": [], + "spdx_license_key": "cryptsetup-OpenSSL-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-gpl-3.0-plus" + ], "is_exception": true, "is_deprecated": false, "json": "openssl-exception-gpl-3.0-plus.json", @@ -18545,6 +19555,18 @@ "html": "openvpn-openssl-exception.html", "license": "openvpn-openssl-exception.LICENSE" }, + { + "license_key": "openwall-md5-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openwall-md5-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openwall-md5-permissive.json", + "yaml": "openwall-md5-permissive.yml", + "html": "openwall-md5-permissive.html", + "license": "openwall-md5-permissive.LICENSE" + }, { "license_key": "opera-eula-2018", "category": "Proprietary Free", @@ -18593,6 +19615,18 @@ "html": "opl-1.0.html", "license": "opl-1.0.LICENSE" }, + { + "license_key": "opl-uk-3.0", + "category": "Permissive", + "spdx_license_key": "OPL-UK-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opl-uk-3.0.json", + "yaml": "opl-uk-3.0.yml", + "html": "opl-uk-3.0.html", + "license": "opl-uk-3.0.LICENSE" + }, { "license_key": "opml-1.0", "category": "Permissive", @@ -18767,6 +19801,30 @@ "html": "oracle-entitlement-05-15.html", "license": "oracle-entitlement-05-15.LICENSE" }, + { + "license_key": "oracle-free-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-free-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-free-2018.json", + "yaml": "oracle-free-2018.yml", + "html": "oracle-free-2018.html", + "license": "oracle-free-2018.LICENSE" + }, + { + "license_key": "oracle-gftc-2023-06-12", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-gftc-2023-06-12", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-gftc-2023-06-12.json", + "yaml": "oracle-gftc-2023-06-12.yml", + "html": "oracle-gftc-2023-06-12.html", + "license": "oracle-gftc-2023-06-12.LICENSE" + }, { "license_key": "oracle-java-ee-sdk-2010", "category": "Proprietary Free", @@ -18906,7 +19964,7 @@ { "license_key": "osf-1990", "category": "Permissive", - "spdx_license_key": "HP-1986", + "spdx_license_key": "HP-1989", "other_spdx_license_keys": [ "LicenseRef-scancode-osf-1990" ], @@ -19029,7 +20087,9 @@ "license_key": "other-permissive", "category": "Permissive", "spdx_license_key": "LicenseRef-scancode-other-permissive", - "other_spdx_license_keys": [], + "other_spdx_license_keys": [ + "LicenseRef-Fedora-UltraPermissive" + ], "is_exception": false, "is_deprecated": false, "json": "other-permissive.json", @@ -19229,6 +20289,18 @@ "html": "ozplb-1.1.html", "license": "ozplb-1.1.LICENSE" }, + { + "license_key": "padl", + "category": "Permissive", + "spdx_license_key": "PADL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "padl.json", + "yaml": "padl.yml", + "html": "padl.html", + "license": "padl.LICENSE" + }, { "license_key": "paint-net", "category": "Proprietary Free", @@ -19553,6 +20625,42 @@ "html": "pftus-1.1.html", "license": "pftus-1.1.LICENSE" }, + { + "license_key": "phaser-academic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-phaser-academic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-academic.json", + "yaml": "phaser-academic.yml", + "html": "phaser-academic.html", + "license": "phaser-academic.LICENSE" + }, + { + "license_key": "phaser-ccp4", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-phaser-ccp4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-ccp4.json", + "yaml": "phaser-ccp4.yml", + "html": "phaser-ccp4.html", + "license": "phaser-ccp4.LICENSE" + }, + { + "license_key": "phaser-phenix", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-phaser-phenix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-phenix.json", + "yaml": "phaser-phenix.yml", + "html": "phaser-phenix.html", + "license": "phaser-phenix.LICENSE" + }, { "license_key": "phil-bunce", "category": "Public Domain", @@ -19723,6 +20831,18 @@ "html": "pngsuite.html", "license": "pngsuite.LICENSE" }, + { + "license_key": "pnmstitch", + "category": "Permissive", + "spdx_license_key": "pnmstitc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pnmstitch.json", + "yaml": "pnmstitch.yml", + "html": "pnmstitch.html", + "license": "pnmstitch.LICENSE" + }, { "license_key": "politepix-pl-1.0", "category": "Permissive", @@ -19872,7 +20992,7 @@ { "license_key": "proconx-modbus-rev4", "category": "Proprietary Free", - "spdx_license_key": "LicenseRef-scancode-proconX-modbus-rev4", + "spdx_license_key": "LicenseRef-scancode-proconx-modbus-rev4", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, @@ -20045,7 +21165,8 @@ "category": "Public Domain", "spdx_license_key": "LicenseRef-scancode-public-domain", "other_spdx_license_keys": [ - "LicenseRef-PublicDomain" + "LicenseRef-PublicDomain", + "LicenseRef-Fedora-Public-Domain" ], "is_exception": false, "is_deprecated": false, @@ -20067,12 +21188,26 @@ "license": "public-domain-disclaimer.LICENSE" }, { - "license_key": "purdue-bsd", + "license_key": "punycode", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-purdue-bsd", + "spdx_license_key": "LicenseRef-scancode-punycode", "other_spdx_license_keys": [], "is_exception": false, "is_deprecated": false, + "json": "punycode.json", + "yaml": "punycode.yml", + "html": "punycode.html", + "license": "punycode.LICENSE" + }, + { + "license_key": "purdue-bsd", + "category": "Permissive", + "spdx_license_key": "lsof", + "other_spdx_license_keys": [ + "LicenseRef-scancode-purdue-bsd" + ], + "is_exception": false, + "is_deprecated": false, "json": "purdue-bsd.json", "yaml": "purdue-bsd.yml", "html": "purdue-bsd.html", @@ -20150,6 +21285,18 @@ "html": "python-cwi.html", "license": "python-cwi.LICENSE" }, + { + "license_key": "python-ldap", + "category": "Permissive", + "spdx_license_key": "python-ldap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python-ldap.json", + "yaml": "python-ldap.yml", + "html": "python-ldap.html", + "license": "python-ldap.LICENSE" + }, { "license_key": "qaplug", "category": "Proprietary Free", @@ -20270,6 +21417,18 @@ "html": "qpopper.html", "license": "qpopper.LICENSE" }, + { + "license_key": "qskinny-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qskinny-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qskinny-exception-lgpl-2.1.json", + "yaml": "qskinny-exception-lgpl-2.1.yml", + "html": "qskinny-exception-lgpl-2.1.html", + "license": "qskinny-exception-lgpl-2.1.LICENSE" + }, { "license_key": "qt-commercial-1.1", "category": "Commercial", @@ -20572,6 +21731,18 @@ "html": "rdisc.html", "license": "rdisc.LICENSE" }, + { + "license_key": "reading-godiva-2010", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-reading-godiva-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "reading-godiva-2010.json", + "yaml": "reading-godiva-2010.yml", + "html": "reading-godiva-2010.html", + "license": "reading-godiva-2010.LICENSE" + }, { "license_key": "realm-platform-extension-2017", "category": "Proprietary Free", @@ -20924,6 +22095,18 @@ "html": "rsa-proprietary.html", "license": "rsa-proprietary.LICENSE" }, + { + "license_key": "rsalv2", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-rsalv2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsalv2.json", + "yaml": "rsalv2.yml", + "html": "rsalv2.html", + "license": "rsalv2.LICENSE" + }, { "license_key": "rtools-util", "category": "Permissive", @@ -21071,8 +22254,10 @@ { "license_key": "sane-exception-2.0-plus", "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-sane-exception-2.0-plus", - "other_spdx_license_keys": [], + "spdx_license_key": "SANE-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sane-exception-2.0-plus" + ], "is_exception": true, "is_deprecated": false, "json": "sane-exception-2.0-plus.json", @@ -21550,6 +22735,30 @@ "html": "sglib.html", "license": "sglib.LICENSE" }, + { + "license_key": "sgp4", + "category": "Permissive", + "spdx_license_key": "SGP4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgp4.json", + "yaml": "sgp4.yml", + "html": "sgp4.html", + "license": "sgp4.LICENSE" + }, + { + "license_key": "sh-cla-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-sh-cla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sh-cla-1.1.json", + "yaml": "sh-cla-1.1.yml", + "html": "sh-cla-1.1.html", + "license": "sh-cla-1.1.LICENSE" + }, { "license_key": "shavlik-eula", "category": "Commercial", @@ -21694,6 +22903,18 @@ "html": "skip-2014.html", "license": "skip-2014.LICENSE" }, + { + "license_key": "sl", + "category": "Permissive", + "spdx_license_key": "SL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sl.json", + "yaml": "sl.yml", + "html": "sl.html", + "license": "sl.LICENSE" + }, { "license_key": "sleepycat", "category": "Copyleft", @@ -21730,6 +22951,30 @@ "html": "slf4j-2008.html", "license": "slf4j-2008.LICENSE" }, + { + "license_key": "slint-commercial-2.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-slint-commercial-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slint-commercial-2.0.json", + "yaml": "slint-commercial-2.0.yml", + "html": "slint-commercial-2.0.html", + "license": "slint-commercial-2.0.LICENSE" + }, + { + "license_key": "slint-royalty-free-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-slint-royalty-free-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slint-royalty-free-1.0.json", + "yaml": "slint-royalty-free-1.0.yml", + "html": "slint-royalty-free-1.0.html", + "license": "slint-royalty-free-1.0.LICENSE" + }, { "license_key": "slysoft-eula", "category": "Commercial", @@ -21876,6 +23121,18 @@ "html": "softfloat-2.0.html", "license": "softfloat-2.0.LICENSE" }, + { + "license_key": "softfloat-2c", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat-2c", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat-2c.json", + "yaml": "softfloat-2c.yml", + "html": "softfloat-2c.html", + "license": "softfloat-2c.LICENSE" + }, { "license_key": "softsurfer", "category": "Permissive", @@ -21900,6 +23157,32 @@ "html": "solace-software-eula-2020.html", "license": "solace-software-eula-2020.LICENSE" }, + { + "license_key": "soundex", + "category": "Permissive", + "spdx_license_key": "Soundex", + "other_spdx_license_keys": [ + "LicenseRef-scancode-soundex" + ], + "is_exception": false, + "is_deprecated": false, + "json": "soundex.json", + "yaml": "soundex.yml", + "html": "soundex.html", + "license": "soundex.LICENSE" + }, + { + "license_key": "sourcegraph-enterprise-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sourcegraph-enterprise-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sourcegraph-enterprise-2018.json", + "yaml": "sourcegraph-enterprise-2018.yml", + "html": "sourcegraph-enterprise-2018.html", + "license": "sourcegraph-enterprise-2018.LICENSE" + }, { "license_key": "spark-jive", "category": "Proprietary Free", @@ -22034,6 +23317,18 @@ "html": "srgb.html", "license": "srgb.LICENSE" }, + { + "license_key": "ssh-keyscan", + "category": "Permissive", + "spdx_license_key": "ssh-keyscan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ssh-keyscan.json", + "yaml": "ssh-keyscan.yml", + "html": "ssh-keyscan.html", + "license": "ssh-keyscan.LICENSE" + }, { "license_key": "ssleay", "category": "Permissive", @@ -22242,6 +23537,18 @@ "html": "stu-nicholls.html", "license": "stu-nicholls.LICENSE" }, + { + "license_key": "stunnel-exception", + "category": "Copyleft Limited", + "spdx_license_key": "stunnel-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "stunnel-exception.json", + "yaml": "stunnel-exception.yml", + "html": "stunnel-exception.html", + "license": "stunnel-exception.LICENSE" + }, { "license_key": "subcommander-exception-2.0-plus", "category": "Copyleft Limited", @@ -22920,6 +24227,18 @@ "html": "swl.html", "license": "swl.LICENSE" }, + { + "license_key": "swrule", + "category": "Permissive", + "spdx_license_key": "swrule", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swrule.json", + "yaml": "swrule.yml", + "html": "swrule.html", + "license": "swrule.LICENSE" + }, { "license_key": "sybase", "category": "Proprietary Free", @@ -23343,8 +24662,10 @@ { "license_key": "term-readkey", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-term-readkey", - "other_spdx_license_keys": [], + "spdx_license_key": "TermReadKey", + "other_spdx_license_keys": [ + "LicenseRef-scancode-term-readkey" + ], "is_exception": false, "is_deprecated": false, "json": "term-readkey.json", @@ -23367,8 +24688,10 @@ { "license_key": "tex-exception", "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-tex-exception", - "other_spdx_license_keys": [], + "spdx_license_key": "Texinfo-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-tex-exception" + ], "is_exception": true, "is_deprecated": false, "json": "tex-exception.json", @@ -23424,6 +24747,18 @@ "html": "tgppl-1.0.html", "license": "tgppl-1.0.LICENSE" }, + { + "license_key": "the-stack-tos-2023-07", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-the-stack-tos-2023-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "the-stack-tos-2023-07.json", + "yaml": "the-stack-tos-2023-07.yml", + "html": "the-stack-tos-2023-07.html", + "license": "the-stack-tos-2023-07.LICENSE" + }, { "license_key": "things-i-made-public-license", "category": "Permissive", @@ -23594,6 +24929,30 @@ "html": "tmate.html", "license": "tmate.LICENSE" }, + { + "license_key": "toppers-educational", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-toppers-educational", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "toppers-educational.json", + "yaml": "toppers-educational.yml", + "html": "toppers-educational.html", + "license": "toppers-educational.LICENSE" + }, + { + "license_key": "toppers-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-toppers-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "toppers-license.json", + "yaml": "toppers-license.yml", + "html": "toppers-license.html", + "license": "toppers-license.LICENSE" + }, { "license_key": "torque-1.1", "category": "Copyleft Limited", @@ -23849,8 +25208,10 @@ { "license_key": "ttyp0", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-ttyp0", - "other_spdx_license_keys": [], + "spdx_license_key": "TTYP0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ttyp0" + ], "is_exception": false, "is_deprecated": false, "json": "ttyp0.json", @@ -23945,8 +25306,10 @@ { "license_key": "ubdl", "category": "Copyleft Limited", - "spdx_license_key": "LicenseRef-scancode-ubdl", - "other_spdx_license_keys": [], + "spdx_license_key": "UBDL-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ubdl" + ], "is_exception": true, "is_deprecated": false, "json": "ubdl.json", @@ -23956,7 +25319,7 @@ }, { "license_key": "ubuntu-font-1.0", - "category": "Free Restricted", + "category": "Copyleft Limited", "spdx_license_key": "LicenseRef-scancode-ubuntu-font-1.0", "other_spdx_license_keys": [], "is_exception": false, @@ -23990,6 +25353,30 @@ "html": "ucl-1.0.html", "license": "ucl-1.0.LICENSE" }, + { + "license_key": "ugui", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ugui", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ugui.json", + "yaml": "ugui.yml", + "html": "ugui.html", + "license": "ugui.LICENSE" + }, + { + "license_key": "ulem", + "category": "Permissive", + "spdx_license_key": "ulem", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ulem.json", + "yaml": "ulem.yml", + "html": "ulem.html", + "license": "ulem.LICENSE" + }, { "license_key": "unbuntu-font-1.0", "category": "Free Restricted", @@ -24098,6 +25485,18 @@ "html": "universal-foss-exception-1.0.html", "license": "universal-foss-exception-1.0.LICENSE" }, + { + "license_key": "unixcrypt", + "category": "Permissive", + "spdx_license_key": "UnixCrypt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unixcrypt.json", + "yaml": "unixcrypt.yml", + "html": "unixcrypt.html", + "license": "unixcrypt.LICENSE" + }, { "license_key": "unknown", "category": "Unstated License", @@ -24306,6 +25705,30 @@ "html": "upx-exception-2.0-plus.html", "license": "upx-exception-2.0-plus.LICENSE" }, + { + "license_key": "urt-rle", + "category": "Copyleft Limited", + "spdx_license_key": "URT-RLE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "urt-rle.json", + "yaml": "urt-rle.yml", + "html": "urt-rle.html", + "license": "urt-rle.LICENSE" + }, + { + "license_key": "us-govt-geotranform", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-us-govt-geotranform", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-geotranform.json", + "yaml": "us-govt-geotranform.yml", + "html": "us-govt-geotranform.html", + "license": "us-govt-geotranform.LICENSE" + }, { "license_key": "us-govt-public-domain", "category": "Public Domain", @@ -24354,6 +25777,18 @@ "html": "utopia.html", "license": "utopia.LICENSE" }, + { + "license_key": "vaadin-cvdl-4.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vaadin-cvdl-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vaadin-cvdl-4.0.json", + "yaml": "vaadin-cvdl-4.0.yml", + "html": "vaadin-cvdl-4.0.html", + "license": "vaadin-cvdl-4.0.LICENSE" + }, { "license_key": "vbaccelerator", "category": "Free Restricted", @@ -24609,6 +26044,18 @@ "html": "vs10x-code-map.html", "license": "vs10x-code-map.LICENSE" }, + { + "license_key": "vsftpd-openssl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "vsftpd-openssl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "vsftpd-openssl-exception.json", + "yaml": "vsftpd-openssl-exception.yml", + "html": "vsftpd-openssl-exception.html", + "license": "vsftpd-openssl-exception.LICENSE" + }, { "license_key": "vsl-1.0", "category": "Permissive", @@ -24633,6 +26080,18 @@ "html": "vuforia-2013-07-29.html", "license": "vuforia-2013-07-29.LICENSE" }, + { + "license_key": "vvvvvv-scl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vvvvvv-scl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vvvvvv-scl-1.0.json", + "yaml": "vvvvvv-scl-1.0.yml", + "html": "vvvvvv-scl-1.0.html", + "license": "vvvvvv-scl-1.0.LICENSE" + }, { "license_key": "w3c", "category": "Permissive", @@ -24729,6 +26188,18 @@ "html": "w3c-software-20021231.html", "license": "w3c-software-20021231.LICENSE" }, + { + "license_key": "w3c-software-2023", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-w3c-software-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-2023.json", + "yaml": "w3c-software-2023.yml", + "html": "w3c-software-2023.html", + "license": "w3c-software-2023.LICENSE" + }, { "license_key": "w3c-software-doc-20150513", "category": "Permissive", @@ -24837,6 +26308,18 @@ "html": "wide-license.html", "license": "wide-license.LICENSE" }, + { + "license_key": "widget-workshop", + "category": "Permissive", + "spdx_license_key": "Widget-Workshop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "widget-workshop.json", + "yaml": "widget-workshop.yml", + "html": "widget-workshop.html", + "license": "widget-workshop.LICENSE" + }, { "license_key": "wifi-alliance", "category": "Commercial", @@ -25226,8 +26709,10 @@ { "license_key": "x11-dec2", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-x11-dec2", - "other_spdx_license_keys": [], + "spdx_license_key": "HPND-DEC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-dec2" + ], "is_exception": false, "is_deprecated": false, "json": "x11-dec2.json", @@ -25312,8 +26797,10 @@ { "license_key": "x11-lucent", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-x11-lucent", - "other_spdx_license_keys": [], + "spdx_license_key": "dtoa", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-lucent" + ], "is_exception": false, "is_deprecated": false, "json": "x11-lucent.json", @@ -25348,8 +26835,10 @@ { "license_key": "x11-opengl", "category": "Permissive", - "spdx_license_key": "LicenseRef-scancode-x11-opengl", - "other_spdx_license_keys": [], + "spdx_license_key": "SGI-OpenGL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-opengl" + ], "is_exception": false, "is_deprecated": false, "json": "x11-opengl.json", @@ -25529,6 +27018,18 @@ "html": "xceed-community-2021.html", "license": "xceed-community-2021.LICENSE" }, + { + "license_key": "xdebug-1.03", + "category": "Permissive", + "spdx_license_key": "Xdebug-1.03", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xdebug-1.03.json", + "yaml": "xdebug-1.03.yml", + "html": "xdebug-1.03.html", + "license": "xdebug-1.03.LICENSE" + }, { "license_key": "xenomai-gpl-exception", "category": "Copyleft Limited", @@ -25589,6 +27090,18 @@ "html": "xinetd.html", "license": "xinetd.LICENSE" }, + { + "license_key": "xiph-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-xiph-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xiph-patent.json", + "yaml": "xiph-patent.yml", + "html": "xiph-patent.html", + "license": "xiph-patent.LICENSE" + }, { "license_key": "xming", "category": "Commercial", @@ -25769,6 +27282,18 @@ "html": "zed.html", "license": "zed.LICENSE" }, + { + "license_key": "zeeff", + "category": "Permissive", + "spdx_license_key": "Zeeff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zeeff.json", + "yaml": "zeeff.yml", + "html": "zeeff.html", + "license": "zeeff.LICENSE" + }, { "license_key": "zend-2.0", "category": "Permissive", @@ -25781,6 +27306,18 @@ "html": "zend-2.0.html", "license": "zend-2.0.LICENSE" }, + { + "license_key": "zendesk-appdev-api-2022", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-zendesk-appdev-api-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zendesk-appdev-api-2022.json", + "yaml": "zendesk-appdev-api-2022.yml", + "html": "zendesk-appdev-api-2022.html", + "license": "zendesk-appdev-api-2022.LICENSE" + }, { "license_key": "zeromq-exception-lgpl-3.0", "category": "Copyleft Limited",