From 1cd5d02b3ecf30c3dcfaedc41e1d9d1a9802240c Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Mon, 29 Jan 2024 14:19:44 +0530 Subject: [PATCH] Get debian distro info from clues We will now deduce and populate debian distro information, i.e. their namespace from clues present in version/maintainer info. Reference: https://github.com/nexB/scancode.io/issues/899 Signed-off-by: Ayan Sinha Mahapatra --- src/packagedcode/debian.py | 23 + src/packagedcode/models.py | 6 +- .../data/debian/basic-rootfs-expected.json | 36 +- .../data/debian/basic/status.expected | 36 +- ...r-layer.tar.xz.get-installed-expected.json | 24 +- ...-container-layer.tar.xz.scan-expected.json | 36 +- .../data/debian/end-to-end.tgz.expected.json | 24 +- .../data/debian/mini-status/status.expected | 6 +- .../debian/ubuntu-var-lib-dpkg/expected.json | 36 +- .../fusiondirectory.expected.json | 13390 +--------------- .../get_installed_packages-expected.json | 24 +- 11 files changed, 823 insertions(+), 12818 deletions(-) diff --git a/src/packagedcode/debian.py b/src/packagedcode/debian.py index f84fc9e9afe..e3057d47efa 100644 --- a/src/packagedcode/debian.py +++ b/src/packagedcode/debian.py @@ -305,6 +305,7 @@ def assemble(cls, package_data, resource, codebase, package_adder): package.update( package_data=package_data, datafile_path=res.path, + check_compatible=False, replace=False, include_version=False, include_qualifiers=False, @@ -628,6 +629,16 @@ def build_package_data(debian_data, datasource_id, package_type='deb', distro=No if keyword: keywords.append(keyword) + # Get distro/namespace information from clues in package data + if not distro: + for clue, namespace in version_clues_for_namespace.items(): + if clue in version: + distro = namespace + + for clue, namespace in maintainer_clues_for_namespace.items(): + if clue in maintainer: + distro = namespace + source_packages = [] source = debian_data.get('source') if source: @@ -656,6 +667,18 @@ def build_package_data(debian_data, datasource_id, package_type='deb', distro=No ) +version_clues_for_namespace = { + 'deb': 'debian', + 'ubuntu': 'ubuntu', +} + + +maintainer_clues_for_namespace = { + 'packages.debian.org': 'debian', + 'lists.ubuntu.com': 'ubuntu', +} + + ignored_root_dirs = { '/.', '/bin', diff --git a/src/packagedcode/models.py b/src/packagedcode/models.py index 9d2f0efbabf..27f976780a7 100644 --- a/src/packagedcode/models.py +++ b/src/packagedcode/models.py @@ -119,9 +119,10 @@ """ SCANCODE_DEBUG_PACKAGE = os.environ.get('SCANCODE_DEBUG_PACKAGE', False) +SCANCODE_DEBUG_PACKAGE_ASSEMBLY = os.environ.get('SCANCODE_DEBUG_PACKAGE_ASSEMBLY', False) TRACE = SCANCODE_DEBUG_PACKAGE -TRACE_UPDATE = SCANCODE_DEBUG_PACKAGE +TRACE_UPDATE = SCANCODE_DEBUG_PACKAGE_ASSEMBLY def logger_debug(*args): @@ -1537,6 +1538,7 @@ def update( self, package_data, datafile_path, + check_compatible=True, replace=False, include_version=True, include_qualifiers=False, @@ -1568,7 +1570,7 @@ def update( if isinstance(package_data, dict): package_data = PackageData.from_dict(package_data) - if not is_compatible( + if check_compatible and not is_compatible( purl1=self, purl2=package_data, include_version=include_version, diff --git a/tests/packagedcode/data/debian/basic-rootfs-expected.json b/tests/packagedcode/data/debian/basic-rootfs-expected.json index 2d4b56f6fa5..ff2041ff5c1 100644 --- a/tests/packagedcode/data/debian/basic-rootfs-expected.json +++ b/tests/packagedcode/data/debian/basic-rootfs-expected.json @@ -2,7 +2,7 @@ "packages": [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1.18.04", "qualifiers": { @@ -134,7 +134,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "extra_data": { "multi_arch": "same", @@ -180,7 +180,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "basic-rootfs.tar.gz/var/lib/dpkg/status", "basic-rootfs.tar.gz/usr/share/doc/libncurses5/copyright", @@ -191,11 +191,11 @@ "debian_copyright_in_package", "debian_installed_md5sums" ], - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libndp0", "version": "1.4-2ubuntu0.16.04.1", "qualifiers": { @@ -291,7 +291,7 @@ "extracted_license_statement": "- LGPL-2.1+\n- LGPL-2.1+\n- LGPL-2.1+\n", "notice_text": null, "source_packages": [ - "pkg:deb/libndp" + "pkg:deb/ubuntu/libndp" ], "extra_data": { "multi_arch": "same", @@ -319,7 +319,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "basic-rootfs.tar.gz/var/lib/dpkg/status", "basic-rootfs.tar.gz/usr/share/doc/libndp0/copyright", @@ -330,7 +330,7 @@ "debian_copyright_in_package", "debian_installed_md5sums" ], - "purl": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" } ], "dependencies": [], @@ -507,7 +507,7 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -619,7 +619,7 @@ } ], "for_packages": [ - "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -738,7 +738,7 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -820,7 +820,7 @@ } ], "for_packages": [ - "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -830,7 +830,7 @@ "package_data": [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1.18.04", "qualifiers": { @@ -873,7 +873,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "file_references": [], "extra_data": { @@ -884,11 +884,11 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libndp0", "version": "1.4-2ubuntu0.16.04.1", "qualifiers": { @@ -931,7 +931,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/libndp" + "pkg:deb/ubuntu/libndp" ], "file_references": [], "extra_data": { @@ -942,7 +942,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" } ], "for_packages": [], diff --git a/tests/packagedcode/data/debian/basic/status.expected b/tests/packagedcode/data/debian/basic/status.expected index b310f6b069c..0f19459a2c8 100644 --- a/tests/packagedcode/data/debian/basic/status.expected +++ b/tests/packagedcode/data/debian/basic/status.expected @@ -1,7 +1,7 @@ [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1.18.04", "qualifiers": { @@ -44,7 +44,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "file_references": [], "extra_data": { @@ -55,11 +55,11 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libcom-err2", "version": "1.44.1-1ubuntu1.1", "qualifiers": { @@ -102,7 +102,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/e2fsprogs" + "pkg:deb/ubuntu/e2fsprogs" ], "file_references": [], "extra_data": { @@ -113,11 +113,11 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libcom-err2@1.44.1-1ubuntu1.1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libcom-err2@1.44.1-1ubuntu1.1?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libapt-pkg5.0", "version": "1.6.11", "qualifiers": { @@ -160,7 +160,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/apt" + "pkg:deb/ubuntu/apt" ], "file_references": [], "extra_data": { @@ -171,11 +171,11 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libapt-pkg5.0@1.6.11?architecture=amd64" + "purl": "pkg:deb/ubuntu/libapt-pkg5.0@1.6.11?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libaudit1", "version": "1:2.8.2-1ubuntu1", "qualifiers": { @@ -218,7 +218,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/audit" + "pkg:deb/ubuntu/audit" ], "file_references": [], "extra_data": { @@ -229,11 +229,11 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libaudit1@1:2.8.2-1ubuntu1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libaudit1@1:2.8.2-1ubuntu1?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "perl-base", "version": "5.26.1-6ubuntu0.3", "qualifiers": { @@ -276,7 +276,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/perl" + "pkg:deb/ubuntu/perl" ], "file_references": [], "extra_data": {}, @@ -285,11 +285,11 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/perl-base@5.26.1-6ubuntu0.3?architecture=amd64" + "purl": "pkg:deb/ubuntu/perl-base@5.26.1-6ubuntu0.3?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libudev1", "version": "237-3ubuntu10.22", "qualifiers": { @@ -332,7 +332,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/systemd" + "pkg:deb/ubuntu/systemd" ], "file_references": [], "extra_data": { @@ -343,6 +343,6 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libudev1@237-3ubuntu10.22?architecture=amd64" + "purl": "pkg:deb/ubuntu/libudev1@237-3ubuntu10.22?architecture=amd64" } ] \ No newline at end of file diff --git a/tests/packagedcode/data/debian/debian-container-layer.tar.xz.get-installed-expected.json b/tests/packagedcode/data/debian/debian-container-layer.tar.xz.get-installed-expected.json index 3861deb82d2..3d4d68fe163 100644 --- a/tests/packagedcode/data/debian/debian-container-layer.tar.xz.get-installed-expected.json +++ b/tests/packagedcode/data/debian/debian-container-layer.tar.xz.get-installed-expected.json @@ -1,7 +1,7 @@ [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1.18.04", "qualifiers": { @@ -133,7 +133,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "extra_data": { "multi_arch": "same", @@ -179,7 +179,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "debian-container-layer.tar.xz/var/lib/dpkg/status", "debian-container-layer.tar.xz/usr/share/doc/libncurses5/copyright", @@ -328,7 +328,7 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -419,16 +419,16 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libndp0", "version": "1.4-2ubuntu0.16.04.1", "qualifiers": { @@ -524,7 +524,7 @@ "extracted_license_statement": "- LGPL-2.1+\n- LGPL-2.1+\n- LGPL-2.1+\n", "notice_text": null, "source_packages": [ - "pkg:deb/libndp" + "pkg:deb/ubuntu/libndp" ], "extra_data": { "multi_arch": "same", @@ -552,7 +552,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "debian-container-layer.tar.xz/var/lib/dpkg/status", "debian-container-layer.tar.xz/usr/share/doc/libndp0/copyright", @@ -665,7 +665,7 @@ } ], "for_packages": [ - "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -747,11 +747,11 @@ } ], "for_packages": [ - "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" } ] \ No newline at end of file diff --git a/tests/packagedcode/data/debian/debian-container-layer.tar.xz.scan-expected.json b/tests/packagedcode/data/debian/debian-container-layer.tar.xz.scan-expected.json index 00d1530c108..a2f02b1c5c4 100644 --- a/tests/packagedcode/data/debian/debian-container-layer.tar.xz.scan-expected.json +++ b/tests/packagedcode/data/debian/debian-container-layer.tar.xz.scan-expected.json @@ -2,7 +2,7 @@ "packages": [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1.18.04", "qualifiers": { @@ -134,7 +134,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "extra_data": { "multi_arch": "same", @@ -180,7 +180,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "debian-container-layer.tar.xz/var/lib/dpkg/status", "debian-container-layer.tar.xz/usr/share/doc/libncurses5/copyright", @@ -191,11 +191,11 @@ "debian_copyright_in_package", "debian_installed_md5sums" ], - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libndp0", "version": "1.4-2ubuntu0.16.04.1", "qualifiers": { @@ -291,7 +291,7 @@ "extracted_license_statement": "- LGPL-2.1+\n- LGPL-2.1+\n- LGPL-2.1+\n", "notice_text": null, "source_packages": [ - "pkg:deb/libndp" + "pkg:deb/ubuntu/libndp" ], "extra_data": { "multi_arch": "same", @@ -319,7 +319,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "debian-container-layer.tar.xz/var/lib/dpkg/status", "debian-container-layer.tar.xz/usr/share/doc/libndp0/copyright", @@ -330,7 +330,7 @@ "debian_copyright_in_package", "debian_installed_md5sums" ], - "purl": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" } ], "dependencies": [], @@ -521,7 +521,7 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -633,7 +633,7 @@ } ], "for_packages": [ - "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -752,7 +752,7 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -834,7 +834,7 @@ } ], "for_packages": [ - "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -844,7 +844,7 @@ "package_data": [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1.18.04", "qualifiers": { @@ -887,7 +887,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "file_references": [], "extra_data": { @@ -898,11 +898,11 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libndp0", "version": "1.4-2ubuntu0.16.04.1", "qualifiers": { @@ -945,7 +945,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/libndp" + "pkg:deb/ubuntu/libndp" ], "file_references": [], "extra_data": { @@ -956,7 +956,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" } ], "for_packages": [], diff --git a/tests/packagedcode/data/debian/end-to-end.tgz.expected.json b/tests/packagedcode/data/debian/end-to-end.tgz.expected.json index 23551ed5467..68256ab0afd 100644 --- a/tests/packagedcode/data/debian/end-to-end.tgz.expected.json +++ b/tests/packagedcode/data/debian/end-to-end.tgz.expected.json @@ -2,7 +2,7 @@ "packages": [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1", "qualifiers": { @@ -45,7 +45,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "extra_data": { "multi_arch": "same" @@ -53,7 +53,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "end-to-end.tgz/var/lib/dpkg/status", "end-to-end.tgz/var/lib/dpkg/info/libncurses5:amd64.md5sums" @@ -62,7 +62,7 @@ "debian_installed_status_db", "debian_installed_md5sums" ], - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1?architecture=amd64" } ], "dependencies": [], @@ -93,7 +93,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -123,7 +123,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -132,7 +132,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -141,7 +141,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -274,7 +274,7 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -284,7 +284,7 @@ "package_data": [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1", "qualifiers": { @@ -327,7 +327,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "file_references": [], "extra_data": { @@ -338,7 +338,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1?architecture=amd64" } ], "for_packages": [], diff --git a/tests/packagedcode/data/debian/mini-status/status.expected b/tests/packagedcode/data/debian/mini-status/status.expected index fcb239097ea..2eb6e79bb2f 100644 --- a/tests/packagedcode/data/debian/mini-status/status.expected +++ b/tests/packagedcode/data/debian/mini-status/status.expected @@ -1,7 +1,7 @@ [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "perl-base", "version": "5.22.1-9ubuntu0.6", "qualifiers": { @@ -44,7 +44,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/perl" + "pkg:deb/ubuntu/perl" ], "file_references": [], "extra_data": {}, @@ -53,6 +53,6 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/perl-base@5.22.1-9ubuntu0.6?architecture=amd64" + "purl": "pkg:deb/ubuntu/perl-base@5.22.1-9ubuntu0.6?architecture=amd64" } ] \ No newline at end of file diff --git a/tests/packagedcode/data/debian/ubuntu-var-lib-dpkg/expected.json b/tests/packagedcode/data/debian/ubuntu-var-lib-dpkg/expected.json index f45475ea0f3..3910737a618 100644 --- a/tests/packagedcode/data/debian/ubuntu-var-lib-dpkg/expected.json +++ b/tests/packagedcode/data/debian/ubuntu-var-lib-dpkg/expected.json @@ -2,7 +2,7 @@ "packages": [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "base-files", "version": "11ubuntu5", "qualifiers": { @@ -62,7 +62,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/base-files@11ubuntu5?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/base-files@11ubuntu5?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "ubuntu-var-lib-dpkg/var/lib/dpkg/status", "ubuntu-var-lib-dpkg/var/lib/dpkg/info/base-files.list" @@ -71,7 +71,7 @@ "debian_installed_status_db", "debian_installed_files_list" ], - "purl": "pkg:deb/base-files@11ubuntu5?architecture=amd64" + "purl": "pkg:deb/ubuntu/base-files@11ubuntu5?architecture=amd64" }, { "type": "deb", @@ -292,7 +292,7 @@ }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "bash", "version": "5.0-6ubuntu1", "qualifiers": { @@ -550,7 +550,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/bash@5.0-6ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/bash@5.0-6ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "ubuntu-var-lib-dpkg/var/lib/dpkg/status", "ubuntu-var-lib-dpkg/var/lib/dpkg/info/bash.list", @@ -561,11 +561,11 @@ "debian_installed_files_list", "debian_installed_md5sums" ], - "purl": "pkg:deb/bash@5.0-6ubuntu1?architecture=amd64" + "purl": "pkg:deb/ubuntu/bash@5.0-6ubuntu1?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "tar", "version": "1.30+dfsg-7", "qualifiers": { @@ -614,14 +614,14 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/tar@1.30%2Bdfsg-7?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/tar@1.30%2Bdfsg-7?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "ubuntu-var-lib-dpkg/var/lib/dpkg/status" ], "datasource_ids": [ "debian_installed_status_db" ], - "purl": "pkg:deb/tar@1.30%2Bdfsg-7?architecture=amd64" + "purl": "pkg:deb/ubuntu/tar@1.30%2Bdfsg-7?architecture=amd64" } ], "dependencies": [], @@ -1626,7 +1626,7 @@ } ], "for_packages": [ - "pkg:deb/base-files@11ubuntu5?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/base-files@11ubuntu5?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2272,7 +2272,7 @@ } ], "for_packages": [ - "pkg:deb/bash@5.0-6ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/bash@5.0-6ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2523,7 +2523,7 @@ } ], "for_packages": [ - "pkg:deb/bash@5.0-6ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/bash@5.0-6ubuntu1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2533,7 +2533,7 @@ "package_data": [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "base-files", "version": "11ubuntu5", "qualifiers": { @@ -2585,7 +2585,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/base-files@11ubuntu5?architecture=amd64" + "purl": "pkg:deb/ubuntu/base-files@11ubuntu5?architecture=amd64" }, { "type": "deb", @@ -2645,7 +2645,7 @@ }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "bash", "version": "5.0-6ubuntu1", "qualifiers": { @@ -2697,11 +2697,11 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/bash@5.0-6ubuntu1?architecture=amd64" + "purl": "pkg:deb/ubuntu/bash@5.0-6ubuntu1?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "tar", "version": "1.30+dfsg-7", "qualifiers": { @@ -2753,7 +2753,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "debian_installed_status_db", - "purl": "pkg:deb/tar@1.30%2Bdfsg-7?architecture=amd64" + "purl": "pkg:deb/ubuntu/tar@1.30%2Bdfsg-7?architecture=amd64" } ], "for_packages": [], diff --git a/tests/packagedcode/data/license_detection/reference-to-package/fusiondirectory.expected.json b/tests/packagedcode/data/license_detection/reference-to-package/fusiondirectory.expected.json index ef106422b6b..2006a7f6ae5 100644 --- a/tests/packagedcode/data/license_detection/reference-to-package/fusiondirectory.expected.json +++ b/tests/packagedcode/data/license_detection/reference-to-package/fusiondirectory.expected.json @@ -1,12169 +1,749 @@ { - "packages": [ - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Web Based LDAP Administration Program\n Provided is access to posix, shadow, samba, proxy, pureftp and\n kerberos accounts. It is able to manage the postfix/cyrus server\n combination and can write user adapted sieve scripts.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-alias", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "alias plugin for FusionDirectory\n This plugin is designed to configure mail aliases for postfix.\n It provide description and expiration Date\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-alias?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-alias-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory alias plugin\n This package includes the LDAP schema needed by the FusionDirectory\n alias plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-applications", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Applications management plugin for FusionDirectory\n Application management plugin for desktop and web.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-applications?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-applications-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory application management plugin\n This package includes the LDAP schema needed by the FusionDirectory\n application management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-argonaut", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Argonaut plugin for FusionDirectory\n Store all the configuration for the Argonaut deployment system.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-argonaut-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory Argonaut plugin\n This package includes the LDAP schema needed by the FusionDirectory\n Argonaut plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-audit", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "audit plugin for FusionDirectory\n This package contains the audit plugin for FusionDirectory\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-audit?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-audit-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory audit plugin\n This package includes the LDAP schema needed by the FusionDirectory\n audit plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-autofs", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "autofs plugin for FusionDirectory\n Automount management plugin for FusionDirectory\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-autofs?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-autofs-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory autofs plugin\n This package includes the LDAP schema needed by the FusionDirectory\n autofs plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-certificates", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "certificates plugin for FusionDirectory\n Allow storage of SSL certificates in the user entries.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-certificates?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-community", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "community plugin for FusionDirectory\n Community and Organization management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-community?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-community-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory community plugin\n This package includes the LDAP schema needed by the FusionDirectory\n community plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all" - }, + "packages": [], + "dependencies": [], + "license_detections": [ { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-cyrus", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "cyrus plugin for FusionDirectory\n Cyrus account management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all" + "identifier": "bsd_new-008266ae-6939-ad31-3617-228b0809863c", + "license_expression": "bsd-new", + "license_expression_spdx": "BSD-3-Clause", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ + { + "license_expression": "bsd-new", + "license_expression_spdx": "BSD-3-Clause", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 441, + "end_line": 441, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 4, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "bsd-new_195.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_195.RULE", + "matched_text": "License: BSD-3-clause", + "matched_text_diagnostics": "License: BSD-3-clause" + } + ] }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-cyrus-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory cyrus plugin\n This package includes the LDAP schema needed by the FusionDirectory\n cyrus plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all" + "identifier": "bsd_original-9198bafe-47c0-f9dc-5ef1-bd276a69786e", + "license_expression": "bsd-original", + "license_expression_spdx": "BSD-4-Clause", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ + { + "license_expression": "bsd-original", + "license_expression_spdx": "BSD-4-Clause", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1501, + "end_line": 1501, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 4, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "bsd-original_43.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_43.RULE", + "matched_text": "License: BSD-4-clause", + "matched_text_diagnostics": "License: BSD-4-clause" + } + ] }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-debconf", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Debconf plugin for FusionDirectory\n Simple debconf plugin for FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-debconf?architecture=all" + "identifier": "bsd_simplified-2383ae10-5494-e069-46c2-e2d6cb56951f", + "license_expression": "bsd-simplified", + "license_expression_spdx": "BSD-2-Clause", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ + { + "license_expression": "bsd-simplified", + "license_expression_spdx": "BSD-2-Clause", + "from_file": "fusiondirectory/debian/copyright.in", + "start_line": 2880, + "end_line": 2880, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 4, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "bsd-simplified_136.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_136.RULE", + "matched_text": "License: BSD (2 clause)", + "matched_text_diagnostics": "License: BSD (2 clause)" + } + ] }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-debconf-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory Debconf Plugin\n This package includes the LDAP schema needed by the FusionDirectory\n Debconf Plugin. It is the same LDAP schema as distributed in the\n debconf-doc package for the Debconf's basic, built-in LDAP driver.\n .\n FusionDirectory is a combination of system-administrator and end-user\n web interface, designed to handle LDAP-based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all" + "identifier": "free_unknown-fddf748a-9953-bc6c-cb9d-91001840e335", + "license_expression": "free-unknown", + "license_expression_spdx": "LicenseRef-scancode-free-unknown", + "detection_count": 2, + "detection_log": [], + "reference_matches": [ + { + "license_expression": "free-unknown", + "license_expression_spdx": "LicenseRef-scancode-free-unknown", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 562, + "end_line": 562, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 10, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "free-unknown-package_4.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_4.RULE", + "matched_text": " This file is distributed under the same license as the fusiondirectory package.", + "matched_text_diagnostics": "This file is distributed under the same license as the" + } + ] }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-developers", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Provide doc and tools for FusionDirectory development\n This package provides codesniffer templates for code conformity,\n a plugin to show reference between classes, and a simple plugin\n example to show the basic use of the API and a doxyfile to generate API\n from sourcecode.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-developers?architecture=all" + "identifier": "free_unknown-34d6195a-6206-be2e-4bd2-ce3b9493a1ad", + "license_expression": "free-unknown", + "license_expression_spdx": "LicenseRef-scancode-free-unknown", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ + { + "license_expression": "free-unknown", + "license_expression_spdx": "LicenseRef-scancode-free-unknown", + "from_file": "fusiondirectory/debian/po/fr.po", + "start_line": 3, + "end_line": 3, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 11, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "free-unknown-package_1.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_1.RULE", + "matched_text": "# This file is distributed under the same license as the package.", + "matched_text_diagnostics": "This file is distributed under the same license as the package." + } + ] }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dhcp", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "dhcp plugin for FusionDirectory\n DHCP service management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all" + "identifier": "free_unknown-6489a264-9d51-ad5f-94b9-6939d54b4036", + "license_expression": "free-unknown", + "license_expression_spdx": "LicenseRef-scancode-free-unknown", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ + { + "license_expression": "free-unknown", + "license_expression_spdx": "LicenseRef-scancode-free-unknown", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 413, + "end_line": 413, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 12, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "free-unknown-package_2.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_2.RULE", + "matched_text": " This file is distributed under the same license as the PACKAGE package.", + "matched_text_diagnostics": "This file is distributed under the same license as the PACKAGE package." + } + ] }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dhcp-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory dhcp plugin\n This package includes the LDAP schema needed by the FusionDirectory\n dhcp plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all" + "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9", + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": "GPL-2.0-or-later", + "detection_count": 23, + "detection_log": [], + "reference_matches": [ + { + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": "GPL-2.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 297, + "end_line": 297, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-2.0-plus_22.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", + "matched_text": "License: GPL-2+", + "matched_text_diagnostics": "License: GPL-2+" + } + ] }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dns", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "dns plugin for FusionDirectory\n DNS service management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-dns?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dns-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory dns plugin\n This package includes the LDAP schema needed by the FusionDirectory\n dns plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dovecot", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "dovecot plugin for FusionDirectory\n Dovecot account management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dovecot-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory dovecot plugin\n This package includes the LDAP schema needed by the FusionDirectory\n dovecot plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dsa", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "dsa plugin for FusionDirectory\n This plugin is designed to maintain the dsa branch of your LDAP directory.\n The dsa branch is the one tha contains the security account for LDAP clients\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-dsa?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dsa-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory dsa plugin\n This package includes the LDAP schema needed by the FusionDirectory\n dsa plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ejbca", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ejbca plugin for FusionDirectory\n This plugin is designed to show the certificates for servers and users\n stored by ejbca inside LDAP.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ejbca-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory ejbca plugin\n This package includes the LDAP schema needed by the FusionDirectory\n ejbca plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-fai", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "fai plugin for FusionDirectory\n FAI plugin for managing Linux system deployment.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-fai?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-fai-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory fai plugin\n This package includes the LDAP schema needed by the FusionDirectory\n fai plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-freeradius", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "freeradius plugin for FusionDirectory\n This package adds FreeRADIUS management to FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-freeradius-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory freeradius plugin\n This package includes the LDAP schema needed by the FusionDirectory\n freeradius plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-fusioninventory", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "FusionInventory plugin for FusionDirectory\n This plugin allow you to manage your inventories with the fusioninventory\n agent.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-fusioninventory-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory fusioninventory plugin\n This package includes the LDAP schema needed by the FusionDirectory\n fusioninventory plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-gpg", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "gpg plugin for FusionDirectory\n This plugin allow you to manage gpg key for the user in your LDAP tree.\n It also allow you to configure a gpg server to fetch his key from the\n LDAP server.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-gpg?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-gpg-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory gpg plugin\n This package includes the LDAP schema needed by the FusionDirectory\n gpg plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ipmi", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ipmi plugin for FusionDirectory\n This plugin allow you to manage ipmi services.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ipmi-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory ipmi plugin\n This package includes the LDAP schema needed by the FusionDirectory\n ipmi plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ldapdump", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ldapdump plugin for FusionDirectory\n Show raw LDAP data\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ldapmanager", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ldapmanager plugin for FusionDirectory\n LDAP import and export management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-mail", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "base mail plugin for FusionDirectory\n Mail management base plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-mail?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-mail-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory mail plugin\n This package includes the LDAP schema needed by the FusionDirectory\n mail plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-mixedgroups", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "plugin to manage groups mixing memberuid and member\n Member and memberuid mixed in the same groups, this need specific\n modified core ldap schema\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-nagios", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "nagios plugin for FusionDirectory\n Nagios account settings management\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-nagios?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-nagios-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory nagios plugin\n This package includes the LDAP schema needed by the FusionDirectory\n nagios plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-netgroups", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "netgroup plugin for FusionDirectory\n Nis Netgroups account management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-netgroups-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory netgroups plugin\n This package includes the LDAP schema needed by the FusionDirectory\n netgroups plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-newsletter", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "newsletter plugin for FusionDirectory\n Newsletter account management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-newsletter-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory newsletter plugin\n This package includes the LDAP schema needed by the FusionDirectory\n newsletter plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-opsi", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "opsi plugin for FusionDirectory\n Opsi management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-opsi?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-opsi-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory opsi plugin\n This package includes the LDAP schema needed by the FusionDirectory\n opsi plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-personal", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Personal plugin for FusionDirectory\n The personal plugin for FusionDirectory is used to stored personal data,\n like twitter, facebook, private email addresses and nickname.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-personal?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-personal-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory personal Plugin\n This package includes the LDAP schema needed by the FusionDirectory\n personal Plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user\n web interface, designed to handle LDAP-based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-posix", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "posix account and group plugin for FusionDirectory\n Manage the posix account and groups via FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-posix?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-postfix", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "postfix service plugin for FusionDirectory\n Postfix service plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-postfix?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-postfix-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory postfix plugin\n This package includes the LDAP schema needed by the FusionDirectory\n postfix plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ppolicy", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ppolicy overlay module plugin for FusionDirectory\n Manage the LDAP ppolicy overlay via FusionDirectory. Ppolicy provides enhanced\n password management capabilities that are applied to non-rootdn bind attempts\n in OpenLDAP.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ppolicy-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory ppolicy Plugin\n This package includes the LDAP schema needed by the FusionDirectory\n ppolicy Plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user\n web interface, designed to handle LDAP-based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-puppet", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Puppet plugin for FusionDirectory\n Simple puppet plugin for FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-puppet?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-puppet-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory puppet Plugin\n This package includes the LDAP schema needed by the FusionDirectory\n Puppet Plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user\n web interface, designed to handle LDAP-based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-pureftpd", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "pureftpd plugin for FusionDirectory\n PureFTPD plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-pureftpd-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory pureftpd plugin\n This package includes the LDAP schema needed by the FusionDirectory\n pureftpd plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-quota", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "quota plugin for FusionDirectory\n Linux Quota plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-quota?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-quota-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory quota plugin\n This package includes the LDAP schema needed by the FusionDirectory\n quota plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-renater-partage", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Renater partage integration plugin for FusionDirectory\n Renater partage plugin for https://partage.renater.fr/\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-renater-partage-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory renater partage plugin\n This package includes the LDAP schema needed by the FusionDirectory\n renater partage plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-repository", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "repository plugin for FusionDirectory\n Repository plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-repository?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-repository-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory repository plugin\n This package includes the LDAP schema needed by the FusionDirectory\n repository plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-samba", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "samba3 plugin for FusionDirectory\n Plugin for Samba 3 management.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-samba?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-samba-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory samba plugin\n This package includes the LDAP schema needed by the FusionDirectory\n samba plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sogo", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "SOGo plugin for FusionDirectory\n SOGo resource management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-sogo?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sogo-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory SOgo plugin\n This package includes the LDAP schemas needed by the FusionDirectory\n SOGo plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-spamassassin", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "spamassassin plugin for FusionDirectory\n spamassassin plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-spamassassin-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory spamassassin plugin\n This package includes the LDAP schema needed by the FusionDirectory\n spamassassin plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-squid", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "squid plugin for FusionDirectory\n Squid plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-squid?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-squid-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory squid plugin\n This package includes the LDAP schema needed by the FusionDirectory\n squid plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ssh", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ssh plugin for FusionDirectory\n SSH key management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ssh?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ssh-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory ssh plugin\n This package includes the LDAP schema needed by the FusionDirectory\n ssh plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-subcontracting", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "subcontracting plugin for FusionDirectory\n This package includes the subcontracting plugin for FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-subcontracting-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory subcontracting plugin\n This package includes the LDAP schema needed by the FusionDirectory\n subcontracting plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sudo", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "sudo plugin for FusionDirectory\n Sudo management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-sudo?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sudo-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory sudo plugin\n This package includes the LDAP schema needed by the FusionDirectory\n sudo plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-supann", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "supann plugin for FusionDirectory\n Supann management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-supann?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-supann-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory supann plugin\n This package includes the LDAP schema needed by the FusionDirectory\n supann plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sympa", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "sympa plugin for FusionDirectory\n This plugin is designed to configure basic sympa lists.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-sympa?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sympa-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory sympa plugin\n This package includes the LDAP schema needed by the FusionDirectory\n sympa plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-systems", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "systems plugin for FusionDirectory\n Systems management base plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-systems?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-systems-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory systems plugin\n This package includes the LDAP schema needed by the FusionDirectory\n systems plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-user-reminder", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "user reminder plugin for FusionDirectory\n The user reminder plugin allows you to configure a reminder for expiring\n account to ask user if they want to keep the account open or not.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-user-reminder-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory user reminder plugin\n This package includes the LDAP schema needed by the FusionDirectory\n user-reminder plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-weblink", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "weblink plugin for FusionDirectory\n The weblink plugin allows you to add a link to systems pointing\n to their web interface.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-weblink?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-weblink-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory weblink plugin\n This package includes the LDAP schema needed by the FusionDirectory\n weblink plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-webservice", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "webservice plugin for FusionDirectory\n This plugin is designed to manage FusionDirectory with a webservice.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-webservice?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-webservice-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "schema for the webservice plugin for FusionDirectory\n This package includes the LDAP schema needed by the FusionDirectory\n webservice plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory\n This package includes the basics LDAP schemas needed by FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-smarty3-acl-render", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Provide FusionDirectory ACL based rendering for Smarty3\n This package provides acl based rendering support for Smarty3,\n the popular PHP templating engine (http://smarty.php.net/). This\n module is mainly used by FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-theme-oxygen", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Icon theme Oxygen for FusionDirectory\n This package makes Oxygen icon theme available in FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-theme-oxygen?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-webservice-shell", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "webservice shell for FusionDirectory\n This is the conmand line shell for the FusionDirectory with a webservice.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "datafile_paths": [ - "debian/control" - ], - "datasource_ids": [ - "debian_control_in_source" - ], - "purl": "pkg:deb/fusiondirectory-webservice-shell?architecture=all" - } - ], - "dependencies": [], - "license_detections": [ - { - "identifier": "bsd_new-008266ae-6939-ad31-3617-228b0809863c", - "license_expression": "bsd-new", - "license_expression_spdx": "BSD-3-Clause", - "detection_count": 2, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "bsd-new", - "license_expression_spdx": "BSD-3-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 441, - "end_line": 441, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-new_195.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_195.RULE", - "matched_text": "License: BSD-3-clause", - "matched_text_diagnostics": "License: BSD-3-clause" - } - ] - }, - { - "identifier": "bsd_original-9198bafe-47c0-f9dc-5ef1-bd276a69786e", - "license_expression": "bsd-original", - "license_expression_spdx": "BSD-4-Clause", - "detection_count": 2, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "bsd-original", - "license_expression_spdx": "BSD-4-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1501, - "end_line": 1501, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-original_43.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_43.RULE", - "matched_text": "License: BSD-4-clause", - "matched_text_diagnostics": "License: BSD-4-clause" - } - ] - }, - { - "identifier": "bsd_simplified-2383ae10-5494-e069-46c2-e2d6cb56951f", - "license_expression": "bsd-simplified", - "license_expression_spdx": "BSD-2-Clause", - "detection_count": 2, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "bsd-simplified", - "license_expression_spdx": "BSD-2-Clause", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2880, - "end_line": 2880, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-simplified_136.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_136.RULE", - "matched_text": "License: BSD (2 clause)", - "matched_text_diagnostics": "License: BSD (2 clause)" - } - ] - }, - { - "identifier": "free_unknown-fddf748a-9953-bc6c-cb9d-91001840e335", - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "detection_count": 3, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 562, - "end_line": 562, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 10, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "free-unknown-package_4.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_4.RULE", - "matched_text": " This file is distributed under the same license as the fusiondirectory package.", - "matched_text_diagnostics": "This file is distributed under the same license as the" - } - ] - }, - { - "identifier": "free_unknown-6489a264-9d51-ad5f-94b9-6939d54b4036", - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "detection_count": 2, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 413, - "end_line": 413, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "free-unknown-package_2.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_2.RULE", - "matched_text": " This file is distributed under the same license as the PACKAGE package.", - "matched_text_diagnostics": "This file is distributed under the same license as the PACKAGE package." - } - ] - }, - { - "identifier": "free_unknown-34d6195a-6206-be2e-4bd2-ce3b9493a1ad", - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "detection_count": 1, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "from_file": "fusiondirectory/debian/po/fr.po", - "start_line": 3, - "end_line": 3, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 11, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "free-unknown-package_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_1.RULE", - "matched_text": "# This file is distributed under the same license as the package.", - "matched_text_diagnostics": "This file is distributed under the same license as the package." - } - ] - }, - { - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9", - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "detection_count": 46, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 297, - "end_line": 297, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ] - }, - { - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b", - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "detection_count": 44, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2692, - "end_line": 2692, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ] - }, - { - "identifier": "gpl_2_0_plus-fed2dc38-09ac-103e-1b86-4a4f5c00614a", - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "detection_count": 2, - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "reference_matches": [ - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1099, - "end_line": 1099, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_67.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_67.RULE", - "matched_text": " FusionDirectory (i.e. GPL-2+).", - "matched_text_diagnostics": "GPL-2+)." - } - ] - }, - { - "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-9e2a213a-3fc4-9ee3-8e3f-783829530b14", - "license_expression": "gpl-2.0-plus AND gpl-3.0-plus AND lgpl-2.1-plus AND lgpl-3.0-plus AND bsd-new AND bsd-original AND mit AND public-domain AND other-permissive", - "license_expression_spdx": "GPL-2.0-or-later AND GPL-3.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND BSD-3-Clause AND BSD-4-Clause AND MIT AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-other-permissive", - "detection_count": 2, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "License: GPL-2+" - }, - { - "license_expression": "gpl-3.0-plus", - "license_expression_spdx": "GPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0-plus_89.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_89.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "GPL-3+" - }, - { - "license_expression": "lgpl-2.1-plus", - "license_expression_spdx": "LGPL-2.1-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-2.1-plus_64.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "LGPL-2.1+" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_36.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_36.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "LGPL-3+" - }, - { - "license_expression": "bsd-new", - "license_expression_spdx": "BSD-3-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-new_10.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "BSD-3-clause" - }, - { - "license_expression": "bsd-original", - "license_expression_spdx": "BSD-4-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "BSD-4-clause" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1523, - "end_line": 1523, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1524, - "end_line": 1539, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 136, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_1038.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE", - "matched_text": " This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 2 can be found in `/usr/share/common-licenses/GPL-2'.", - "matched_text_diagnostics": "This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 2 can be found in `/usr/share/common-licenses/GPL-2'." - }, - { - "license_expression": "gpl-3.0-plus", - "license_expression_spdx": "GPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1541, - "end_line": 1541, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0-plus_92.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_92.RULE", - "matched_text": "License: GPL-3+", - "matched_text_diagnostics": "License: GPL-3+" - }, - { - "license_expression": "gpl-3.0-plus", - "license_expression_spdx": "GPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1542, - "end_line": 1557, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 136, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0-plus_512.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE", - "matched_text": " This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 3 can be found in `/usr/share/common-licenses/GPL-3'.", - "matched_text_diagnostics": "This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 3 can be found in `/usr/share/common-licenses/GPL-3'." - }, - { - "license_expression": "lgpl-2.1-plus", - "license_expression_spdx": "LGPL-2.1-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1559, - "end_line": 1559, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-2.1-plus_108.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE", - "matched_text": "License: LGPL-2.1+", - "matched_text_diagnostics": "License: LGPL-2.1+" - }, - { - "license_expression": "lgpl-2.1-plus", - "license_expression_spdx": "LGPL-2.1-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1560, - "end_line": 1577, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 146, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-2.1-plus_418.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE", - "matched_text": " This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2,1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.", - "matched_text_diagnostics": "This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2,1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'." - }, - { - "license_expression": "mit", - "license_expression_spdx": "MIT", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1579, - "end_line": 1579, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit_437.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_437.RULE", - "matched_text": "License: Expat", - "matched_text_diagnostics": "License: Expat" - }, - { - "license_expression": "mit", - "license_expression_spdx": "MIT", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1580, - "end_line": 1596, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 161, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "matched_text": " Permission is hereby granted, free of charge, to any person obtaining a copy of\n this software and associated documentation files (the \"Software\"), to deal in\n the Software without restriction, including without limitation the rights to\n use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n of the Software, and to permit persons to whom the Software is furnished to do\n so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.", - "matched_text_diagnostics": "Permission is hereby granted, free of charge, to any person obtaining a copy of\n this software and associated documentation files (the \"Software\"), to deal in\n the Software without restriction, including without limitation the rights to\n use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n of the Software, and to permit persons to whom the Software is furnished to do\n so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE." - }, - { - "license_expression": "bsd-new", - "license_expression_spdx": "BSD-3-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1598, - "end_line": 1598, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-new_195.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_195.RULE", - "matched_text": "License: BSD-3-clause", - "matched_text_diagnostics": "License: BSD-3-clause" - }, - { - "license_expression": "bsd-new", - "license_expression_spdx": "BSD-3-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1599, - "end_line": 1621, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 213, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-new_577.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_577.RULE", - "matched_text": " Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", - "matched_text_diagnostics": "Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." - }, - { - "license_expression": "bsd-original", - "license_expression_spdx": "BSD-4-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1623, - "end_line": 1623, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-original_43.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_43.RULE", - "matched_text": "License: BSD-4-clause", - "matched_text_diagnostics": "License: BSD-4-clause" - }, - { - "license_expression": "bsd-original", - "license_expression_spdx": "BSD-4-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1624, - "end_line": 1649, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 236, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-original_71.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_71.RULE", - "matched_text": " Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - All advertising materials mentioning features or use of this software must\n display the following acknowledgement: \u201cThis product includes software\n developed by the .\u201d\n - Neither the name of the author(s) nor the names of this program's\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) \u201cAS IS\u201d AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", - "matched_text_diagnostics": "Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - All advertising materials mentioning features or use of this software must\n display the following acknowledgement: \u201cThis product includes software\n developed by the .\u201d\n - Neither the name of the author(s) nor the names of this program's\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) \u201cAS IS\u201d AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1651, - "end_line": 1651, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_166.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE", - "matched_text": "License: LGPL-3+", - "matched_text_diagnostics": "License: LGPL-3+" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1652, - "end_line": 1663, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 105, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_189.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE", - "matched_text": " This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'.", - "matched_text_diagnostics": "This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'." - }, - { - "license_expression": "public-domain", - "license_expression_spdx": "LicenseRef-scancode-public-domain", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1665, - "end_line": 1665, - "matcher": "2-aho", - "score": 99.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 99, - "rule_identifier": "pypi_public_domain.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/pypi_public_domain.RULE", - "matched_text": "License: public-domain", - "matched_text_diagnostics": "License: public-domain" - }, - { - "license_expression": "other-permissive", - "license_expression_spdx": "LicenseRef-scancode-other-permissive", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1666, - "end_line": 1669, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 40, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "other-permissive_325.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/other-permissive_325.RULE", - "matched_text": " This file is in the public domain. You may use and modify it as\n you see fit, as long as this copyright message is included and\n that there is an indication as to what modifications have been\n made (if any).", - "matched_text_diagnostics": "This file is in the public domain. You may use and modify it as\n you see fit, as long as this copyright message is included and\n that there is an indication as to what modifications have been\n made (if any)." - } - ] - }, - { - "identifier": "lgpl_3_0_plus-4c8d95b2-1acf-7a81-473c-d8e70962288c", - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "detection_count": 2, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 968, - "end_line": 968, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_166.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE", - "matched_text": "License: LGPL-3+", - "matched_text_diagnostics": "License: LGPL-3+" - } - ] - }, - { - "identifier": "mit-1f9f2ae8-7020-0a13-7934-461c752929a4", - "license_expression": "mit", - "license_expression_spdx": null, - "detection_count": 6, - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "reference_matches": [ - { - "license_expression": "mit", - "license_expression_spdx": "MIT", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1429, - "end_line": 1429, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit_437.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_437.RULE", - "matched_text": "License: Expat", - "matched_text_diagnostics": "License: Expat" - } - ] - }, - { - "identifier": "public_domain-1a6a4f2c-bd92-9942-920f-be3d0c2bbda6", - "license_expression": "public-domain", - "license_expression_spdx": null, - "detection_count": 2, - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "reference_matches": [ - { - "license_expression": "public-domain", - "license_expression_spdx": "LicenseRef-scancode-public-domain", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1094, - "end_line": 1094, - "matcher": "2-aho", - "score": 99.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 99, - "rule_identifier": "pypi_public_domain.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/pypi_public_domain.RULE", - "matched_text": "License: public-domain", - "matched_text_diagnostics": "License: public-domain" - } - ] - } - ], - "files": [ - { - "path": "debian", - "type": "directory", - "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "scan_errors": [] - }, - { - "path": "debian/README.Debian", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "scan_errors": [] - }, - { - "path": "debian/README.multi-orig-tarball-package", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [ - { - "license_expression": "borceux", - "spdx_license_expression": "Borceux", - "from_file": "fusiondirectory/debian/README.multi-orig-tarball-package", - "start_line": 1, - "end_line": 3, - "matcher": "3-seq", - "score": 4.71, - "matched_length": 4, - "match_coverage": 4.71, - "rule_relevance": 100, - "rule_identifier": "borceux.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/borceux.LICENSE", - "matched_text": "This src:package consists of various tarballs.\n\nThis README is a dummy file for creating the base tarball of the name", - "matched_text_diagnostics": "package consists of [various] [tarballs].\n\n[This] README" - } - ], - "percentage_of_license_text": 10.53, - "scan_errors": [] - }, - { - "path": "debian/changelog", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "scan_errors": [] - }, - { - "path": "debian/control", - "type": "file", - "package_data": [ - { - "type": "deb", - "namespace": null, - "name": null, - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": null, - "description": null, - "release_date": null, - "parties": [ - { - "type": null, - "role": "maintainer", - "name": "FusionDirectory Packagers ", - "email": null, - "url": null - } - ], - "keywords": [ - "web" - ], - "homepage_url": "https://www.fusiondirectory.org/", - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": "gpl-2.0-plus AND free-unknown AND bsd-new AND lgpl-3.0-plus AND public-domain AND mit AND bsd-original AND (gpl-2.0-plus AND gpl-3.0-plus AND lgpl-2.1-plus AND lgpl-3.0-plus AND bsd-new AND bsd-original AND mit AND public-domain AND other-permissive) AND bsd-simplified", - "declared_license_expression_spdx": "GPL-2.0-or-later AND LicenseRef-scancode-free-unknown AND BSD-3-Clause AND LGPL-3.0-or-later AND LicenseRef-scancode-public-domain AND MIT AND BSD-4-Clause AND (GPL-2.0-or-later AND GPL-3.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND BSD-3-Clause AND BSD-4-Clause AND MIT AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-other-permissive) AND BSD-2-Clause", - "license_detections": [ - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 297, - "end_line": 297, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 411, - "end_line": 411, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "matches": [ - { - "license_expression": "free-unknown", - "spdx_license_expression": "LicenseRef-scancode-free-unknown", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 413, - "end_line": 413, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "free-unknown-package_2.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_2.RULE", - "matched_text": " This file is distributed under the same license as the PACKAGE package.", - "matched_text_diagnostics": "This file is distributed under the same license as the PACKAGE package." - } - ], - "detection_log": [], - "identifier": "free_unknown-6489a264-9d51-ad5f-94b9-6939d54b4036" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 427, - "end_line": 427, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 433, - "end_line": 433, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "bsd-new", - "license_expression_spdx": "BSD-3-Clause", - "matches": [ - { - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 441, - "end_line": 441, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-new_195.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_195.RULE", - "matched_text": "License: BSD-3-clause", - "matched_text_diagnostics": "License: BSD-3-clause" - } - ], - "detection_log": [], - "identifier": "bsd_new-008266ae-6939-ad31-3617-228b0809863c" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 452, - "end_line": 452, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 461, - "end_line": 461, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 475, - "end_line": 475, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 488, - "end_line": 488, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 495, - "end_line": 495, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 503, - "end_line": 503, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 560, - "end_line": 560, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "matches": [ - { - "license_expression": "free-unknown", - "spdx_license_expression": "LicenseRef-scancode-free-unknown", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 562, - "end_line": 562, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 10, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "free-unknown-package_4.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_4.RULE", - "matched_text": " This file is distributed under the same license as the fusiondirectory package.", - "matched_text_diagnostics": "This file is distributed under the same license as the" - } - ], - "detection_log": [], - "identifier": "free_unknown-fddf748a-9953-bc6c-cb9d-91001840e335" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "matches": [ - { - "license_expression": "lgpl-3.0-plus", - "spdx_license_expression": "LGPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 968, - "end_line": 968, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_166.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE", - "matched_text": "License: LGPL-3+", - "matched_text_diagnostics": "License: LGPL-3+" - } - ], - "detection_log": [], - "identifier": "lgpl_3_0_plus-4c8d95b2-1acf-7a81-473c-d8e70962288c" - }, - { - "license_expression": "public-domain", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "public-domain", - "spdx_license_expression": "LicenseRef-scancode-public-domain", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1094, - "end_line": 1094, - "matcher": "2-aho", - "score": 99.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 99, - "rule_identifier": "pypi_public_domain.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/pypi_public_domain.RULE", - "matched_text": "License: public-domain", - "matched_text_diagnostics": "License: public-domain" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "public_domain-1a6a4f2c-bd92-9942-920f-be3d0c2bbda6" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1099, - "end_line": 1099, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_67.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_67.RULE", - "matched_text": " FusionDirectory (i.e. GPL-2+).", - "matched_text_diagnostics": "GPL-2+)." - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-fed2dc38-09ac-103e-1b86-4a4f5c00614a" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1413, - "end_line": 1413, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1423, - "end_line": 1423, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "mit", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "mit", - "spdx_license_expression": "MIT", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1429, - "end_line": 1429, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit_437.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_437.RULE", - "matched_text": "License: Expat", - "matched_text_diagnostics": "License: Expat" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "mit-1f9f2ae8-7020-0a13-7934-461c752929a4" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1437, - "end_line": 1437, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1443, - "end_line": 1443, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1449, - "end_line": 1449, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1457, - "end_line": 1457, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1463, - "end_line": 1463, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1469, - "end_line": 1469, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1475, - "end_line": 1475, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1481, - "end_line": 1481, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1487, - "end_line": 1487, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1493, - "end_line": 1493, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_2_0_plus-53a26be2-1f88-01ec-d294-921768a513c9" - }, - { - "license_expression": "bsd-original", - "license_expression_spdx": "BSD-4-Clause", - "matches": [ - { - "license_expression": "bsd-original", - "spdx_license_expression": "BSD-4-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1501, - "end_line": 1501, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-original_43.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_43.RULE", - "matched_text": "License: BSD-4-clause", - "matched_text_diagnostics": "License: BSD-4-clause" - } - ], - "detection_log": [], - "identifier": "bsd_original-9198bafe-47c0-f9dc-5ef1-bd276a69786e" - }, - { - "license_expression": "mit", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "mit", - "spdx_license_expression": "MIT", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1507, - "end_line": 1507, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit_437.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_437.RULE", - "matched_text": "License: Expat", - "matched_text_diagnostics": "License: Expat" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "mit-1f9f2ae8-7020-0a13-7934-461c752929a4" - }, - { - "license_expression": "mit", - "license_expression_spdx": null, - "matches": [ - { - "license_expression": "mit", - "spdx_license_expression": "MIT", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1513, - "end_line": 1513, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit_437.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_437.RULE", - "matched_text": "License: Expat", - "matched_text_diagnostics": "License: Expat" - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "mit-1f9f2ae8-7020-0a13-7934-461c752929a4" - }, - { - "license_expression": "gpl-2.0-plus AND gpl-3.0-plus AND lgpl-2.1-plus AND lgpl-3.0-plus AND bsd-new AND bsd-original AND mit AND public-domain AND other-permissive", - "license_expression_spdx": "GPL-2.0-or-later AND GPL-3.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND BSD-3-Clause AND BSD-4-Clause AND MIT AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-other-permissive", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "License: GPL-2+" - }, - { - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0-plus_89.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_89.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "GPL-3+" - }, - { - "license_expression": "lgpl-2.1-plus", - "spdx_license_expression": "LGPL-2.1-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-2.1-plus_64.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "LGPL-2.1+" - }, - { - "license_expression": "lgpl-3.0-plus", - "spdx_license_expression": "LGPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_36.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_36.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "LGPL-3+" - }, - { - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-new_10.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "BSD-3-clause" - }, - { - "license_expression": "bsd-original", - "spdx_license_expression": "BSD-4-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1521, - "end_line": 1521, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "BSD-4-clause" - }, - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1523, - "end_line": 1523, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_22.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", - "matched_text": "License: GPL-2+", - "matched_text_diagnostics": "License: GPL-2+" - }, - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1524, - "end_line": 1539, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 136, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_1038.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE", - "matched_text": " This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 2 can be found in `/usr/share/common-licenses/GPL-2'.", - "matched_text_diagnostics": "This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 2 can be found in `/usr/share/common-licenses/GPL-2'." - }, - { - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1541, - "end_line": 1541, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0-plus_92.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_92.RULE", - "matched_text": "License: GPL-3+", - "matched_text_diagnostics": "License: GPL-3+" - }, - { - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1542, - "end_line": 1557, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 136, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0-plus_512.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE", - "matched_text": " This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 3 can be found in `/usr/share/common-licenses/GPL-3'.", - "matched_text_diagnostics": "This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 3 can be found in `/usr/share/common-licenses/GPL-3'." - }, - { - "license_expression": "lgpl-2.1-plus", - "spdx_license_expression": "LGPL-2.1-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1559, - "end_line": 1559, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-2.1-plus_108.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE", - "matched_text": "License: LGPL-2.1+", - "matched_text_diagnostics": "License: LGPL-2.1+" - }, - { - "license_expression": "lgpl-2.1-plus", - "spdx_license_expression": "LGPL-2.1-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1560, - "end_line": 1577, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 146, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-2.1-plus_418.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE", - "matched_text": " This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2,1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.", - "matched_text_diagnostics": "This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2,1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'." - }, - { - "license_expression": "mit", - "spdx_license_expression": "MIT", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1579, - "end_line": 1579, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit_437.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_437.RULE", - "matched_text": "License: Expat", - "matched_text_diagnostics": "License: Expat" - }, - { - "license_expression": "mit", - "spdx_license_expression": "MIT", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1580, - "end_line": 1596, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 161, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "matched_text": " Permission is hereby granted, free of charge, to any person obtaining a copy of\n this software and associated documentation files (the \"Software\"), to deal in\n the Software without restriction, including without limitation the rights to\n use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n of the Software, and to permit persons to whom the Software is furnished to do\n so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.", - "matched_text_diagnostics": "Permission is hereby granted, free of charge, to any person obtaining a copy of\n this software and associated documentation files (the \"Software\"), to deal in\n the Software without restriction, including without limitation the rights to\n use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n of the Software, and to permit persons to whom the Software is furnished to do\n so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE." - }, - { - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1598, - "end_line": 1598, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-new_195.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_195.RULE", - "matched_text": "License: BSD-3-clause", - "matched_text_diagnostics": "License: BSD-3-clause" - }, - { - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1599, - "end_line": 1621, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 213, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-new_577.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_577.RULE", - "matched_text": " Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", - "matched_text_diagnostics": "Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." - }, - { - "license_expression": "bsd-original", - "spdx_license_expression": "BSD-4-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1623, - "end_line": 1623, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-original_43.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_43.RULE", - "matched_text": "License: BSD-4-clause", - "matched_text_diagnostics": "License: BSD-4-clause" - }, - { - "license_expression": "bsd-original", - "spdx_license_expression": "BSD-4-Clause", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1624, - "end_line": 1649, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 236, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-original_71.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_71.RULE", - "matched_text": " Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - All advertising materials mentioning features or use of this software must\n display the following acknowledgement: \u201cThis product includes software\n developed by the .\u201d\n - Neither the name of the author(s) nor the names of this program's\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) \u201cAS IS\u201d AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", - "matched_text_diagnostics": "Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - All advertising materials mentioning features or use of this software must\n display the following acknowledgement: \u201cThis product includes software\n developed by the .\u201d\n - Neither the name of the author(s) nor the names of this program's\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) \u201cAS IS\u201d AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." - }, - { - "license_expression": "lgpl-3.0-plus", - "spdx_license_expression": "LGPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1651, - "end_line": 1651, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_166.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE", - "matched_text": "License: LGPL-3+", - "matched_text_diagnostics": "License: LGPL-3+" - }, - { - "license_expression": "lgpl-3.0-plus", - "spdx_license_expression": "LGPL-3.0-or-later", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1652, - "end_line": 1663, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 105, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_189.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE", - "matched_text": " This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'.", - "matched_text_diagnostics": "This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'." - }, - { - "license_expression": "public-domain", - "spdx_license_expression": "LicenseRef-scancode-public-domain", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1665, - "end_line": 1665, - "matcher": "2-aho", - "score": 99.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 99, - "rule_identifier": "pypi_public_domain.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/pypi_public_domain.RULE", - "matched_text": "License: public-domain", - "matched_text_diagnostics": "License: public-domain" - }, - { - "license_expression": "other-permissive", - "spdx_license_expression": "LicenseRef-scancode-other-permissive", - "from_file": "fusiondirectory/debian/copyright", - "start_line": 1666, - "end_line": 1669, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 40, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "other-permissive_325.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/other-permissive_325.RULE", - "matched_text": " This file is in the public domain. You may use and modify it as\n you see fit, as long as this copyright message is included and\n that there is an indication as to what modifications have been\n made (if any).", - "matched_text_diagnostics": "This file is in the public domain. You may use and modify it as\n you see fit, as long as this copyright message is included and\n that there is an indication as to what modifications have been\n made (if any)." - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-9e2a213a-3fc4-9ee3-8e3f-783829530b14" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2692, - "end_line": 2692, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2804, - "end_line": 2804, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2818, - "end_line": 2818, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2844, - "end_line": 2844, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2863, - "end_line": 2863, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2873, - "end_line": 2873, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "bsd-simplified", - "license_expression_spdx": "BSD-2-Clause", - "matches": [ - { - "license_expression": "bsd-simplified", - "spdx_license_expression": "BSD-2-Clause", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2880, - "end_line": 2880, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "bsd-simplified_136.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_136.RULE", - "matched_text": "License: BSD (2 clause)", - "matched_text_diagnostics": "License: BSD (2 clause)" - } - ], - "detection_log": [], - "identifier": "bsd_simplified-2383ae10-5494-e069-46c2-e2d6cb56951f" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2889, - "end_line": 2889, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later) (with incorrect FSF address)", - "matched_text_diagnostics": "License: GPL (v2 or later) (" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2903, - "end_line": 2903, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2911, - "end_line": 2911, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2919, - "end_line": 2919, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2939, - "end_line": 2939, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2945, - "end_line": 2945, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2951, - "end_line": 2951, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2959, - "end_line": 2959, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2964, - "end_line": 2964, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2970, - "end_line": 2970, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2976, - "end_line": 2976, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2982, - "end_line": 2982, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2988, - "end_line": 2988, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2993, - "end_line": 2993, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later)", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 2999, - "end_line": 2999, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later) (with incorrect FSF address)", - "matched_text_diagnostics": "License: GPL (v2 or later) (" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - }, - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "matches": [ - { - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "from_file": "fusiondirectory/debian/copyright.in", - "start_line": 3005, - "end_line": 3005, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_687.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", - "matched_text": "License: GPL (v2 or later) GENERATED FILE", - "matched_text_diagnostics": "License: GPL (v2 or later)" - } - ], - "detection_log": [], - "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b" - } - ], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [ - "pkg:deb/fusiondirectory" - ], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": null - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Web Based LDAP Administration Program\n Provided is access to posix, shadow, samba, proxy, pureftp and\n kerberos accounts. It is able to manage the postfix/cyrus server\n combination and can write user adapted sieve scripts.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-alias", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "alias plugin for FusionDirectory\n This plugin is designed to configure mail aliases for postfix.\n It provide description and expiration Date\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-alias?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-alias-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory alias plugin\n This package includes the LDAP schema needed by the FusionDirectory\n alias plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-applications", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Applications management plugin for FusionDirectory\n Application management plugin for desktop and web.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-applications?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-applications-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory application management plugin\n This package includes the LDAP schema needed by the FusionDirectory\n application management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-argonaut", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Argonaut plugin for FusionDirectory\n Store all the configuration for the Argonaut deployment system.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-argonaut-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory Argonaut plugin\n This package includes the LDAP schema needed by the FusionDirectory\n Argonaut plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-audit", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "audit plugin for FusionDirectory\n This package contains the audit plugin for FusionDirectory\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-audit?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-audit-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory audit plugin\n This package includes the LDAP schema needed by the FusionDirectory\n audit plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-autofs", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "autofs plugin for FusionDirectory\n Automount management plugin for FusionDirectory\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-autofs?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-autofs-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory autofs plugin\n This package includes the LDAP schema needed by the FusionDirectory\n autofs plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-certificates", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "certificates plugin for FusionDirectory\n Allow storage of SSL certificates in the user entries.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-certificates?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-community", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "community plugin for FusionDirectory\n Community and Organization management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-community?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-community-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory community plugin\n This package includes the LDAP schema needed by the FusionDirectory\n community plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-cyrus", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "cyrus plugin for FusionDirectory\n Cyrus account management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-cyrus-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory cyrus plugin\n This package includes the LDAP schema needed by the FusionDirectory\n cyrus plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-debconf", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Debconf plugin for FusionDirectory\n Simple debconf plugin for FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-debconf?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-debconf-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory Debconf Plugin\n This package includes the LDAP schema needed by the FusionDirectory\n Debconf Plugin. It is the same LDAP schema as distributed in the\n debconf-doc package for the Debconf's basic, built-in LDAP driver.\n .\n FusionDirectory is a combination of system-administrator and end-user\n web interface, designed to handle LDAP-based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-developers", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Provide doc and tools for FusionDirectory development\n This package provides codesniffer templates for code conformity,\n a plugin to show reference between classes, and a simple plugin\n example to show the basic use of the API and a doxyfile to generate API\n from sourcecode.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-developers?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dhcp", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "dhcp plugin for FusionDirectory\n DHCP service management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dhcp-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory dhcp plugin\n This package includes the LDAP schema needed by the FusionDirectory\n dhcp plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dns", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "dns plugin for FusionDirectory\n DNS service management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-dns?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dns-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory dns plugin\n This package includes the LDAP schema needed by the FusionDirectory\n dns plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dovecot", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "dovecot plugin for FusionDirectory\n Dovecot account management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dovecot-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory dovecot plugin\n This package includes the LDAP schema needed by the FusionDirectory\n dovecot plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dsa", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "dsa plugin for FusionDirectory\n This plugin is designed to maintain the dsa branch of your LDAP directory.\n The dsa branch is the one tha contains the security account for LDAP clients\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-dsa?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-dsa-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory dsa plugin\n This package includes the LDAP schema needed by the FusionDirectory\n dsa plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ejbca", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ejbca plugin for FusionDirectory\n This plugin is designed to show the certificates for servers and users\n stored by ejbca inside LDAP.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ejbca-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory ejbca plugin\n This package includes the LDAP schema needed by the FusionDirectory\n ejbca plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-fai", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "fai plugin for FusionDirectory\n FAI plugin for managing Linux system deployment.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-fai?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-fai-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory fai plugin\n This package includes the LDAP schema needed by the FusionDirectory\n fai plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-freeradius", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "freeradius plugin for FusionDirectory\n This package adds FreeRADIUS management to FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-freeradius-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory freeradius plugin\n This package includes the LDAP schema needed by the FusionDirectory\n freeradius plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-fusioninventory", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "FusionInventory plugin for FusionDirectory\n This plugin allow you to manage your inventories with the fusioninventory\n agent.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-fusioninventory-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory fusioninventory plugin\n This package includes the LDAP schema needed by the FusionDirectory\n fusioninventory plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-gpg", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "gpg plugin for FusionDirectory\n This plugin allow you to manage gpg key for the user in your LDAP tree.\n It also allow you to configure a gpg server to fetch his key from the\n LDAP server.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-gpg?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-gpg-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory gpg plugin\n This package includes the LDAP schema needed by the FusionDirectory\n gpg plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ipmi", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ipmi plugin for FusionDirectory\n This plugin allow you to manage ipmi services.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ipmi-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory ipmi plugin\n This package includes the LDAP schema needed by the FusionDirectory\n ipmi plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ldapdump", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ldapdump plugin for FusionDirectory\n Show raw LDAP data\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ldapmanager", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ldapmanager plugin for FusionDirectory\n LDAP import and export management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-mail", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "base mail plugin for FusionDirectory\n Mail management base plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-mail?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-mail-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory mail plugin\n This package includes the LDAP schema needed by the FusionDirectory\n mail plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-mixedgroups", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "plugin to manage groups mixing memberuid and member\n Member and memberuid mixed in the same groups, this need specific\n modified core ldap schema\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-nagios", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "nagios plugin for FusionDirectory\n Nagios account settings management\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-nagios?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-nagios-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory nagios plugin\n This package includes the LDAP schema needed by the FusionDirectory\n nagios plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-netgroups", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "netgroup plugin for FusionDirectory\n Nis Netgroups account management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-netgroups-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory netgroups plugin\n This package includes the LDAP schema needed by the FusionDirectory\n netgroups plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-newsletter", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "newsletter plugin for FusionDirectory\n Newsletter account management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-newsletter-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory newsletter plugin\n This package includes the LDAP schema needed by the FusionDirectory\n newsletter plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-opsi", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "opsi plugin for FusionDirectory\n Opsi management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-opsi?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-opsi-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory opsi plugin\n This package includes the LDAP schema needed by the FusionDirectory\n opsi plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-personal", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Personal plugin for FusionDirectory\n The personal plugin for FusionDirectory is used to stored personal data,\n like twitter, facebook, private email addresses and nickname.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-personal?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-personal-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory personal Plugin\n This package includes the LDAP schema needed by the FusionDirectory\n personal Plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user\n web interface, designed to handle LDAP-based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-posix", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "posix account and group plugin for FusionDirectory\n Manage the posix account and groups via FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-posix?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-postfix", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "postfix service plugin for FusionDirectory\n Postfix service plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-postfix?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-postfix-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory postfix plugin\n This package includes the LDAP schema needed by the FusionDirectory\n postfix plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ppolicy", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ppolicy overlay module plugin for FusionDirectory\n Manage the LDAP ppolicy overlay via FusionDirectory. Ppolicy provides enhanced\n password management capabilities that are applied to non-rootdn bind attempts\n in OpenLDAP.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ppolicy-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory ppolicy Plugin\n This package includes the LDAP schema needed by the FusionDirectory\n ppolicy Plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user\n web interface, designed to handle LDAP-based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-puppet", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Puppet plugin for FusionDirectory\n Simple puppet plugin for FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-puppet?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-puppet-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory puppet Plugin\n This package includes the LDAP schema needed by the FusionDirectory\n Puppet Plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user\n web interface, designed to handle LDAP-based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-pureftpd", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "pureftpd plugin for FusionDirectory\n PureFTPD plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-pureftpd-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory pureftpd plugin\n This package includes the LDAP schema needed by the FusionDirectory\n pureftpd plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-quota", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "quota plugin for FusionDirectory\n Linux Quota plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-quota?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-quota-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory quota plugin\n This package includes the LDAP schema needed by the FusionDirectory\n quota plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-renater-partage", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Renater partage integration plugin for FusionDirectory\n Renater partage plugin for https://partage.renater.fr/\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-renater-partage-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory renater partage plugin\n This package includes the LDAP schema needed by the FusionDirectory\n renater partage plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-repository", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "repository plugin for FusionDirectory\n Repository plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-repository?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-repository-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory repository plugin\n This package includes the LDAP schema needed by the FusionDirectory\n repository plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-samba", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "samba3 plugin for FusionDirectory\n Plugin for Samba 3 management.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-samba?architecture=all" - }, - { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-samba-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory samba plugin\n This package includes the LDAP schema needed by the FusionDirectory\n samba plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all" - }, + "identifier": "gpl_2_0_plus-227f50b1-f05e-5b3b-b107-ae1e2f56448b", + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": "GPL-2.0-or-later", + "detection_count": 22, + "detection_log": [], + "reference_matches": [ { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sogo", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "SOGo plugin for FusionDirectory\n SOGo resource management plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-sogo?architecture=all" - }, + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": "GPL-2.0-or-later", + "from_file": "fusiondirectory/debian/copyright.in", + "start_line": 2692, + "end_line": 2692, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 5, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-2.0-plus_687.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE", + "matched_text": "License: GPL (v2 or later)", + "matched_text_diagnostics": "License: GPL (v2 or later)" + } + ] + }, + { + "identifier": "gpl_2_0_plus-fed2dc38-09ac-103e-1b86-4a4f5c00614a", + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": null, + "detection_count": 1, + "detection_log": [ + "possible-false-positive", + "not-license-clues-as-more-detections-present" + ], + "reference_matches": [ { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sogo-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory SOgo plugin\n This package includes the LDAP schemas needed by the FusionDirectory\n SOGo plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all" - }, + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": "GPL-2.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1099, + "end_line": 1099, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 2, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-2.0-plus_67.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_67.RULE", + "matched_text": " FusionDirectory (i.e. GPL-2+).", + "matched_text_diagnostics": "GPL-2+)." + } + ] + }, + { + "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-9e2a213a-3fc4-9ee3-8e3f-783829530b14", + "license_expression": "gpl-2.0-plus AND gpl-3.0-plus AND lgpl-2.1-plus AND lgpl-3.0-plus AND bsd-new AND bsd-original AND mit AND public-domain AND other-permissive", + "license_expression_spdx": "GPL-2.0-or-later AND GPL-3.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND BSD-3-Clause AND BSD-4-Clause AND MIT AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-other-permissive", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-spamassassin", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "spamassassin plugin for FusionDirectory\n spamassassin plugin\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all" + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": "GPL-2.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1521, + "end_line": 1521, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-2.0-plus_22.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", + "matched_text_diagnostics": "License: GPL-2+" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-spamassassin-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory spamassassin plugin\n This package includes the LDAP schema needed by the FusionDirectory\n spamassassin plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all" + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1521, + "end_line": 1521, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 2, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-3.0-plus_89.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_89.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", + "matched_text_diagnostics": "GPL-3+" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-squid", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "squid plugin for FusionDirectory\n Squid plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-squid?architecture=all" + "license_expression": "lgpl-2.1-plus", + "license_expression_spdx": "LGPL-2.1-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1521, + "end_line": 1521, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "lgpl-2.1-plus_64.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", + "matched_text_diagnostics": "LGPL-2.1+" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-squid-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory squid plugin\n This package includes the LDAP schema needed by the FusionDirectory\n squid plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all" + "license_expression": "lgpl-3.0-plus", + "license_expression_spdx": "LGPL-3.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1521, + "end_line": 1521, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 2, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "lgpl-3.0-plus_36.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_36.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", + "matched_text_diagnostics": "LGPL-3+" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ssh", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "ssh plugin for FusionDirectory\n SSH key management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ssh?architecture=all" + "license_expression": "bsd-new", + "license_expression_spdx": "BSD-3-Clause", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1521, + "end_line": 1521, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "bsd-new_10.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", + "matched_text_diagnostics": "BSD-3-clause" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-ssh-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory ssh plugin\n This package includes the LDAP schema needed by the FusionDirectory\n ssh plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all" + "license_expression": "bsd-original", + "license_expression_spdx": "BSD-4-Clause", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1521, + "end_line": 1521, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "spdx_license_id_bsd-4-clause_for_bsd-original.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", + "matched_text_diagnostics": "BSD-4-clause" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-subcontracting", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "subcontracting plugin for FusionDirectory\n This package includes the subcontracting plugin for FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all" + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": "GPL-2.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1523, + "end_line": 1523, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-2.0-plus_22.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE", + "matched_text": "License: GPL-2+", + "matched_text_diagnostics": "License: GPL-2+" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-subcontracting-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory subcontracting plugin\n This package includes the LDAP schema needed by the FusionDirectory\n subcontracting plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all" + "license_expression": "gpl-2.0-plus", + "license_expression_spdx": "GPL-2.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1524, + "end_line": 1539, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 136, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-2.0-plus_1038.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE", + "matched_text": " This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 2 can be found in `/usr/share/common-licenses/GPL-2'.", + "matched_text_diagnostics": "This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 2 can be found in `/usr/share/common-licenses/GPL-2'." }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sudo", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "sudo plugin for FusionDirectory\n Sudo management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-sudo?architecture=all" + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1541, + "end_line": 1541, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-3.0-plus_92.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_92.RULE", + "matched_text": "License: GPL-3+", + "matched_text_diagnostics": "License: GPL-3+" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sudo-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory sudo plugin\n This package includes the LDAP schema needed by the FusionDirectory\n sudo plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all" + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1542, + "end_line": 1557, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 136, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "gpl-3.0-plus_512.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE", + "matched_text": " This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 3 can be found in `/usr/share/common-licenses/GPL-3'.", + "matched_text_diagnostics": "This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this package; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License 3 can be found in `/usr/share/common-licenses/GPL-3'." }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-supann", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "supann plugin for FusionDirectory\n Supann management plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-supann?architecture=all" + "license_expression": "lgpl-2.1-plus", + "license_expression_spdx": "LGPL-2.1-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1559, + "end_line": 1559, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 4, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "lgpl-2.1-plus_108.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE", + "matched_text": "License: LGPL-2.1+", + "matched_text_diagnostics": "License: LGPL-2.1+" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-supann-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory supann plugin\n This package includes the LDAP schema needed by the FusionDirectory\n supann plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all" + "license_expression": "lgpl-2.1-plus", + "license_expression_spdx": "LGPL-2.1-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1560, + "end_line": 1577, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 146, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "lgpl-2.1-plus_418.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE", + "matched_text": " This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2,1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.", + "matched_text_diagnostics": "This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2,1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'." }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sympa", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "sympa plugin for FusionDirectory\n This plugin is designed to configure basic sympa lists.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-sympa?architecture=all" + "license_expression": "mit", + "license_expression_spdx": "MIT", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1579, + "end_line": 1579, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 2, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "mit_437.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_437.RULE", + "matched_text": "License: Expat", + "matched_text_diagnostics": "License: Expat" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-sympa-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory sympa plugin\n This package includes the LDAP schema needed by the FusionDirectory\n sympa plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all" + "license_expression": "mit", + "license_expression_spdx": "MIT", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1580, + "end_line": 1596, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 161, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "mit.LICENSE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "matched_text": " Permission is hereby granted, free of charge, to any person obtaining a copy of\n this software and associated documentation files (the \"Software\"), to deal in\n the Software without restriction, including without limitation the rights to\n use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n of the Software, and to permit persons to whom the Software is furnished to do\n so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.", + "matched_text_diagnostics": "Permission is hereby granted, free of charge, to any person obtaining a copy of\n this software and associated documentation files (the \"Software\"), to deal in\n the Software without restriction, including without limitation the rights to\n use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n of the Software, and to permit persons to whom the Software is furnished to do\n so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE." }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-systems", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "systems plugin for FusionDirectory\n Systems management base plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-systems?architecture=all" + "license_expression": "bsd-new", + "license_expression_spdx": "BSD-3-Clause", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1598, + "end_line": 1598, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 4, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "bsd-new_195.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_195.RULE", + "matched_text": "License: BSD-3-clause", + "matched_text_diagnostics": "License: BSD-3-clause" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-systems-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory systems plugin\n This package includes the LDAP schema needed by the FusionDirectory\n systems plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all" + "license_expression": "bsd-new", + "license_expression_spdx": "BSD-3-Clause", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1599, + "end_line": 1621, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 213, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "bsd-new_577.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_577.RULE", + "matched_text": " Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "matched_text_diagnostics": "Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-user-reminder", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "user reminder plugin for FusionDirectory\n The user reminder plugin allows you to configure a reminder for expiring\n account to ask user if they want to keep the account open or not.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all" + "license_expression": "bsd-original", + "license_expression_spdx": "BSD-4-Clause", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1623, + "end_line": 1623, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 4, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "bsd-original_43.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_43.RULE", + "matched_text": "License: BSD-4-clause", + "matched_text_diagnostics": "License: BSD-4-clause" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-user-reminder-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory user reminder plugin\n This package includes the LDAP schema needed by the FusionDirectory\n user-reminder plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all" + "license_expression": "bsd-original", + "license_expression_spdx": "BSD-4-Clause", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1624, + "end_line": 1649, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 236, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "bsd-original_71.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_71.RULE", + "matched_text": " Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - All advertising materials mentioning features or use of this software must\n display the following acknowledgement: \u201cThis product includes software\n developed by the .\u201d\n - Neither the name of the author(s) nor the names of this program's\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) \u201cAS IS\u201d AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "matched_text_diagnostics": "Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - All advertising materials mentioning features or use of this software must\n display the following acknowledgement: \u201cThis product includes software\n developed by the .\u201d\n - Neither the name of the author(s) nor the names of this program's\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) \u201cAS IS\u201d AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-weblink", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "weblink plugin for FusionDirectory\n The weblink plugin allows you to add a link to systems pointing\n to their web interface.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-weblink?architecture=all" + "license_expression": "lgpl-3.0-plus", + "license_expression_spdx": "LGPL-3.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1651, + "end_line": 1651, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "lgpl-3.0-plus_166.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE", + "matched_text": "License: LGPL-3+", + "matched_text_diagnostics": "License: LGPL-3+" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-weblink-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory weblink plugin\n This package includes the LDAP schema needed by the FusionDirectory\n weblink plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all" + "license_expression": "lgpl-3.0-plus", + "license_expression_spdx": "LGPL-3.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1652, + "end_line": 1663, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 105, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "lgpl-3.0-plus_189.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE", + "matched_text": " This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'.", + "matched_text_diagnostics": "This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'." }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-webservice", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "webservice plugin for FusionDirectory\n This plugin is designed to manage FusionDirectory with a webservice.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-webservice?architecture=all" + "license_expression": "public-domain", + "license_expression_spdx": "LicenseRef-scancode-public-domain", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1665, + "end_line": 1665, + "matcher": "2-aho", + "score": 99.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 99, + "rule_identifier": "pypi_public_domain.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/pypi_public_domain.RULE", + "matched_text": "License: public-domain", + "matched_text_diagnostics": "License: public-domain" }, { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-plugin-webservice-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "schema for the webservice plugin for FusionDirectory\n This package includes the LDAP schema needed by the FusionDirectory\n webservice plugin.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all" - }, + "license_expression": "other-permissive", + "license_expression_spdx": "LicenseRef-scancode-other-permissive", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1666, + "end_line": 1669, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 40, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "other-permissive_325.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/other-permissive_325.RULE", + "matched_text": " This file is in the public domain. You may use and modify it as\n you see fit, as long as this copyright message is included and\n that there is an indication as to what modifications have been\n made (if any).", + "matched_text_diagnostics": "This file is in the public domain. You may use and modify it as\n you see fit, as long as this copyright message is included and\n that there is an indication as to what modifications have been\n made (if any)." + } + ] + }, + { + "identifier": "lgpl_3_0_plus-4c8d95b2-1acf-7a81-473c-d8e70962288c", + "license_expression": "lgpl-3.0-plus", + "license_expression_spdx": "LGPL-3.0-or-later", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-schema", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "LDAP schema for FusionDirectory\n This package includes the basics LDAP schemas needed by FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-schema?architecture=all" - }, + "license_expression": "lgpl-3.0-plus", + "license_expression_spdx": "LGPL-3.0-or-later", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 968, + "end_line": 968, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "lgpl-3.0-plus_166.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE", + "matched_text": "License: LGPL-3+", + "matched_text_diagnostics": "License: LGPL-3+" + } + ] + }, + { + "identifier": "mit-1f9f2ae8-7020-0a13-7934-461c752929a4", + "license_expression": "mit", + "license_expression_spdx": null, + "detection_count": 3, + "detection_log": [ + "possible-false-positive", + "not-license-clues-as-more-detections-present" + ], + "reference_matches": [ { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-smarty3-acl-render", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Provide FusionDirectory ACL based rendering for Smarty3\n This package provides acl based rendering support for Smarty3,\n the popular PHP templating engine (http://smarty.php.net/). This\n module is mainly used by FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based network infrastructures.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all" - }, + "license_expression": "mit", + "license_expression_spdx": "MIT", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1429, + "end_line": 1429, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 2, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "mit_437.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_437.RULE", + "matched_text": "License: Expat", + "matched_text_diagnostics": "License: Expat" + } + ] + }, + { + "identifier": "public_domain-1a6a4f2c-bd92-9942-920f-be3d0c2bbda6", + "license_expression": "public-domain", + "license_expression_spdx": null, + "detection_count": 1, + "detection_log": [ + "possible-false-positive", + "not-license-clues-as-more-detections-present" + ], + "reference_matches": [ { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-theme-oxygen", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "Icon theme Oxygen for FusionDirectory\n This package makes Oxygen icon theme available in FusionDirectory.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-theme-oxygen?architecture=all" - }, + "license_expression": "public-domain", + "license_expression_spdx": "LicenseRef-scancode-public-domain", + "from_file": "fusiondirectory/debian/copyright", + "start_line": 1094, + "end_line": 1094, + "matcher": "2-aho", + "score": 99.0, + "matched_length": 3, + "match_coverage": 100.0, + "rule_relevance": 99, + "rule_identifier": "pypi_public_domain.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/pypi_public_domain.RULE", + "matched_text": "License: public-domain", + "matched_text_diagnostics": "License: public-domain" + } + ] + } + ], + "files": [ + { + "path": "debian", + "type": "directory", + "package_data": [], + "for_packages": [], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "scan_errors": [] + }, + { + "path": "debian/README.Debian", + "type": "file", + "package_data": [], + "for_packages": [], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "scan_errors": [] + }, + { + "path": "debian/README.multi-orig-tarball-package", + "type": "file", + "package_data": [], + "for_packages": [], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [ { - "type": "deb", - "namespace": null, - "name": "fusiondirectory-webservice-shell", - "version": null, - "qualifiers": { - "architecture": "all" - }, - "subpath": null, - "primary_language": null, - "description": "webservice shell for FusionDirectory\n This is the conmand line shell for the FusionDirectory with a webservice.\n .\n FusionDirectory is a combination of system-administrator and end-user web\n interface, designed to handle LDAP based setups.", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": null, - "declared_license_expression_spdx": null, - "license_detections": [], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "debian_control_in_source", - "purl": "pkg:deb/fusiondirectory-webservice-shell?architecture=all" + "license_expression": "borceux", + "spdx_license_expression": "Borceux", + "from_file": "fusiondirectory/debian/README.multi-orig-tarball-package", + "start_line": 1, + "end_line": 3, + "matcher": "3-seq", + "score": 4.71, + "matched_length": 4, + "match_coverage": 4.71, + "rule_relevance": 100, + "rule_identifier": "borceux.LICENSE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/borceux.LICENSE", + "matched_text": "This src:package consists of various tarballs.\n\nThis README is a dummy file for creating the base tarball of the name", + "matched_text_diagnostics": "package consists of [various] [tarballs].\n\n[This] README" } ], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], + "percentage_of_license_text": 10.53, + "scan_errors": [] + }, + { + "path": "debian/changelog", + "type": "file", + "package_data": [], + "for_packages": [], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "scan_errors": [] + }, + { + "path": "debian/control", + "type": "file", + "package_data": [], + "for_packages": [], "detected_license_expression": null, "detected_license_expression_spdx": null, "license_detections": [], @@ -12175,107 +755,7 @@ "path": "debian/copyright", "type": "file", "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], + "for_packages": [], "detected_license_expression": "gpl-2.0-plus AND free-unknown AND bsd-new AND lgpl-3.0-plus AND public-domain AND mit AND bsd-original AND (gpl-2.0-plus AND gpl-3.0-plus AND lgpl-2.1-plus AND lgpl-3.0-plus AND bsd-new AND bsd-original AND mit AND public-domain AND other-permissive)", "detected_license_expression_spdx": "GPL-2.0-or-later AND LicenseRef-scancode-free-unknown AND BSD-3-Clause AND LGPL-3.0-or-later AND LicenseRef-scancode-public-domain AND MIT AND BSD-4-Clause AND (GPL-2.0-or-later AND GPL-3.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND BSD-3-Clause AND BSD-4-Clause AND MIT AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-other-permissive)", "license_detections": [ @@ -13491,107 +1971,7 @@ "path": "debian/copyright.in", "type": "file", "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], + "for_packages": [], "detected_license_expression": "gpl-2.0-plus AND bsd-simplified", "detected_license_expression_spdx": "GPL-2.0-or-later AND BSD-2-Clause", "license_detections": [ @@ -14253,107 +2633,7 @@ "path": "debian/po", "type": "directory", "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], + "for_packages": [], "detected_license_expression": null, "detected_license_expression_spdx": null, "license_detections": [], @@ -14365,107 +2645,7 @@ "path": "debian/po/de.po", "type": "file", "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], + "for_packages": [], "detected_license_expression": "free-unknown", "detected_license_expression_spdx": "LicenseRef-scancode-free-unknown", "license_detections": [ @@ -14502,107 +2682,7 @@ "path": "debian/po/fr.po", "type": "file", "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], + "for_packages": [], "detected_license_expression": "free-unknown", "detected_license_expression_spdx": "LicenseRef-scancode-free-unknown", "license_detections": [ @@ -14639,107 +2719,7 @@ "path": "debian/templates", "type": "file", "package_data": [], - "for_packages": [ - "pkg:deb/fusiondirectory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-alias-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-applications-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-argonaut-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-audit-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-autofs-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-certificates?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-community-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-cyrus-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-debconf-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-developers?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dhcp-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dns-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dovecot-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-dsa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ejbca-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fai-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-freeradius-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-fusioninventory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-gpg-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ipmi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapdump?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ldapmanager?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mail-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-mixedgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-nagios-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-netgroups-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-newsletter-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-opsi-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-personal-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-posix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-postfix-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ppolicy-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-puppet-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-pureftpd-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-quota-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-renater-partage-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-repository-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-samba-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sogo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-spamassassin-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-squid-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-ssh-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-subcontracting-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sudo-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-supann-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-sympa-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-systems-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-user-reminder-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-weblink-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-plugin-webservice-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-schema?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-smarty3-acl-render?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-theme-oxygen?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:deb/fusiondirectory-webservice-shell?architecture=all&uuid=fixed-uid-done-for-testing-5642512d1758" - ], + "for_packages": [], "detected_license_expression": null, "detected_license_expression_spdx": null, "license_detections": [], diff --git a/tests/packagedcode/data/plugin/get_installed_packages-expected.json b/tests/packagedcode/data/plugin/get_installed_packages-expected.json index ba99fa2ad82..32acfc976f1 100644 --- a/tests/packagedcode/data/plugin/get_installed_packages-expected.json +++ b/tests/packagedcode/data/plugin/get_installed_packages-expected.json @@ -1,7 +1,7 @@ [ { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libncurses5", "version": "6.1-1ubuntu1.18.04", "qualifiers": { @@ -133,7 +133,7 @@ "extracted_license_statement": null, "notice_text": null, "source_packages": [ - "pkg:deb/ncurses" + "pkg:deb/ubuntu/ncurses" ], "extra_data": { "multi_arch": "same", @@ -179,7 +179,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "basic-rootfs.tar.gz/var/lib/dpkg/status", "basic-rootfs.tar.gz/usr/share/doc/libncurses5/copyright", @@ -328,7 +328,7 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -419,16 +419,16 @@ } ], "for_packages": [ - "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:deb/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" + "purl": "pkg:deb/ubuntu/libncurses5@6.1-1ubuntu1.18.04?architecture=amd64" }, { "type": "deb", - "namespace": null, + "namespace": "ubuntu", "name": "libndp0", "version": "1.4-2ubuntu0.16.04.1", "qualifiers": { @@ -524,7 +524,7 @@ "extracted_license_statement": "- LGPL-2.1+\n- LGPL-2.1+\n- LGPL-2.1+\n", "notice_text": null, "source_packages": [ - "pkg:deb/libndp" + "pkg:deb/ubuntu/libndp" ], "extra_data": { "multi_arch": "same", @@ -552,7 +552,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "basic-rootfs.tar.gz/var/lib/dpkg/status", "basic-rootfs.tar.gz/usr/share/doc/libndp0/copyright", @@ -665,7 +665,7 @@ } ], "for_packages": [ - "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -747,11 +747,11 @@ } ], "for_packages": [ - "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:deb/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" + "purl": "pkg:deb/ubuntu/libndp0@1.4-2ubuntu0.16.04.1?architecture=amd64" } ] \ No newline at end of file