SBOM: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 72: Line 72:
If that is not the case for the repo you are maintaining, make sure to explicitly specify a different license either per target, or per subdirectory, or per repo.
If that is not the case for the repo you are maintaining, make sure to explicitly specify a different license either per target, or per subdirectory, or per repo.


To do it per target, specify the ''QT_LICENSE_ID'' option to ''qt_internal_add_module / plugin / tool / extend_target'' with a value that _qt_internal_sbom_get_spdx_license_expression understands.
To do it per target, specify the ''QT_LICENSE_ID'' option to ''qt_internal_add_module / plugin / tool / extend_target'' with a value that the implementation of ''_qt_internal_sbom_get_spdx_license_expression'' understands.


<syntaxhighlight lang="cmake">
<syntaxhighlight lang="cmake">
Line 83: Line 83:
Example: https://codereview.qt-project.org/c/qt/qtwayland/+/569252/4/src/plugins/decorations/bradient/CMakeLists.txt
Example: https://codereview.qt-project.org/c/qt/qtwayland/+/569252/4/src/plugins/decorations/bradient/CMakeLists.txt


To do it per subdirectory or repo, set the ''QT_SBOM_DEFAULT_QT_LICENSE_ID_LIBRARIES'' and ''QT_SBOM_DEFAULT_QT_LICENSE_ID_EXECUTABLES'' variables to one of the values that _qt_internal_sbom_get_spdx_license_expression understands.
To do it per subdirectory or repo, set the ''QT_SBOM_DEFAULT_QT_LICENSE_ID_LIBRARIES'' and ''QT_SBOM_DEFAULT_QT_LICENSE_ID_EXECUTABLES'' variables to one of the values that the implementation of ''_qt_internal_sbom_get_spdx_license_expression'' understands.


Example: https://codereview.qt-project.org/c/qt/qtquick3dphysics/+/569239
Example: https://codereview.qt-project.org/c/qt/qtquick3dphysics/+/569239
Line 135: Line 135:
you can use specify SBOM-related options that ''qt_internal_add_module / plugin / tool / extend_target'' understand.
you can use specify SBOM-related options that ''qt_internal_add_module / plugin / tool / extend_target'' understand.


The full list can be found in ''_qt_internal_get_sbom_add_target_common_options'' and
The full list can be found in the implementation of the ''_qt_internal_get_sbom_add_target_common_options'' command


<syntaxhighlight lang="cmake">
<syntaxhighlight lang="cmake">
Line 179: Line 179:
)
)
</syntaxhighlight>
</syntaxhighlight>
More examples of changes with SBOM annotations can be found at https://codereview.qt-project.org/q/topic:%22sbom%22


=== Viewing and validating SBOM SDPX documents ===
=== Viewing and validating SBOM SDPX documents ===

Revision as of 12:01, 27 June 2024


Qt Software Bill of Materials (SBOM)

Starting with Qt 6.8, when building Qt, the build system can generate and install an SBOM in the SPDX 2.3 format.

A SPDX SBOM document contains the following kinds of information: installed files checksums, copyrights, licenses, dependency versions, urls, git commits, etc.

Each built repository (qtbase, qtsvg) will install a separate SPDX document, e.g. $qt_prefix/sbom/qtbase-6.8.0.spdx, qsvg-6.8.0.spdx, etc.

To generate and install an SBOM, pass -sbom to configure. The argument needs to be passed to each separately configured repository.

$ ../qtbase-source-dir/configure -prefix /opt/qt6 -sbom
# or 
$ /opt/qt6/bin/qt-configure-module ../qtsvg -sbom
# or
$ cmake path/to/qt/repo -DQT_GENERATE_SBOM=ON

The sbom files will then be generated and installed during regular installation, but can also be explicitly installed by specifying a cmake installation component.

$ ninja install
# or 
$ cmake --install . --component sbom

# -- Starting SBOM generation in build dir:     /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/qtsvg/qt_sbom/staging-qtsvg.spdx.in
# -- Finalizing SBOM generation in install dir: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtsvg-6.9.0.spdx

Note that because the document contains checksums of installed files, all files need to be installed first to generate a valid document.

Mapping of SPDX concepts to CMake

The general structure of a SPDX document is the following:

  • a document contains document metadata and packages
  • a package contains package metadata and files
  • a file contains file metadata
  • a package can have various kinds of relationships to other packages
  • a package can depend on another package either in the current document or in a referenced external document
  • a file can have various kind of relationships to other files

In Qt's build system, we have multiple 'entity' types that map to a SPDX package:

  • qt module (Gui)
  • qt plugin (platform plugin)
  • qt tool (moc)
  • qt app (Designer)
  • 3rd party bundled code (pcre)
  • system library dependencies (openssl)

Each of these can then have zero or more SPDX file references.

In a -debug-and-release build there would be a libQt6Gui.dll and libQt6Gui_debug.dll file.

For system libraries, there are no file references, because a SPDX document can only refer to an installed file.

Because system libraries are usually looked up each time a project is configured, the path would always be different, so we can't record such file metadata.

Almost all SPDX packages are backed by a cmake target.

Maintainer Knowledge

As a Qt maintainer, there are a few things you should know and take care of.

Qt Licensing

The licensing of the qt modules, plugins, tools, apps.

The default license of qt modules is LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only. And for tools and apps it is usually LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

If that is not the case for the repo you are maintaining, make sure to explicitly specify a different license either per target, or per subdirectory, or per repo.

To do it per target, specify the QT_LICENSE_ID option to qt_internal_add_module / plugin / tool / extend_target with a value that the implementation of _qt_internal_sbom_get_spdx_license_expression understands.

qt_internal_add_module(WebEngine
    ...
    QT_LICENSE_ID  QT_COMMERCIAL_OR_LGPL3
)

Example: https://codereview.qt-project.org/c/qt/qtwayland/+/569252/4/src/plugins/decorations/bradient/CMakeLists.txt

To do it per subdirectory or repo, set the QT_SBOM_DEFAULT_QT_LICENSE_ID_LIBRARIES and QT_SBOM_DEFAULT_QT_LICENSE_ID_EXECUTABLES variables to one of the values that the implementation of _qt_internal_sbom_get_spdx_license_expression understands.

Example: https://codereview.qt-project.org/c/qt/qtquick3dphysics/+/569239

Bundled / vendored 3rd party sources

Qt uses various 3rd party sources that are usually located in src/3rdparty, but sometimes they are part of module sources.

We need to make sure the SBOM generation process knows about them for compliance reasons.

The easiest way to annotate these is with one or more qt_attribution.json files.

For 3rd party libraries created with qt_internal_add_3rdparty_library, as long as the CMakeLists.txt is next to the qt_attribution.json file, you don't need to do anything.

In case if the attribution file is in a different location, make sure to specify all relevant attribution files via the ATTRIBUTION_FILE_DIR_PATHS option to qt_internal_add_module / plugin / tool / extend_target .

qt_internal_add_module(Core
    ATTRIBUTION_FILE_DIR_PATHS
        text
        tools
        ../3rdparty/blake2
        ../3rdparty/md4
        ../3rdparty/md5
        ../3rdparty/sha1
        ../3rdparty/sha3
        ../3rdparty/rfc6234
        ../3rdparty/tinycbor
)

qt_internal_extend_target(Network CONDITION NOT QT_FEATURE_system_zlib
    INCLUDE_DIRECTORIES
        ../3rdparty/zlib/src
    ATTRIBUTION_FILE_DIR_PATHS
        ../3rdparty/zlib
        ../3rdparty/some-random-ssl-lib
)

qt_internal_add_3rdparty_library(BundledPcre2
    ATTRIBUTION_FILE_DIR_PATHS
        ../3rdparty/pcre
)

Various examples:

In case if some information needs to be recorded for a target without a qt_attribution.json file, and for whatever reason creating one is not desired, you can use specify SBOM-related options that qt_internal_add_module / plugin / tool / extend_target understand.

The full list can be found in the implementation of the _qt_internal_get_sbom_add_target_common_options command

qt_internal_extend_target(BundledZlib CONDITION NOT QT_FEATURE_system_zlib
    # flags
    NO_CURRENT_DIR_ATTRIBUTION
    NO_ATTRIBUTION_LICENSE_ID
    NO_DEFAULT_QT_LICENSE
    NO_DEFAULT_QT_LICENSE_ID_LIBRARIES
    NO_DEFAULT_QT_LICENSE_ID_EXECUTABLES
    NO_DEFAULT_DIRECTORY_QT_LICENSE
    NO_DEFAULT_QT_COPYRIGHTS
    NO_DEFAULT_QT_PACKAGE_VERSION
    NO_DEFAULT_QT_SUPPLIER
    
    # single value options
    PACKAGE_VERSION "1.2.4"
    FRIENDLY_PACKAGE_NAME "FancyierZlib"
    CPE_VENDOR "zlib"
    CPE_PRODUCT "zlib"
    LICENSE_EXPRESSION MIT OR BSD-3-Clause
    QT_LICENSE_ID QT_COMMERCIAL_OR_BSD3
    DOWNLOAD_LOCATION "https://github.com/madler/zlib"
    ATTRIBUTION_ENTRY_INDEX 5

    # multi value options
    COPYRIGHTS
        "Copyright company 1"
        "Copyright company 1"
    CPE
        "cpe:2.3:o:arm:arm:-:*:*:*:*:*:*:*"
        "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*"
    SBOM_DEPENDENCIES
        Qt6::Core
        Qt6::Gui
        WrapOpenSSL::WrapOpenSSL
    ATTRIBUTION_FILE_PATHS
        ../3rdparty/zlib1/qt_attribution.json
        ../3rdparty/zlib2/qt_attribution.json
    ATTRIBUTION_FILE_DIR_PATHS
        ../3rdparty/zlib3
        ../3rdparty/zlib4
)

More examples of changes with SBOM annotations can be found at https://codereview.qt-project.org/q/topic:%22sbom%22

Viewing and validating SBOM SDPX documents

The generated SPDX documents use a tag:value system for representing their information and can be read by any text editor.

But a document might contain a lot of information, and it's hard to check whether there are any issues or anything is missing.

There are third party python packages that can help visualize and validate the documents.

The qt build system can automatically use them to show the document content after generation and do appropriate validation.

Make sure you have Python 3.9+ installed and install the following python packages:

$ pip install spdx-tools ntia-conformance-checker sbomaudit sbom2doc

Then, configure qt or a qt repo using:

$ ../qtbase-source-dir/configure -prefix /opt/qt6 -sbom -- -DQT_INTERNAL_NO_SBOM_FIND_PYTHON_FRAMEWORK=ON -DQT_INTERNAL_SBOM_DEFAULT_CHECKS=ON -DQT_INTERNAL_SBOM_AUDIT_NO_ERROR=ON
# or
$ /opt/qt6/bin/qt-configure-module ../qtsvg -sbom -- -DQT_INTERNAL_NO_SBOM_FIND_PYTHON_FRAMEWORK=ON -DQT_INTERNAL_SBOM_DEFAULT_CHECKS=ON -DQT_INTERNAL_SBOM_AUDIT_NO_ERROR=ON
# or
$ cmake path/to/qt/repo -DQT_GENERATE_SBOM=ON -DQT_INTERNAL_NO_SBOM_FIND_PYTHON_FRAMEWORK=ON -DQT_INTERNAL_SBOM_DEFAULT_CHECKS=ON -DQT_INTERNAL_SBOM_AUDIT_NO_ERROR=ON

The build system will check if all dependencies are present and show an error if not.

Then after SBOM generation the build system will do the following:

  • generate an equivalent json representation of the SPDX file (fails installation if invalid content is found)
  • run the NTIA compliance checker (fails the installation if check fails)
  • run sbom2doc to show the contents
  • run sbomaudit for some additional checks (doesn't fail the installation)

Here is some sample output for qtimageformats and qtbase:

-- Starting SBOM generation in build dir: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/qtimageformats/qt_sbom/staging-qtimageformats.spdx.in
-- Finalizing SBOM generation in install dir: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtimageformats-6.9.0.spdx
-- Generating JSON: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtimageformats-6.9.0.spdx.json
-- Verifying: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtimageformats-6.9.0.spdx

Is this SBOM NTIA minimum element conformant? True

Individual elements                            | Status
-------------------------------------------------------
All component names provided?                  | True
All component versions provided?               | True
All component identifiers provided?            | True
All component suppliers provided?              | True
SBOM author name provided?                     | True
SBOM creation timestamp provided?              | True
Dependency relationships provided?             | True

-- Showing main SBOM document info: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtimageformats-6.9.0.spdx
╭──────────────╮
 SBOM Summary 
╰──────────────╯
┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Item           Details                                                                                        
┡━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
 SBOM File      /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtimageformats-6.9.0.spdx 
 SBOM Type      spdx                                                                                           
 Version        SPDX-2.3                                                                                       
 Name           qtimageformats-6.9.0                                                                           
 Creator        Organization:TheQtCompany                                                                      
 Creator        Tool:Qt Build System                                                                           
 Created        2024-06-27T11:56:32Z                                                                           
 Files          7                                                                                              
 Packages       12                                                                                             
 Relationships  22                                                                                             
└───────────────┴────────────────────────────────────────────────────────────────────────────────────────────────┘
╭──────────────╮
 File Summary 
╰──────────────╯
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Name                                    Type    License                                 Copyright                              
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
 ./plugins/imageformats/libqtga_debug.  BINARY  LicenseRef-Qt-Commercial OR             Copyright (C) 2024 The Qt Company Ltd. 
                                                 LGPL-3.0-only OR GPL-2.0-only OR                                               
                                                 GPL-3.0-only                                                                   
 ./plugins/imageformats/libqwbmp_debug  BINARY  LicenseRef-Qt-Commercial OR             Copyright (C) 2024 The Qt Company Ltd. 
                                                 LGPL-3.0-only OR GPL-2.0-only OR                                               
                                                 GPL-3.0-only                                                                   
 ./plugins/imageformats/libqtiff_debug  BINARY  LicenseRef-Qt-Commercial OR             Copyright (C) 2024 The Qt Company Ltd. 
                                                 LGPL-3.0-only OR GPL-2.0-only OR                                               
                                                 GPL-3.0-only                                                                   
 ./plugins/imageformats/libqwebp_debug  BINARY  LicenseRef-Qt-Commercial OR             Copyright (C) 2024 The Qt Company Ltd. 
                                                 LGPL-3.0-only OR GPL-2.0-only OR                                               
                                                 GPL-3.0-only                                                                   
 ./plugins/imageformats/libqmacheif_de  BINARY  LicenseRef-Qt-Commercial OR             Copyright (C) 2024 The Qt Company Ltd. 
                                                 LGPL-3.0-only OR GPL-2.0-only OR                                               
                                                 GPL-3.0-only                                                                   
 ./plugins/imageformats/libqicns_debug  BINARY  LicenseRef-Qt-Commercial OR             Copyright (C) 2024 The Qt Company Ltd. 
                                                 LGPL-3.0-only OR GPL-2.0-only OR                                               
                                                 GPL-3.0-only                                                                   
 ./plugins/imageformats/libqmacjp2_deb  BINARY  LicenseRef-Qt-Commercial OR             Copyright (C) 2024 The Qt Company Ltd. 
                                                 LGPL-3.0-only OR GPL-2.0-only OR                                               
                                                 GPL-3.0-only                                                                   
└────────────────────────────────────────┴────────┴────────────────────────────────────────┴────────────────────────────────────────┘
╭─────────────────╮
 Package Summary 
╰─────────────────╯
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Name                             Version          Type         Supplier      License                                          
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
 AppleClang                       15.0.0.15000100  APPLICATION  Anonymous     NOASSERTION                                      
 qtimageformats                   983b9da+dev      LIBRARY      TheQtCompany  NOASSERTION                                      
 QTgaPlugin                       6.9.0            LIBRARY      TheQtCompany  LicenseRef-Qt-Commercial OR LGPL-3.0-only OR     
                                                                              GPL-2.0-only OR GPL-3.0-only                     
 QWbmpPlugin                      6.9.0            LIBRARY      TheQtCompany  LicenseRef-Qt-Commercial OR LGPL-3.0-only OR     
                                                                              GPL-2.0-only OR GPL-3.0-only                     
 QTiffPlugin_Attribution_libtiff  4.6.0            LIBRARY      TheQtCompany  libtiff                                          
 QTiffPlugin                      6.9.0            LIBRARY      TheQtCompany  LicenseRef-Qt-Commercial OR LGPL-3.0-only OR     
                                                                              GPL-2.0-only OR GPL-3.0-only                     
 QWebpPlugin_Attribution_libwebp  1.4.0            LIBRARY      TheQtCompany  BSD-3-Clause                                     
 QWebpPlugin                      6.9.0            LIBRARY      TheQtCompany  LicenseRef-Qt-Commercial OR LGPL-3.0-only OR     
                                                                              GPL-2.0-only OR GPL-3.0-only                     
 QMacHeifPlugin                   6.9.0            LIBRARY      TheQtCompany  LicenseRef-Qt-Commercial OR LGPL-3.0-only OR     
                                                                              GPL-2.0-only OR GPL-3.0-only                     
 QICNSPlugin                      6.9.0            LIBRARY      TheQtCompany  LicenseRef-Qt-Commercial OR LGPL-3.0-only OR     
                                                                              GPL-2.0-only OR GPL-3.0-only                     
 QMacJp2Plugin                    6.9.0            LIBRARY      TheQtCompany  LicenseRef-Qt-Commercial OR LGPL-3.0-only OR     
                                                                              GPL-2.0-only OR GPL-3.0-only                     
 WrapZLIB                         1.2.12           LIBRARY      Anonymous     NOASSERTION                                      
└─────────────────────────────────┴─────────────────┴─────────────┴──────────────┴──────────────────────────────────────────────────┘


┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Name                             Version          Ecosystem  Download                         Copyright                       
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
 AppleClang                       15.0.0.15000100  -          NOT KNOWN                        NOASSERTION                     
 qtimageformats                   983b9da+dev      generic    git://code.qt.io/qt/qtimagefor… │ Copyright (C) 2024 The Qt       │
                                                                                               Company Ltd.                    
 QTgaPlugin                       6.9.0            generic    git://code.qt.io/qt/qtimagefor… │ Copyright (C) 2024 The Qt       │
                                                                                               Company Ltd.                    
 QWbmpPlugin                      6.9.0            generic    git://code.qt.io/qt/qtimagefor… │ Copyright (C) 2024 The Qt       │
                                                                                               Company Ltd.                    
 QTiffPlugin_Attribution_libtiff  4.6.0            generic    https://download.osgeo.org/lib… │ Copyright (c) 1988-1997 Sam     │
                                                                                               Leffler                         
 QTiffPlugin                      6.9.0            generic    git://code.qt.io/qt/qtimagefor… │ Copyright (C) 2024 The Qt       │
                                                                                               Company Ltd.                    
 QWebpPlugin_Attribution_libwebp  1.4.0            generic    https://storage.googleapis.com… │ Copyright (c) 2010, Google Inc. │
                                                                                               All rights reserved.            
 QWebpPlugin                      6.9.0            generic    git://code.qt.io/qt/qtimagefor… │ Copyright (C) 2024 The Qt       │
                                                                                               Company Ltd.                    
 QMacHeifPlugin                   6.9.0            generic    git://code.qt.io/qt/qtimagefor… │ Copyright (C) 2024 The Qt       │
                                                                                               Company Ltd.                    
 QICNSPlugin                      6.9.0            generic    git://code.qt.io/qt/qtimagefor… │ Copyright (C) 2024 The Qt       │
                                                                                               Company Ltd.                    
 QMacJp2Plugin                    6.9.0            generic    git://code.qt.io/qt/qtimagefor… │ Copyright (C) 2024 The Qt       │
                                                                                               Company Ltd.                    
 WrapZLIB                         1.2.12           -          NOT KNOWN                        NOASSERTION                     
└─────────────────────────────────┴─────────────────┴───────────┴─────────────────────────────────┴─────────────────────────────────┘
╭────────────────────────╮
 Component Type Summary 
╰────────────────────────╯
┏━━━━━━━━━━━━━┳━━━━━━━┓
 Type         Count 
┡━━━━━━━━━━━━━╇━━━━━━━┩
 APPLICATION  1     
 LIBRARY      11    
└─────────────┴───────┘
╭─────────────────╮
 License Summary 
╰─────────────────╯
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┓
 License                                                                    Count 
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━┩
 BSD-3-Clause                                                               1     
 LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only  14    
 NOASSERTION                                                                3     
 libtiff                                                                    1     
└───────────────────────────────────────────────────────────────────────────┴───────┘
╭──────────────────╮
 Supplier Summary 
╰──────────────────╯
┏━━━━━━━━━━━━━━┳━━━━━━━┓
 Supplier      Count 
┡━━━━━━━━━━━━━━╇━━━━━━━┩
 Anonymous     2     
 TheQtCompany  10    
└──────────────┴───────┘
╭──────────────╮
 NTIA Summary 
╰──────────────╯
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┓
 Element                             Status 
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━┩
 All file information provided?      True   
 All package information provided?   True   
 Creator identified?                 True   
 Creation time identified?           True   
 Dependency relationships provided?  True   
└────────────────────────────────────┴────────┘

NTIA conformant True
-- Starting SBOM generation in build dir: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/qtbase/qt_sbom/staging-qtbase.spdx.in
-- Finalizing SBOM generation in install dir: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtbase-6.9.0.spdx
-- Generating JSON: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtbase-6.9.0.spdx.json
-- Verifying: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtbase-6.9.0.spdx

Is this SBOM NTIA minimum element conformant? True

Individual elements                            | Status
-------------------------------------------------------
All component names provided?                  | True
All component versions provided?               | True
All component identifiers provided?            | True
All component suppliers provided?              | True
SBOM author name provided?                     | True
SBOM creation timestamp provided?              | True
Dependency relationships provided?             | True

-- Showing main SBOM document info: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtbase-6.9.0.spdx
╭──────────────╮
│ SBOM Summary │
╰──────────────╯
┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Item          ┃ Details                                                                                ┃
┡━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ SBOM File     │ /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtbase-6.9.0.spdx │
│ SBOM Type     │ spdx                                                                                   │
│ Version       │ SPDX-2.3                                                                               │
│ Name          │ qtbase-6.9.0                                                                           │
│ Creator       │ Organization:TheQtCompany                                                              │
│ Creator       │ Tool:Qt Build System                                                                   │
│ Created       │ 2024-06-24T16:37:05Z                                                                   │
│ Files         │ 52                                                                                     │
│ Packages      │ 124                                                                                    │
│ Relationships │ 384                                                                                    │
└───────────────┴────────────────────────────────────────────────────────────────────────────────────────┘
╭──────────────╮
│ File Summary │
╰──────────────╯
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Name                                   ┃ Type   ┃ License                                ┃ Copyright                              ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ ./libexec/moc                          │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2013 Olivier Goffart     │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │ <ogoffart@woboq.com>                   │
│ ./libexec/rcc                          │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./libexec/tracepointgen                │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./libexec/tracegen                     │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./libexec/cmake_automoc_parser         │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./lib/libQt6Core_debug.6.9.0.dylib     │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/permissions/libqdarwincamer… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/permissions/libqdarwinmicro… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/permissions/libqdarwinbluet… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/permissions/libqdarwinconta… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/permissions/libqdarwincalen… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/permissions/libqdarwinlocat… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6BundledLibpng_debug.a      │ BINARY │ Libpng AND libpng-2.0                  │ Copyright (c) 1995-2024 The PNG        │
│                                        │        │                                        │ Reference Library Authors              │
│ ./lib/libQt6BundledLibjpeg_debug.a     │ BINARY │ IJG AND BSD-3-Clause                   │ Copyright (C) 2009-2024 D. R.          │
│                                        │        │                                        │ Commander                              │
│ ./lib/libQt6BundledFreetype_debug.a    │ BINARY │ FTL OR GPL-2.0-only                    │ Copyright (c) 2007-2014 Adobe Systems  │
│                                        │        │                                        │ Incorporated                           │
│ ./lib/libQt6Concurrent_debug.6.9.0.dy… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6Sql_debug.6.9.0.dylib      │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6Network_debug.6.9.0.dylib  │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6Xml_debug.6.9.0.dylib      │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6DBus_debug.6.9.0.dylib     │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./libexec/uic                          │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./bin/qdbuscpp2xml                     │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./bin/qdbusxml2cpp                     │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./libexec/qlalr                        │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./libexec/qvkgen                       │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./bin/qtpaths                          │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./bin/androiddeployqt                  │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./bin/androidtestrunner                │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./bin/macdeployqt                      │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
│ ./lib/libQt6Gui_debug.6.9.0.dylib      │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6ExampleIcons_debug.a       │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6ExamplesAssetDownloader_d… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6OpenGL_debug.6.9.0.dylib   │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6Widgets_debug.6.9.0.dylib  │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6OpenGLWidgets_debug.6.9.0… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6DeviceDiscoverySupport_de… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6FbSupport_debug.a          │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6Test_debug.6.9.0.dylib     │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./lib/libQt6PrintSupport_debug.6.9.0.… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/sqldrivers/libqsqlite_debug… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/platforms/libqminimal_debug… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/platforms/libqoffscreen_deb… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/platforms/libqcocoa_debug.d… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/imageformats/libqico_debug.… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/imageformats/libqjpeg_debug… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/imageformats/libqgif_debug.… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/generic/libqtuiotouchplugin… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/styles/libqmacstyle_debug.d… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/networkinformation/libqscne… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/tls/libqsecuretransportback… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./plugins/tls/libqcertonlybackend_deb… │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ LGPL-3.0-only OR GPL-2.0-only OR       │                                        │
│                                        │        │ GPL-3.0-only                           │                                        │
│ ./bin/qmake                            │ BINARY │ LicenseRef-Qt-Commercial OR            │ Copyright (C) 2024 The Qt Company Ltd. │
│                                        │        │ GPL-3.0-only WITH Qt-GPL-exception-1.0 │                                        │
└────────────────────────────────────────┴────────┴────────────────────────────────────────┴────────────────────────────────────────┘
╭─────────────────╮
│ Package Summary │
╰─────────────────╯
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Name                            ┃ Version                         ┃ Type        ┃ Supplier     ┃ License                          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ AppleClang                      │ 15.0.0.15000100                 │ APPLICATION │ Anonymous    │ NOASSERTION                      │
│ qtbase                          │ 84c2bf3fe0c+dev+dirty           │ LIBRARY     │ TheQtCompany │ NOASSERTION                      │
│ GlobalConfigPrivate             │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ Platform                        │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ PlatformCommonInternal          │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ PlatformModuleInternal          │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ PlatformPluginInternal          │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ PlatformAppInternal             │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ PlatformToolInternal            │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ Bootstrap_Attribution_pcre2     │ 10.44                           │ LIBRARY     │ TheQtCompany │ LicenseRef-BSD-3-Clause-with-PC… │
│ Bootstrap_Attribution_pcre2-sl… │ 10.44                           │ LIBRARY     │ TheQtCompany │ BSD-2-Clause                     │
│ Bootstrap                       │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ moc                             │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ rcc                             │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ tracepointgen                   │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ tracegen                        │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ cmake_automoc_parser            │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ BundledPcre2_Attribution_pcre2… │ 10.44                           │ LIBRARY     │ TheQtCompany │ BSD-2-Clause                     │
│ BundledPcre2                    │ 10.44                           │ LIBRARY     │ TheQtCompany │ LicenseRef-BSD-3-Clause-with-PC… │
│ Core_Attribution_unicode-chara… │ 30                              │ LIBRARY     │ TheQtCompany │ Unicode-DFS-2016                 │
│ Core_Attribution_unicode-cldr   │ v44.1                           │ LIBRARY     │ TheQtCompany │ Unicode-3.0                      │
│ Core_Attribution_siphash        │ unknown                         │ LIBRARY     │ TheQtCompany │ CC0-1.0                          │
│ Core_Attribution_blake2         │ 54f4faa4c16ea34bcd59d16e8da46a… │ LIBRARY     │ TheQtCompany │ CC0-1.0 OR Apache-2.0            │
│ Core_Attribution_md4            │ unknown                         │ LIBRARY     │ TheQtCompany │ CC0-1.0                          │
│ Core_Attribution_md5            │ unknown                         │ LIBRARY     │ TheQtCompany │ CC0-1.0                          │
│ Core_Attribution_sha1           │ unknown                         │ LIBRARY     │ TheQtCompany │ LicenseRef-SHA1-Public-Domain    │
│ Core_Attribution_sha3_endian    │ https://github.com/BrianGladma… │ LIBRARY     │ TheQtCompany │ BSD-2-Clause                     │
│                                 │ commit                          │             │              │                                  │
│                                 │ 4b9e13ead2c5b5e41ca27c65de4dd6… │             │              │                                  │
│ Core_Attribution_sha3_keccak    │ 3.2                             │ LIBRARY     │ TheQtCompany │ CC0-1.0                          │
│ Core_Attribution_rfc6234        │ unknown                         │ LIBRARY     │ TheQtCompany │ BSD-3-Clause                     │
│ Core_Attribution_tinycbor       │ 0.6.0                           │ LIBRARY     │ TheQtCompany │ MIT                              │
│ Core_Attribution_qeventdispatc… │ unknown                         │ LIBRARY     │ TheQtCompany │ BSD-3-Clause                     │
│ Core_Attribution_doubleconvers… │ 3.3.0                           │ LIBRARY     │ TheQtCompany │ BSD-3-Clause                     │
│ Core_Attribution_easing         │ unknown                         │ LIBRARY     │ TheQtCompany │ BSD-3-Clause                     │
│ Core_Attribution_forkfd         │ unknown                         │ LIBRARY     │ TheQtCompany │ MIT                              │
│ Core                            │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QDarwinCameraPermissionPlugin   │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QDarwinMicrophonePermissionPlu… │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QDarwinBluetoothPermissionPlug… │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QDarwinContactsPermissionPlugin │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QDarwinCalendarPermissionPlugin │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QDarwinLocationPermissionPlugin │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ BundledLibpng                   │ 1.6.43                          │ LIBRARY     │ TheQtCompany │ Libpng AND libpng-2.0            │
│ PngPrivate_Attribution_libpng   │ 1.6.43                          │ LIBRARY     │ TheQtCompany │ Libpng AND libpng-2.0            │
│ PngPrivate                      │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ BundledLibjpeg16bits            │ 3.0.3                           │ LIBRARY     │ TheQtCompany │ IJG AND BSD-3-Clause             │
│ BundledLibjpeg12bits            │ 3.0.3                           │ LIBRARY     │ TheQtCompany │ IJG AND BSD-3-Clause             │
│ BundledLibjpeg                  │ 3.0.3                           │ LIBRARY     │ TheQtCompany │ IJG AND BSD-3-Clause             │
│ JpegPrivate_Attribution_libjpeg │ 3.0.3                           │ LIBRARY     │ TheQtCompany │ IJG AND BSD-3-Clause             │
│ JpegPrivate                     │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ BundledFreetype_Attribution_fr… │ 2.13.2                          │ LIBRARY     │ TheQtCompany │ Zlib                             │
│ BundledFreetype_Attribution_fr… │ 2.13.2                          │ LIBRARY     │ TheQtCompany │ MIT                              │
│ BundledFreetype_Attribution_fr… │ 2.13.2                          │ LIBRARY     │ TheQtCompany │ MIT AND MIT-open-group           │
│ BundledFreetype                 │ 2.13.2                          │ LIBRARY     │ TheQtCompany │ FTL OR GPL-2.0-only              │
│ FreetypePrivate_Attribution_fr… │ 2.13.2                          │ LIBRARY     │ TheQtCompany │ FTL OR GPL-2.0-only              │
│ FreetypePrivate_Attribution_fr… │ unknown                         │ LIBRARY     │ TheQtCompany │ Zlib                             │
│ FreetypePrivate_Attribution_fr… │ unknown                         │ LIBRARY     │ TheQtCompany │ MIT                              │
│ FreetypePrivate_Attribution_fr… │ unknown                         │ LIBRARY     │ TheQtCompany │ MIT AND MIT-open-group           │
│ FreetypePrivate                 │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ BundledHarfbuzz                 │ 8.5.0                           │ LIBRARY     │ TheQtCompany │ MIT                              │
│ HarfbuzzPrivate_Attribution_ha… │ 8.5.0                           │ LIBRARY     │ TheQtCompany │ MIT                              │
│ HarfbuzzPrivate                 │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ Concurrent                      │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ Sql                             │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ Network_Attribution_psl-data    │ 903a83ff7bfc3148e3692e09396f9f… │ LIBRARY     │ TheQtCompany │ MPL-2.0                          │
│                                 │ fetched on 2024                 │             │              │                                  │
│ Network_Attribution_libpsl      │ 664f3dc85259ec65e30248a61fa1c4… │ LIBRARY     │ TheQtCompany │ BSD-3-Clause                     │
│ Network                         │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ Xml                             │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ DBus_Attribution_libdbus-1-hea… │ dbus                            │ LIBRARY     │ TheQtCompany │ AFL-2.1 OR GPL-2.0-or-later      │
│ DBus                            │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ uic                             │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ qdbuscpp2xml                    │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ qdbusxml2cpp                    │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ qlalr                           │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ qvkgen                          │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ qtpaths                         │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ androiddeployqt                 │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ androidtestrunner               │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ macdeployqt                     │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ Gui_Attribution_rhi-miniengine… │ 0aa79bad78992da0b6a8279ddb9002… │ LIBRARY     │ TheQtCompany │ MIT                              │
│ Gui_Attribution_opengl-headers  │ Revision 27684                  │ LIBRARY     │ TheQtCompany │ MIT                              │
│ Gui_Attribution_opengl-es2-hea… │ Revision 27673                  │ LIBRARY     │ TheQtCompany │ MIT                              │
│ Gui_Attribution_grayraster      │ unknown                         │ LIBRARY     │ TheQtCompany │ FTL OR GPL-2.0-only              │
│ Gui_Attribution_smooth-scaling… │ unknown                         │ LIBRARY     │ TheQtCompany │ BSD-2-Clause AND Imlib2          │
│ Gui_Attribution_xserverhelper   │ unknown                         │ LIBRARY     │ TheQtCompany │ X11 AND HPND                     │
│ Gui_Attribution_aglfn           │ 1.7                             │ LIBRARY     │ TheQtCompany │ BSD-3-Clause                     │
│ Gui_Attribution_VulkanMemoryAl… │ 3.1.0                           │ LIBRARY     │ TheQtCompany │ MIT                              │
│ Gui_Attribution_icc-sRGB-color… │ unknown                         │ LIBRARY     │ TheQtCompany │ LicenseRef-ICC-License           │
│ Gui_Attribution_md4c            │ 0.5.2                           │ LIBRARY     │ TheQtCompany │ MIT                              │
│ Gui                             │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ ExampleIconsPrivate             │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ ExamplesAssetDownloaderPrivate  │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ OpenGL                          │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ Widgets                         │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ OpenGLWidgets                   │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ DeviceDiscoverySupportPrivate   │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ FbSupportPrivate                │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ Test_Attribution_valgrind       │ 3.22.0                          │ LIBRARY     │ TheQtCompany │ BSD-4-Clause                     │
│ Test_Attribution_cycle          │ unknown                         │ LIBRARY     │ TheQtCompany │ MIT                              │
│ Test_Attribution_linuxperf      │ 3.7                             │ LIBRARY     │ TheQtCompany │ GPL-2.0-only WITH                │
│                                 │                                 │             │              │ Linux-syscall-note               │
│ Test                            │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ PrintSupport                    │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QSQLiteDriverPlugin_Attributio… │ 3.46.0                          │ LIBRARY     │ TheQtCompany │ blessing                         │
│ QSQLiteDriverPlugin             │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QMinimalIntegrationPlugin       │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QOffscreenIntegrationPlugin     │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QCocoaIntegrationPlugin_Attrib… │ unknown                         │ LIBRARY     │ TheQtCompany │ BSD-3-Clause                     │
│ QCocoaIntegrationPlugin         │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QICOPlugin                      │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QJpegPlugin                     │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QGifPlugin                      │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QTuioTouchPlugin                │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QMacStylePlugin                 │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QSCNetworkReachabilityNetworkI… │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QSecureTransportBackendPlugin   │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QTlsBackendCertOnlyPlugin       │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ QtLibraryInfo                   │ 6.9.0                           │ LIBRARY     │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ LGPL-3.0-only OR GPL-2.0-only OR │
│                                 │                                 │             │              │ GPL-3.0-only                     │
│ qmake                           │ 6.9.0                           │ APPLICATION │ TheQtCompany │ LicenseRef-Qt-Commercial OR      │
│                                 │                                 │             │              │ GPL-3.0-only WITH                │
│                                 │                                 │             │              │ Qt-GPL-exception-1.0             │
│ WrapZLIB                        │ 1.2.12                          │ LIBRARY     │ Anonymous    │ NOASSERTION                      │
│ WrapBacktrace                   │ unknown                         │ LIBRARY     │ Anonymous    │ NOASSERTION                      │
│ WrapRt                          │ unknown                         │ LIBRARY     │ Anonymous    │ NOASSERTION                      │
│ WrapAtomic                      │ unknown                         │ LIBRARY     │ Anonymous    │ NOASSERTION                      │
│ WrapResolv                      │ unknown                         │ LIBRARY     │ Anonymous    │ NOASSERTION                      │
│ GSSAPI                          │ unknown                         │ LIBRARY     │ Anonymous    │ NOASSERTION                      │
│ Cups                            │ unknown                         │ LIBRARY     │ Anonymous    │ NOASSERTION                      │
└─────────────────────────────────┴─────────────────────────────────┴─────────────┴──────────────┴──────────────────────────────────┘


┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Name                        ┃ Version                     ┃ Ecosystem ┃ Download                    ┃ Copyright                   ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ AppleClang                  │ 15.0.0.15000100             │ -         │ NOT KNOWN                   │ NOASSERTION                 │
│ qtbase                      │ 84c2bf3fe0c+dev+dirty       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ GlobalConfigPrivate         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Platform                    │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ PlatformCommonInternal      │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ PlatformModuleInternal      │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ PlatformPluginInternal      │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ PlatformAppInternal         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ PlatformToolInternal        │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Bootstrap_Attribution_pcre2 │ 10.44                       │ generic   │ https://github.com/PCRE2Pr… │ Copyright (c) 1997-2024     │
│                             │                             │           │                             │ University of Cambridge     │
│ Bootstrap_Attribution_pcre… │ 10.44                       │ generic   │ https://github.com/PCRE2Pr… │ Copyright (c) 2009-2024     │
│                             │                             │           │                             │ Zoltan Herczeg              │
│ Bootstrap                   │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ moc                         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2013 Olivier  │
│                             │                             │           │                             │ Goffart                     │
│                             │                             │           │                             │ <ogoffart@woboq.com>        │
│ rcc                         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ tracepointgen               │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ tracegen                    │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ cmake_automoc_parser        │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ BundledPcre2_Attribution_p… │ 10.44                       │ generic   │ https://github.com/PCRE2Pr… │ Copyright (c) 2009-2024     │
│                             │                             │           │                             │ Zoltan Herczeg              │
│ BundledPcre2                │ 10.44                       │ generic   │ https://github.com/PCRE2Pr… │ Copyright (c) 1997-2024     │
│                             │                             │           │                             │ University of Cambridge     │
│ Core_Attribution_unicode-c… │ 30                          │ generic   │ https://www.unicode.org/uc… │ Copyright (C) 1991-2022     │
│                             │                             │           │                             │ Unicode, Inc.               │
│ Core_Attribution_unicode-c… │ v44.1                       │ generic   │ https://cldr.unicode.org/   │ Copyright (C) 2004-2023     │
│                             │                             │           │                             │ Unicode, Inc.               │
│ Core_Attribution_siphash    │ unknown                     │ generic   │ https://raw.githubusercont… │ (C) 2012-2014 Jean-Philippe │
│                             │                             │           │                             │ Aumasson, (C) 2012-2014     │
│                             │                             │           │                             │ Daniel J. Bernstein         │
│                             │                             │           │                             │ <djb@cr.yp.to>              │
│ Core_Attribution_blake2     │ 54f4faa4c16ea34bcd59d16e8d… │ generic   │ https://github.com/BLAKE2/… │ Copyright 2012, Samuel      │
│                             │                             │           │                             │ Neves <sneves@dei.uc.pt>    │
│ Core_Attribution_md4        │ unknown                     │ generic   │ NOT KNOWN                   │ Written by Alexander        │
│                             │                             │           │                             │ Peslyak - better known as   │
│                             │                             │           │                             │ Solar Designer              │
│                             │                             │           │                             │ <solar@openwall.com> - in   │
│                             │                             │           │                             │ 2001, and placed in the     │
│                             │                             │           │                             │ public domain. There's      │
│                             │                             │           │                             │ absolutely no warranty.     │
│ Core_Attribution_md5        │ unknown                     │ generic   │ NOT KNOWN                   │ Written by Colin Plumb in   │
│                             │                             │           │                             │ 1993, no copyright is       │
│                             │                             │           │                             │ claimed. Ian Jackson        │
│                             │                             │           │                             │ <ian@chiark.greenend.org.u… │
│ Core_Attribution_sha1       │ unknown                     │ generic   │ http://www.dominik-reichl.… │ Copyright (C) Dominik       │
│                             │                             │           │                             │ Reichl                      │
│                             │                             │           │                             │ <dominik.reichl@t-online.d… │
│ Core_Attribution_sha3_endi… │ https://github.com/BrianGl… │ generic   │ NOT KNOWN                   │ Copyright (c) 1998-2013,    │
│                             │ commit                      │           │                             │ Brian Gladman, Worcester,   │
│                             │ 4b9e13ead2c5b5e41ca27c65de… │           │                             │ UK. All rights reserved.    │
│ Core_Attribution_sha3_kecc… │ 3.2                         │ generic   │ NOT KNOWN                   │ Guido Bertoni, Joan Daemen, │
│                             │                             │           │                             │ Michaël Peeters and Gilles  │
│                             │                             │           │                             │ Van Assche.                 │
│ Core_Attribution_rfc6234    │ unknown                     │ generic   │ NOT KNOWN                   │ Copyright (c) 2011 IETF     │
│                             │                             │           │                             │ Trust and the persons       │
│                             │                             │           │                             │ identified as authors of    │
│                             │                             │           │                             │ the code.                   │
│ Core_Attribution_tinycbor   │ 0.6.0                       │ generic   │ https://github.com/intel/t… │ Copyright (C) 2015-2021     │
│                             │                             │           │                             │ Intel Corporation           │
│ Core_Attribution_qeventdis… │ unknown                     │ generic   │ NOT KNOWN                   │ Copyright (c) 2007-2008,    │
│                             │                             │           │                             │ Apple, Inc.                 │
│ Core_Attribution_doublecon… │ 3.3.0                       │ generic   │ https://github.com/google/… │ Copyright 2006-2012, the V8 │
│                             │                             │           │                             │ project authors             │
│ Core_Attribution_easing     │ unknown                     │ generic   │ http://robertpenner.com/ea… │ Copyright (c) 2001 Robert   │
│                             │                             │           │                             │ Penner                      │
│ Core_Attribution_forkfd     │ unknown                     │ generic   │ NOT KNOWN                   │ Copyright (C) 2016 Intel    │
│                             │                             │           │                             │ Corporation                 │
│ Core                        │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QDarwinCameraPermissionPlu… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QDarwinMicrophonePermissio… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QDarwinBluetoothPermission… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QDarwinContactsPermissionP… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QDarwinCalendarPermissionP… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QDarwinLocationPermissionP… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ BundledLibpng               │ 1.6.43                      │ generic   │ https://download.sourcefor… │ Copyright (c) 1995-2024 The │
│                             │                             │           │                             │ PNG Reference Library       │
│                             │                             │           │                             │ Authors                     │
│ PngPrivate_Attribution_lib… │ 1.6.43                      │ generic   │ https://download.sourcefor… │ Copyright (c) 1995-2024 The │
│                             │                             │           │                             │ PNG Reference Library       │
│                             │                             │           │                             │ Authors                     │
│ PngPrivate                  │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ BundledLibjpeg16bits        │ 3.0.3                       │ generic   │ https://github.com/libjpeg… │ Copyright (C) 2009-2024 D.  │
│                             │                             │           │                             │ R. Commander                │
│ BundledLibjpeg12bits        │ 3.0.3                       │ generic   │ https://github.com/libjpeg… │ Copyright (C) 2009-2024 D.  │
│                             │                             │           │                             │ R. Commander                │
│ BundledLibjpeg              │ 3.0.3                       │ generic   │ https://github.com/libjpeg… │ Copyright (C) 2009-2024 D.  │
│                             │                             │           │                             │ R. Commander                │
│ JpegPrivate_Attribution_li… │ 3.0.3                       │ generic   │ https://github.com/libjpeg… │ Copyright (C) 2009-2024 D.  │
│                             │                             │           │                             │ R. Commander                │
│ JpegPrivate                 │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ BundledFreetype_Attributio… │ 2.13.2                      │ generic   │ https://download.savannah.… │ Copyright (C) 1995-2022     │
│                             │                             │           │                             │ Jean-loup Gailly and Mark   │
│                             │                             │           │                             │ Adler                       │
│ BundledFreetype_Attributio… │ 2.13.2                      │ generic   │ https://download.savannah.… │ Copyright (c) 2000          │
│                             │                             │           │                             │ Computing Research Labs,    │
│                             │                             │           │                             │ New Mexico State University │
│ BundledFreetype_Attributio… │ 2.13.2                      │ generic   │ https://download.savannah.… │ Copyright (c) 2001, 2012    │
│                             │                             │           │                             │ David Turner, Robert        │
│                             │                             │           │                             │ Wilhelm, and Werner Lemberg │
│ BundledFreetype             │ 2.13.2                      │ generic   │ https://download.savannah.… │ Copyright (c) 2007-2014     │
│                             │                             │           │                             │ Adobe Systems Incorporated  │
│ FreetypePrivate_Attributio… │ 2.13.2                      │ generic   │ https://download.savannah.… │ Copyright (c) 2007-2014     │
│                             │                             │           │                             │ Adobe Systems Incorporated  │
│ FreetypePrivate_Attributio… │ unknown                     │ generic   │ http://www.freetype.org     │ Copyright (C) 1995-2022     │
│                             │                             │           │                             │ Jean-loup Gailly and Mark   │
│                             │                             │           │                             │ Adler                       │
│ FreetypePrivate_Attributio… │ unknown                     │ generic   │ http://www.freetype.org     │ Copyright (c) 2000          │
│                             │                             │           │                             │ Computing Research Labs,    │
│                             │                             │           │                             │ New Mexico State University │
│ FreetypePrivate_Attributio… │ unknown                     │ generic   │ http://www.freetype.org     │ Copyright (c) 2001, 2012    │
│                             │                             │           │                             │ David Turner, Robert        │
│                             │                             │           │                             │ Wilhelm, and Werner Lemberg │
│ FreetypePrivate             │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ BundledHarfbuzz             │ 8.5.0                       │ generic   │ https://github.com/harfbuz… │ Copyright © 2010-2022       │
│                             │                             │           │                             │ Google, Inc.                │
│ HarfbuzzPrivate_Attributio… │ 8.5.0                       │ generic   │ https://github.com/harfbuz… │ Copyright © 2010-2022       │
│                             │                             │           │                             │ Google, Inc.                │
│ HarfbuzzPrivate             │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Concurrent                  │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Sql                         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Network_Attribution_psl-da… │ 903a83ff7bfc3148e3692e0939… │ generic   │ https://publicsuffix.org/l… │ The list was originally     │
│                             │ fetched on 2024             │           │                             │ provided by Jo Hermans      │
│                             │                             │           │                             │ <jo.hermans@gmail.com>.     │
│ Network_Attribution_libpsl  │ 664f3dc85259ec65e30248a61f… │ generic   │ https://github.com/rockdab… │ Copyright 2014-2016 The     │
│                             │                             │           │                             │ Chromium Authors. All       │
│                             │                             │           │                             │ rights reserved.            │
│ Network                     │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Xml                         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ DBus_Attribution_libdbus-1… │ dbus                        │ generic   │ https://www.freedesktop.or… │ Copyright (C) 2002, 2003    │
│                             │                             │           │                             │ CodeFactory AB              │
│ DBus                        │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ uic                         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ qdbuscpp2xml                │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ qdbusxml2cpp                │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ qlalr                       │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ qvkgen                      │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ qtpaths                     │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ androiddeployqt             │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ androidtestrunner           │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ macdeployqt                 │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Gui_Attribution_rhi-minien… │ 0aa79bad78992da0b6a8279ddb… │ generic   │ https://github.com/microso… │ Copyright (c) 2015          │
│                             │                             │           │                             │ Microsoft                   │
│ Gui_Attribution_opengl-hea… │ Revision 27684              │ generic   │ https://www.khronos.org/    │ Copyright (c) 2013-2014 The │
│                             │                             │           │                             │ Khronos Group Inc.          │
│ Gui_Attribution_opengl-es2… │ Revision 27673              │ generic   │ https://www.khronos.org/    │ Copyright (c) 2013-2014 The │
│                             │                             │           │                             │ Khronos Group Inc.          │
│ Gui_Attribution_grayraster  │ unknown                     │ generic   │ http://www.freetype.org     │ Copyright 2000-2016 by      │
│                             │                             │           │                             │ David Turner, Robert        │
│                             │                             │           │                             │ Wilhelm, and Werner         │
│                             │                             │           │                             │ Lemberg.                    │
│ Gui_Attribution_smooth-sca… │ unknown                     │ generic   │ NOT KNOWN                   │ Copyright (C) 2004, 2005    │
│                             │                             │           │                             │ Daniel M. Duley.            │
│ Gui_Attribution_xserverhel… │ unknown                     │ generic   │ https://www.x.org/          │ Copyright (c) 1987, 1988 X  │
│                             │                             │           │                             │ Consortium                  │
│ Gui_Attribution_aglfn       │ 1.7                         │ generic   │ https://github.com/adobe-t… │ Copyright 2002, 2003, 2005, │
│                             │                             │           │                             │ 2006, 2008, 2010, 2015      │
│                             │                             │           │                             │ Adobe Systems               │
│ Gui_Attribution_VulkanMemo… │ 3.1.0                       │ generic   │ https://github.com/GPUOpen… │ Copyright (c) 2017-2024     │
│                             │                             │           │                             │ Advanced Micro Devices,     │
│                             │                             │           │                             │ Inc. All rights reserved.   │
│ Gui_Attribution_icc-sRGB-c… │ unknown                     │ generic   │ http://www.color.org/       │ Copyright International     │
│                             │                             │           │                             │ Color Consortium, 2015      │
│ Gui_Attribution_md4c        │ 0.5.2                       │ generic   │ https://github.com/mity/md… │ Copyright © 2016-2024       │
│                             │                             │           │                             │ Martin Mitáš                │
│ Gui                         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ ExampleIconsPrivate         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ ExamplesAssetDownloaderPri… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ OpenGL                      │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Widgets                     │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ OpenGLWidgets               │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ DeviceDiscoverySupportPriv… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ FbSupportPrivate            │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ Test_Attribution_valgrind   │ 3.22.0                      │ generic   │ http://valgrind.org/        │ Copyright (C) 2000-2017     │
│                             │                             │           │                             │ Julian Seward               │
│ Test_Attribution_cycle      │ unknown                     │ generic   │ NOT KNOWN                   │ Copyright (c) 2003, 2006    │
│                             │                             │           │                             │ Matteo Frigo                │
│ Test_Attribution_linuxperf  │ 3.7                         │ generic   │ https://www.kernel.org      │ Copyright (C) 2008-2009,    │
│                             │                             │           │                             │ Thomas Gleixner             │
│                             │                             │           │                             │ <tglx@linutronix.de>        │
│ Test                        │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ PrintSupport                │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QSQLiteDriverPlugin_Attrib… │ 3.46.0                      │ generic   │ https://www.sqlite.org/202… │ The authors disclaim        │
│                             │                             │           │                             │ copyright to the source     │
│                             │                             │           │                             │ code. However, a license    │
│                             │                             │           │                             │ can be obtained if needed.  │
│ QSQLiteDriverPlugin         │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QMinimalIntegrationPlugin   │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QOffscreenIntegrationPlugin │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QCocoaIntegrationPlugin_At… │ unknown                     │ generic   │ NOT KNOWN                   │ Copyright (c) 2007-2008,    │
│                             │                             │           │                             │ Apple, Inc.                 │
│ QCocoaIntegrationPlugin     │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QICOPlugin                  │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QJpegPlugin                 │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QGifPlugin                  │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QTuioTouchPlugin            │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QMacStylePlugin             │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QSCNetworkReachabilityNetw… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QSecureTransportBackendPlu… │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QTlsBackendCertOnlyPlugin   │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ QtLibraryInfo               │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ qmake                       │ 6.9.0                       │ generic   │ git://code.qt.io/qt/qtbase… │ Copyright (C) 2024 The Qt   │
│                             │                             │           │                             │ Company Ltd.                │
│ WrapZLIB                    │ 1.2.12                      │ -         │ https://github.com/madler/… │ NOASSERTION                 │
│ WrapBacktrace               │ unknown                     │ -         │ NOT KNOWN                   │ NOASSERTION                 │
│ WrapRt                      │ unknown                     │ -         │ NOT KNOWN                   │ NOASSERTION                 │
│ WrapAtomic                  │ unknown                     │ -         │ NOT KNOWN                   │ NOASSERTION                 │
│ WrapResolv                  │ unknown                     │ -         │ NOT KNOWN                   │ NOASSERTION                 │
│ GSSAPI                      │ unknown                     │ -         │ NOT KNOWN                   │ NOASSERTION                 │
│ Cups                        │ unknown                     │ -         │ NOT KNOWN                   │ NOASSERTION                 │
└─────────────────────────────┴─────────────────────────────┴───────────┴─────────────────────────────┴─────────────────────────────┘
╭────────────────────────╮
│ Component Type Summary │
╰────────────────────────╯
┏━━━━━━━━━━━━━┳━━━━━━━┓
┃ Type        ┃ Count ┃
┡━━━━━━━━━━━━━╇━━━━━━━┩
│ APPLICATION │ 16    │
│ LIBRARY     │ 108   │
└─────────────┴───────┘
╭─────────────────╮
│ License Summary │
╰─────────────────╯
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┓
┃ License                                                                   ┃ Count ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━┩
│ AFL-2.1 OR GPL-2.0-or-later                                               │ 1     │
│ BSD-2-Clause                                                              │ 3     │
│ BSD-2-Clause AND Imlib2                                                   │ 1     │
│ BSD-3-Clause                                                              │ 7     │
│ BSD-4-Clause                                                              │ 1     │
│ CC0-1.0                                                                   │ 4     │
│ CC0-1.0 OR Apache-2.0                                                     │ 1     │
│ FTL OR GPL-2.0-only                                                       │ 4     │
│ GPL-2.0-only WITH Linux-syscall-note                                      │ 1     │
│ IJG AND BSD-3-Clause                                                      │ 5     │
│ Libpng AND libpng-2.0                                                     │ 3     │
│ LicenseRef-BSD-3-Clause-with-PCRE2-Binary-Like-Packages-Exception         │ 2     │
│ LicenseRef-ICC-License                                                    │ 1     │
│ LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0        │ 30    │
│ LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only │ 81    │
│ LicenseRef-SHA1-Public-Domain                                             │ 1     │
│ MIT                                                                       │ 12    │
│ MIT AND MIT-open-group                                                    │ 2     │
│ MPL-2.0                                                                   │ 1     │
│ NOASSERTION                                                               │ 9     │
│ Unicode-3.0                                                               │ 1     │
│ Unicode-DFS-2016                                                          │ 1     │
│ X11 AND HPND                                                              │ 1     │
│ Zlib                                                                      │ 2     │
│ blessing                                                                  │ 1     │
└───────────────────────────────────────────────────────────────────────────┴───────┘
╭──────────────────╮
│ Supplier Summary │
╰──────────────────╯
┏━━━━━━━━━━━━━━┳━━━━━━━┓
┃ Supplier     ┃ Count ┃
┡━━━━━━━━━━━━━━╇━━━━━━━┩
│ Anonymous    │ 8     │
│ TheQtCompany │ 116   │
└──────────────┴───────┘
╭──────────────╮
│ NTIA Summary │
╰──────────────╯
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┓
┃ Element                            ┃ Status ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━┩
│ All file information provided?     │ True   │
│ All package information provided?  │ True   │
│ Creator identified?                │ True   │
│ Creation time identified?          │ True   │
│ Dependency relationships provided? │ True   │
└────────────────────────────────────┴────────┘

NTIA conformant True
-- Auditing SBOM: /Users/alex/Dev/qt/builds/dev-mac-prefix-sbom-bundled/installed/sbom/qtbase-6.9.0.spdx
╭─────────────────────╮
│ SBOM Format Summary │
╰─────────────────────╯
[x] Valid SBOM Format
╭──────────────╮
│ File Summary │
╰──────────────╯
[x] File Summary
╭─────────────────╮
│ Package Summary │
╰─────────────────╯
[ ] License included for package AppleClang: MISSING
[ ] CPE name included for package AppleClang: MISSING
[ ] License included for package qtbase: MISSING
[ ] License included for package WrapZLIB: MISSING
[ ] License included for package WrapBacktrace: MISSING
[ ] License included for package WrapRt: MISSING
[ ] License included for package WrapAtomic: MISSING
[ ] License included for package WrapResolv: MISSING
[ ] License included for package GSSAPI: MISSING
[ ] License included for package Cups: MISSING
╭───────────────────────╮
│ Relationships Summary │
╰───────────────────────╯
[x] Relationships Summary
╭──────────────╮
│ NTIA Summary │
╰──────────────╯
[x] NTIA Summary
╭────────────────────╮
│ SBOM Audit Summary │
╰────────────────────╯
[x] Checks passed 877
[x] Checks failed 10
[x] Policy checks passed 0
[x] Policy checks failed 0