From e0a985a267cbd1378dee94a2c82dc7ae74e7c403 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Tue, 7 May 2024 22:22:07 +0530 Subject: [PATCH 1/4] Detect distro files in system package scans In docker image/other rootfs scans with SCIO we are always scanning for system packages before we scan for application packages, and we were not being able to use the distro information as this was being detected in application package scans happening later. So in this commit we are also adding os-release file parser to system package handler. Signed-off-by: Ayan Sinha Mahapatra --- src/packagedcode/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/packagedcode/__init__.py b/src/packagedcode/__init__.py index 752710c2850..676a5303212 100644 --- a/src/packagedcode/__init__.py +++ b/src/packagedcode/__init__.py @@ -218,8 +218,10 @@ debian.DebianInstalledMd5sumFilelistHandler, debian.DebianInstalledStatusDatabaseHandler, + distro.EtcOsReleaseHandler, + rpm.RpmLicenseFilesHandler, - rpm.RpmMarinerContainerManifestHandler + rpm.RpmMarinerContainerManifestHandler, ] if on_linux: From c9b9175a04941bf68d20c0a070109fdffa29a373 Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Wed, 8 May 2024 17:58:39 +0530 Subject: [PATCH 2/4] Parse and set namespace from distro ID correctly Update debian, rpm and alpine package assembly to get distro identifier and then set this properly to created package, dependency and package_uid instances. Reference: https://github.com/nexB/scancode-toolkit/issues/3443 Signed-off-by: Ayan Sinha Mahapatra --- src/packagedcode/alpine.py | 20 +- src/packagedcode/debian.py | 50 +- src/packagedcode/models.py | 59 + src/packagedcode/rpm.py | 57 +- ...r-layer.tar.xz-get-installed-expected.json | 234 +- ...-container-layer.tar.xz-scan-expected.json | 309 +- .../rootfs/alpine-rootfs.tar.xz-expected.json | 305 +- .../data/debian/debian-container-layer.tar.xz | Bin 3880 -> 3940 bytes ...-container-layer.tar.xz.scan-expected.json | 45 +- .../bdb-fedora-rootfs.tar.xz-expected.json | 4647 +++++++++-------- 10 files changed, 2963 insertions(+), 2763 deletions(-) diff --git a/src/packagedcode/alpine.py b/src/packagedcode/alpine.py index 1b155a90c97..e0ae10d020a 100644 --- a/src/packagedcode/alpine.py +++ b/src/packagedcode/alpine.py @@ -73,19 +73,17 @@ def parse(cls, location, package_only=False): @classmethod def assemble(cls, package_data, resource, codebase, package_adder): - # get the root resource of the rootfs - levels_up = len('lib/apk/db/installed'.split('/')) - root_resource = get_ancestor( - levels_up=levels_up, - resource=resource, - codebase=codebase, - ) + root_resource = cls.get_root_resource_for_rootfs(resource, codebase) package = models.Package.from_package_data( package_data=package_data, datafile_path=resource.path, ) - package_uid = package.package_uid + namespace = cls.get_distro_identifier_rootfs(root_resource, codebase) + if namespace: + package.namespace = namespace + + package_uid = package.refresh_and_get_package_uid() cls.populate_license_fields(package) @@ -119,12 +117,14 @@ def assemble(cls, package_data, resource, codebase, package_adder): dependent_packages = package_data.dependencies if dependent_packages: - yield from models.Dependency.from_dependent_packages( + for dep in models.Dependency.from_dependent_packages( dependent_packages=dependent_packages, datafile_path=resource.path, datasource_id=package_data.datasource_id, package_uid=package_uid, - ) + ): + dep.update_namespace(namespace) + yield dep class AlpineApkbuildHandler(models.DatafileHandler): diff --git a/src/packagedcode/debian.py b/src/packagedcode/debian.py index c6dd5420b1a..330419c8a4d 100644 --- a/src/packagedcode/debian.py +++ b/src/packagedcode/debian.py @@ -246,37 +246,33 @@ def parse(cls, location, package_only=False): @classmethod def assemble(cls, package_data, resource, codebase, package_adder): - # get the root resource of the rootfs - levels_up = len('var/lib/dpkg/status'.split('/')) - root_resource = get_ancestor( - levels_up=levels_up, - resource=resource, - codebase=codebase, - ) + root_resource = cls.get_root_resource_for_rootfs(resource, codebase) package_name = package_data.name - package = models.Package.from_package_data( package_data=package_data, datafile_path=resource.path, ) + namespace = cls.get_distro_identifier_rootfs(root_resource, codebase) + if namespace: + package.namespace = namespace + + package_uid = package.refresh_and_get_package_uid() package_file_references = [] package_file_references.extend(package_data.file_references) - package_uid = package.package_uid dependencies = [] dependent_packages = package_data.dependencies if dependent_packages: - deps = list( - models.Dependency.from_dependent_packages( - dependent_packages=dependent_packages, - datafile_path=resource.path, - datasource_id=package_data.datasource_id, - package_uid=package_uid, - ) - ) - dependencies.extend(deps) + for dep in models.Dependency.from_dependent_packages( + dependent_packages=dependent_packages, + datafile_path=resource.path, + datasource_id=package_data.datasource_id, + package_uid=package_uid, + ): + dep.update_namespace(namespace) + dependencies.append(dep) # Multi-Arch can be: "foreign", "same", "allowed", "all", "optional" or # empty/non-present. See https://wiki.debian.org/Multiarch/HOWTO @@ -341,15 +337,15 @@ def assemble(cls, package_data, resource, codebase, package_adder): # yield possible dependencies dependent_packages = package_data.dependencies if dependent_packages: - deps = list( - models.Dependency.from_dependent_packages( - dependent_packages=dependent_packages, - datafile_path=res.path, - datasource_id=package_data.datasource_id, - package_uid=package_uid, - ) - ) - dependencies.extend(deps) + for dep in models.Dependency.from_dependent_packages( + dependent_packages=dependent_packages, + datafile_path=res.path, + datasource_id=package_data.datasource_id, + package_uid=package_uid, + ): + if namespace and not dep.namespace: + dep.namespace = namespace + dependencies.append(dep) resources.append(res) diff --git a/src/packagedcode/models.py b/src/packagedcode/models.py index a6044cd97b2..28abb1436bd 100644 --- a/src/packagedcode/models.py +++ b/src/packagedcode/models.py @@ -42,6 +42,7 @@ licensing = None from packagedcode.licensing import get_declared_license_expression_spdx +from packagedcode.utils import get_ancestor """ This module contain data models for package and dependencies, abstracting and @@ -419,6 +420,24 @@ def __attrs_post_init__(self, *args, **kwargs): if not self.dependency_uid: self.dependency_uid = build_package_uid(self.purl) + def refresh_dependency_uid(self): + self.dependency_uid = build_package_uid(self.purl) + + def update_namespace(self, namespace): + if not namespace: + return + + purl = PackageURL.from_string(self.purl) + new_purl = PackageURL( + type=purl.type, + namespace=namespace, + name=purl.name, + version=purl.version, + qualifiers=purl.qualifiers, + ) + self.purl = new_purl.to_string() + self.refresh_dependency_uid() + @classmethod def from_dependent_package( cls, @@ -1461,6 +1480,42 @@ def get_top_level_resources(cls, manifest_resource, codebase): """ pass + @classmethod + def get_root_resource_for_rootfs(cls, resource, codebase): + + # get the root resource of the rootfs + # take the 1st pattern as a reference + # for instance: '*usr/lib/sysimage/rpm/Packages.db' + base_path_patterns = cls.path_patterns[0] + + # how many levels up are there to the root of the rootfs? + levels_up = len(base_path_patterns.split('/')) + + return get_ancestor( + levels_up=levels_up, + resource=resource, + codebase=codebase, + ) + + @classmethod + def get_distro_identifier_rootfs(cls, root_resource, codebase): + identifier = None + root_path = root_resource.path + os_release_rootfs_paths = ('etc/os-release', 'usr/lib/os-release',) + for os_release_rootfs_path in os_release_rootfs_paths: + os_release_path = '/'.join([root_path, os_release_rootfs_path]) + os_release_res = codebase.get_resource(os_release_path) + if not os_release_res: + continue + + # there can be only one distro + distro = os_release_res.package_data and os_release_res.package_data[0] + if distro: + identifier = distro.get("name") + break + + return identifier + class NonAssemblableDatafileHandler(DatafileHandler): """ @@ -1535,6 +1590,10 @@ def __attrs_post_init__(self, *args, **kwargs): if not self.package_uid: self.package_uid = build_package_uid(self.purl) + def refresh_and_get_package_uid(self): + self.package_uid = build_package_uid(self.purl) + return self.package_uid + def to_dict(self): return super().to_dict(with_details=False) diff --git a/src/packagedcode/rpm.py b/src/packagedcode/rpm.py index e24d94c636d..96a641b89c0 100644 --- a/src/packagedcode/rpm.py +++ b/src/packagedcode/rpm.py @@ -22,7 +22,7 @@ from packagedcode.rpm_installed import collect_installed_rpmdb_xmlish_from_rpmdb_loc from packagedcode.rpm_installed import parse_rpm_xmlish from packagedcode.utils import build_description -from packagedcode.utils import get_ancestor + from scancode.api import get_licenses TRACE = os.environ.get('SCANCODE_DEBUG_PACKAGE_API', False) @@ -143,54 +143,29 @@ def parse(cls, location, package_only=False): package_type=cls.default_package_type, package_only=package_only, ) - # TODO: package_data.namespace = cls.default_package_namespace return package_data @classmethod def assemble(cls, package_data, resource, codebase, package_adder): - # get the root resource of the rootfs - # take the 1st pattern as a reference - # for instance: '*usr/lib/sysimage/rpm/Packages.db' - base_path_patterns = cls.path_patterns[0] - - # how many levels up are there to the root of the rootfs? - levels_up = len(base_path_patterns.split('/')) - - root_resource = get_ancestor( - levels_up=levels_up, - resource=resource, - codebase=codebase, - ) + + root_resource = cls.get_root_resource_for_rootfs(resource, codebase) package = models.Package.from_package_data( package_data=package_data, datafile_path=resource.path, ) - package_uid = package.package_uid - - root_path = root_resource.path - # get etc/os-release for namespace - namespace = None - os_release_rootfs_paths = ('etc/os-release', 'usr/lib/os-release',) - for os_release_rootfs_path in os_release_rootfs_paths: - os_release_path = '/'.join([root_path, os_release_rootfs_path]) - os_release_res = codebase.get_resource(os_release_path) - if not os_release_res: - continue - # there can be only one distro - distro = os_release_res.package_data and os_release_res.package_data[0] - if distro: - namespace = distro.namespace - break + namespace = cls.get_distro_identifier_rootfs(root_resource, codebase) + if namespace: + package.namespace = namespace - package.namespace = namespace + package_uid = package.refresh_and_get_package_uid() # tag files from refs resources = [] missing_file_references = [] # a file ref extends from the root of the filesystem for ref in package.file_references: - ref_path = '/'.join([root_path, ref.path]) + ref_path = '/'.join([root_resource.path, ref.path]) res = codebase.get_resource(ref_path) if not res: missing_file_references.append(ref) @@ -216,8 +191,7 @@ def assemble(cls, package_data, resource, codebase, package_adder): datasource_id=package_data.datasource_id, package_uid=package_uid, ): - if not dep.namespace: - dep.namespace = namespace + dep.update_namespace(namespace) yield dep for resource in resources: @@ -424,19 +398,18 @@ def parse(cls, location, package_only=False): @classmethod def assemble(cls, package_data, resource, codebase, package_adder): - levels_up = len('var/lib/rpmmanifest/container-manifest-2'.split('/')) - root_resource = get_ancestor( - levels_up=levels_up, - resource=resource, - codebase=codebase, - ) + root_resource = cls.get_root_resource_for_rootfs(resource, codebase) package_name = package_data.name package = models.Package.from_package_data( package_data=package_data, datafile_path=resource.path, ) - package_uid = package.package_uid + namespace = cls.get_distro_identifier_rootfs(root_resource, codebase) + if namespace: + package.namespace = namespace + + package_uid = package.refresh_and_get_package_uid() assemblable_paths = tuple(set([ f'*usr/share/licenses/{package_name}/COPYING*', diff --git a/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-get-installed-expected.json b/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-get-installed-expected.json index bdde87d0ea3..1efd8a0ad44 100644 --- a/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-get-installed-expected.json +++ b/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-get-installed-expected.json @@ -1,7 +1,7 @@ [ { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "alpine-baselayout-data", "version": "3.2.0-r22", "qualifiers": { @@ -83,7 +83,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -96,7 +96,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -105,7 +105,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -114,7 +114,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -123,7 +123,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -132,7 +132,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -141,7 +141,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -150,7 +150,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -159,7 +159,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -168,7 +168,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -177,7 +177,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -186,7 +186,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -195,7 +195,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204,16 +204,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" + "purl": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "musl", "version": "1.2.3-r0", "qualifiers": { @@ -295,7 +295,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -308,16 +308,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/musl@1.2.3-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "busybox", "version": "1.35.0-r15", "qualifiers": { @@ -399,7 +399,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -412,7 +412,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -421,7 +421,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -430,7 +430,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -439,7 +439,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -448,7 +448,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -457,16 +457,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/busybox@1.35.0-r15?arch=x86_64" + "purl": "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "alpine-baselayout", "version": "3.2.0-r22", "qualifiers": { @@ -566,7 +566,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -579,7 +579,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -588,7 +588,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -597,7 +597,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -606,7 +606,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -615,7 +615,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -624,7 +624,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -633,7 +633,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -642,7 +642,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -651,7 +651,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -660,7 +660,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -669,16 +669,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" + "purl": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "alpine-keys", "version": "2.4-r1", "qualifiers": { @@ -922,7 +922,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -935,7 +935,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -944,7 +944,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -953,7 +953,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -962,7 +962,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -971,7 +971,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -980,7 +980,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -989,7 +989,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -998,7 +998,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1007,7 +1007,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1016,7 +1016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1025,7 +1025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1034,7 +1034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1043,7 +1043,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1052,7 +1052,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1061,7 +1061,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1070,7 +1070,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1079,7 +1079,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1088,7 +1088,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1097,7 +1097,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1106,7 +1106,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1115,7 +1115,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1124,16 +1124,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64" + "purl": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "ca-certificates-bundle", "version": "20211220-r0", "qualifiers": { @@ -1215,7 +1215,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1228,16 +1228,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libcrypto1.1", "version": "1.1.1q-r0", "qualifiers": { @@ -1328,7 +1328,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1341,7 +1341,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1350,7 +1350,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1359,7 +1359,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1368,7 +1368,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1377,7 +1377,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1386,7 +1386,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1395,7 +1395,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1404,7 +1404,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1413,7 +1413,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1422,16 +1422,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libssl1.1", "version": "1.1.1q-r0", "qualifiers": { @@ -1513,7 +1513,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1526,16 +1526,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "ssl_client", "version": "1.35.0-r15", "qualifiers": { @@ -1605,7 +1605,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1618,16 +1618,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/ssl_client@1.35.0-r15?arch=x86_64" + "purl": "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "zlib", "version": "1.2.12-r1", "qualifiers": { @@ -1709,7 +1709,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1722,16 +1722,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/zlib@1.2.12-r1?arch=x86_64" + "purl": "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "apk-tools", "version": "2.12.9-r3", "qualifiers": { @@ -1801,7 +1801,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1814,7 +1814,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1823,16 +1823,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64" + "purl": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "scanelf", "version": "1.3.4-r0", "qualifiers": { @@ -1902,7 +1902,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1915,16 +1915,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "musl-utils", "version": "1.2.3-r0", "qualifiers": { @@ -1994,7 +1994,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -2007,7 +2007,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2016,7 +2016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2025,7 +2025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2034,7 +2034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2043,16 +2043,16 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libc-utils", "version": "0.7.2-r3", "qualifiers": { @@ -2122,7 +2122,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -2130,6 +2130,6 @@ "alpine_installed_db" ], "resources": [], - "purl": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64" } ] \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-scan-expected.json b/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-scan-expected.json index 36ce68a399e..b8cc210403a 100644 --- a/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-scan-expected.json +++ b/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-scan-expected.json @@ -2,7 +2,7 @@ "packages": [ { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "alpine-baselayout-data", "version": "3.2.0-r22", "qualifiers": { @@ -84,18 +84,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" + "purl": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "musl", "version": "1.2.3-r0", "qualifiers": { @@ -177,18 +177,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/musl@1.2.3-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "busybox", "version": "1.35.0-r15", "qualifiers": { @@ -270,18 +270,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/busybox@1.35.0-r15?arch=x86_64" + "purl": "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "alpine-baselayout", "version": "3.2.0-r22", "qualifiers": { @@ -381,18 +381,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" + "purl": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "alpine-keys", "version": "2.4-r1", "qualifiers": { @@ -636,18 +636,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64" + "purl": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "ca-certificates-bundle", "version": "20211220-r0", "qualifiers": { @@ -729,18 +729,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libcrypto1.1", "version": "1.1.1q-r0", "qualifiers": { @@ -831,18 +831,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libssl1.1", "version": "1.1.1q-r0", "qualifiers": { @@ -924,18 +924,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "ssl_client", "version": "1.35.0-r15", "qualifiers": { @@ -1005,18 +1005,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/ssl_client@1.35.0-r15?arch=x86_64" + "purl": "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "zlib", "version": "1.2.12-r1", "qualifiers": { @@ -1098,18 +1098,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/zlib@1.2.12-r1?arch=x86_64" + "purl": "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "apk-tools", "version": "2.12.9-r3", "qualifiers": { @@ -1179,18 +1179,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64" + "purl": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "scanelf", "version": "1.3.4-r0", "qualifiers": { @@ -1260,18 +1260,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "musl-utils", "version": "1.2.3-r0", "qualifiers": { @@ -1341,18 +1341,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libc-utils", "version": "0.7.2-r3", "qualifiers": { @@ -1422,19 +1422,19 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64" } ], "dependencies": [ { - "purl": "pkg:alpine/alpine-baselayout-data@3.2.0-r22", + "purl": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22", "extracted_requirement": "=3.2.0-r22", "scope": "depend", "is_runtime": true, @@ -1442,13 +1442,13 @@ "is_resolved": true, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/alpine-baselayout-data@3.2.0-r22?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, { - "purl": "pkg:alpine/musl", + "purl": "pkg:alpine/alpine/musl", "extracted_requirement": "=>1.2", "scope": "depend", "is_runtime": true, @@ -1456,13 +1456,13 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/musl?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/musl?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, { - "purl": "pkg:alpine/ca-certificates-bundle", + "purl": "pkg:alpine/alpine/ca-certificates-bundle", "extracted_requirement": null, "scope": "depend", "is_runtime": true, @@ -1470,13 +1470,13 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, { - "purl": "pkg:alpine/scanelf", + "purl": "pkg:alpine/alpine/scanelf", "extracted_requirement": null, "scope": "depend", "is_runtime": true, @@ -1484,13 +1484,13 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/scanelf?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/scanelf?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, { - "purl": "pkg:alpine/musl-utils", + "purl": "pkg:alpine/alpine/musl-utils", "extracted_requirement": null, "scope": "depend", "is_runtime": true, @@ -1498,8 +1498,8 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/musl-utils?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/musl-utils?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" } @@ -1524,7 +1524,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1575,7 +1575,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1584,7 +1584,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1593,7 +1593,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1602,7 +1602,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1611,7 +1611,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1655,7 +1655,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1664,7 +1664,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1673,7 +1673,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1682,7 +1682,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1691,7 +1691,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1707,7 +1707,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1730,7 +1730,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1746,7 +1746,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1755,7 +1755,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1764,7 +1764,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1773,7 +1773,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1782,7 +1782,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1798,7 +1798,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1856,7 +1856,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1870,7 +1870,50 @@ { "path": "alpine-container-layer.tar.xz/etc/os-release", "type": "file", - "package_data": [], + "package_data": [ + { + "type": "linux-distro", + "namespace": "alpine", + "name": "alpine", + "version": "3.16.1", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "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": "etc_os_release", + "purl": "pkg:linux-distro/alpine/alpine@3.16.1" + } + ], "for_packages": [], "scan_errors": [] }, @@ -1879,7 +1922,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1930,7 +1973,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1946,7 +1989,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1955,7 +1998,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1964,7 +2007,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1973,7 +2016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1996,7 +2039,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2005,7 +2048,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2014,7 +2057,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2023,7 +2066,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2046,7 +2089,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2055,7 +2098,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2064,7 +2107,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2080,7 +2123,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2089,7 +2132,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2098,7 +2141,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2107,7 +2150,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2123,7 +2166,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2139,7 +2182,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4302,7 +4345,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4311,7 +4354,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4320,7 +4363,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4329,7 +4372,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4338,7 +4381,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4368,7 +4411,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4447,7 +4490,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4456,7 +4499,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4465,7 +4508,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4509,7 +4552,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4518,7 +4561,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4527,7 +4570,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4536,7 +4579,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4545,7 +4588,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4554,7 +4597,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4577,7 +4620,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4586,7 +4629,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4595,7 +4638,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4674,7 +4717,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4683,7 +4726,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4692,7 +4735,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4701,7 +4744,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4710,7 +4753,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4719,7 +4762,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4728,7 +4771,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4737,7 +4780,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4746,7 +4789,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4755,7 +4798,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4764,7 +4807,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4773,7 +4816,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4782,7 +4825,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4791,7 +4834,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4800,7 +4843,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4809,7 +4852,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4818,7 +4861,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4904,7 +4947,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, diff --git a/tests/packagedcode/data/alpine/rootfs/alpine-rootfs.tar.xz-expected.json b/tests/packagedcode/data/alpine/rootfs/alpine-rootfs.tar.xz-expected.json index 2e3d736fcaf..840bb413b74 100644 --- a/tests/packagedcode/data/alpine/rootfs/alpine-rootfs.tar.xz-expected.json +++ b/tests/packagedcode/data/alpine/rootfs/alpine-rootfs.tar.xz-expected.json @@ -2,7 +2,7 @@ "packages": [ { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "musl", "version": "1.2.2-r7", "qualifiers": { @@ -84,18 +84,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/musl@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/musl@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/musl@1.2.2-r7?arch=x86_64" + "purl": "pkg:alpine/alpine/musl@1.2.2-r7?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "busybox", "version": "1.34.1-r5", "qualifiers": { @@ -177,18 +177,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/busybox@1.34.1-r5?arch=x86_64" + "purl": "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "alpine-baselayout", "version": "3.2.0-r18", "qualifiers": { @@ -297,18 +297,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64" + "purl": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "alpine-keys", "version": "2.4-r1", "qualifiers": { @@ -552,18 +552,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64" + "purl": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "ca-certificates-bundle", "version": "20211220-r0", "qualifiers": { @@ -645,18 +645,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libcrypto1.1", "version": "1.1.1n-r0", "qualifiers": { @@ -765,18 +765,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libssl1.1", "version": "1.1.1n-r0", "qualifiers": { @@ -858,18 +858,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libssl1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libssl1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/libssl1.1@1.1.1n-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/libssl1.1@1.1.1n-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libretls", "version": "3.3.4-r3", "qualifiers": { @@ -951,18 +951,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/libretls@3.3.4-r3?arch=x86_64" + "purl": "pkg:alpine/alpine/libretls@3.3.4-r3?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "ssl_client", "version": "1.34.1-r5", "qualifiers": { @@ -1032,18 +1032,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/ssl_client@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/ssl_client@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/ssl_client@1.34.1-r5?arch=x86_64" + "purl": "pkg:alpine/alpine/ssl_client@1.34.1-r5?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "zlib", "version": "1.2.12-r0", "qualifiers": { @@ -1125,18 +1125,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/zlib@1.2.12-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/zlib@1.2.12-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/zlib@1.2.12-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/zlib@1.2.12-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "apk-tools", "version": "2.12.7-r3", "qualifiers": { @@ -1206,18 +1206,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/apk-tools@2.12.7-r3?arch=x86_64" + "purl": "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "scanelf", "version": "1.3.3-r0", "qualifiers": { @@ -1287,18 +1287,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/scanelf@1.3.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/scanelf@1.3.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/scanelf@1.3.3-r0?arch=x86_64" + "purl": "pkg:alpine/alpine/scanelf@1.3.3-r0?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "musl-utils", "version": "1.2.2-r7", "qualifiers": { @@ -1368,18 +1368,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64" + "purl": "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64" }, { "type": "alpine", - "namespace": null, + "namespace": "alpine", "name": "libc-utils", "version": "0.7.2-r3", "qualifiers": { @@ -1449,19 +1449,19 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64" } ], "dependencies": [ { - "purl": "pkg:alpine/ca-certificates-bundle", + "purl": "pkg:alpine/alpine/ca-certificates-bundle", "extracted_requirement": null, "scope": "depend", "is_runtime": true, @@ -1469,13 +1469,13 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, { - "purl": "pkg:alpine/musl", + "purl": "pkg:alpine/alpine/musl", "extracted_requirement": "=>1.2", "scope": "depend", "is_runtime": true, @@ -1483,13 +1483,13 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/musl?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/musl?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, { - "purl": "pkg:alpine/ca-certificates-bundle", + "purl": "pkg:alpine/alpine/ca-certificates-bundle", "extracted_requirement": null, "scope": "depend", "is_runtime": true, @@ -1497,13 +1497,13 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, { - "purl": "pkg:alpine/scanelf", + "purl": "pkg:alpine/alpine/scanelf", "extracted_requirement": null, "scope": "depend", "is_runtime": true, @@ -1511,13 +1511,13 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/scanelf?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/scanelf?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, { - "purl": "pkg:alpine/musl-utils", + "purl": "pkg:alpine/alpine/musl-utils", "extracted_requirement": null, "scope": "depend", "is_runtime": true, @@ -1525,8 +1525,8 @@ "is_resolved": false, "resolved_package": {}, "extra_data": {}, - "dependency_uid": "pkg:alpine/musl-utils?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "dependency_uid": "pkg:alpine/alpine/musl-utils?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" } @@ -1551,7 +1551,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1602,7 +1602,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1611,7 +1611,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1620,7 +1620,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1629,7 +1629,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1638,7 +1638,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1682,7 +1682,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1691,7 +1691,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1700,7 +1700,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1709,7 +1709,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1718,7 +1718,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1734,7 +1734,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1757,7 +1757,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1773,7 +1773,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1782,7 +1782,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1791,7 +1791,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1800,7 +1800,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1809,7 +1809,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1825,7 +1825,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1883,7 +1883,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1897,7 +1897,50 @@ { "path": "alpine-rootfs/etc/os-release", "type": "file", - "package_data": [], + "package_data": [ + { + "type": "linux-distro", + "namespace": "alpine", + "name": "alpine", + "version": "3.15.4", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "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": "etc_os_release", + "purl": "pkg:linux-distro/alpine/alpine@3.15.4" + } + ], "for_packages": [], "scan_errors": [] }, @@ -1906,7 +1949,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1957,7 +2000,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1973,7 +2016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1982,7 +2025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1991,7 +2034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2000,7 +2043,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2009,7 +2052,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2018,7 +2061,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2027,7 +2070,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2036,7 +2079,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2059,7 +2102,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2075,7 +2118,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2084,7 +2127,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2093,7 +2136,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2109,7 +2152,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2125,7 +2168,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4297,7 +4340,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4306,7 +4349,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4315,7 +4358,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4324,7 +4367,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libssl1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libssl1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4333,7 +4376,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/zlib@1.2.12-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/zlib@1.2.12-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4363,7 +4406,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4442,7 +4485,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4451,7 +4494,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4460,7 +4503,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4504,7 +4547,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4513,7 +4556,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4522,7 +4565,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4531,7 +4574,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4540,7 +4583,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/scanelf@1.3.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/scanelf@1.3.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4549,7 +4592,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/ssl_client@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/ssl_client@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4572,7 +4615,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4581,7 +4624,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4590,7 +4633,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4599,7 +4642,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4678,7 +4721,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4687,7 +4730,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4696,7 +4739,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4705,7 +4748,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4714,7 +4757,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4723,7 +4766,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4732,7 +4775,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4741,7 +4784,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4750,7 +4793,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4759,7 +4802,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4768,7 +4811,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4777,7 +4820,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4786,7 +4829,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4795,7 +4838,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4804,7 +4847,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4813,7 +4856,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4822,7 +4865,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4908,7 +4951,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, diff --git a/tests/packagedcode/data/debian/debian-container-layer.tar.xz b/tests/packagedcode/data/debian/debian-container-layer.tar.xz index 209dd8c4313dea7bc01b7383bb40babbe8458bfc..1844ac80f0238b4de325222a695ee52ba999a805 100644 GIT binary patch literal 3940 zcmV-q51a7)H+ooF000E$*0e?f03iVu0001VFXf})PyY`jT>vtj2!;^kl(S06!YZvS z;d|DJMv;K8z~tfSgx8Wt?5F&5Wb?&R6ZJs9AX{fHk&=C~Zoq%$bi8n^EWymEAY8tv zS08t!eF2ESmcO9UNOQPmk7ps+6oqP|w3E_|QnezBJ1i+=jozhBOlBaWt+@ug(Hm3u z+rv{JupWmZs>`H|xTc4t;a_N!QcAX)5Uo~SahoXU^u%s~jigjh01?K|m`#R(fz{Ds z$F}?2Ujd_*5*PW>aTBjy4i%nWy}KN6;pYd0$D3WM3cEXoC;}_;g&POTRIdP?4O)Z^ z#$wy?6u~B%o|DJ+uRwMH@!Llb%L#-Iz?iX54PBnTCi#cB%TUcB{i{B>>8M9R7_y6sH+>7 zTSmtTfEONugB8n5&`;;Ei2^^l!0*u1V_%RpBftRg;fUL6n8ySbreY-V&q4a9WN0x~ z>WgdoR_r78$Pb2##47H7-_b4dqe>sSDMZj$G!T*H)*{G)vrQv)BhBgvp4IQpWh91n zH*4-pt<-pGwgrYe5&&rYHgE=8a~w?m)6`uNW2@c16}r}l-fPo3GN2MV;G~^^vG3)L z`CfxbxHFb&u_4M+bzdvL;R%6MFZHP%aB%7i9zcg zROXW=^u`oT8fCj{bJ%0%sE5>l48CS&+_bl+t%O4~OjJuYMVdf#Xp1BQF*~zIUwv02 zDg=qNXFH$b_<}C8^`hE}V;VWS47sRwvreiG0l#VS`!07O4MIW`Q2htGLAHq@<>U)n zFIpg+VG6>yP6&j^9Yyyj2WcccRMu{ImHgCwQ0mRz)3Y5yXSf$29Ho8riHzmgV3&zI zaUZ&4_5wvMIK7VFysRH=P)@ChsUN!G1)Qkg^<`zTmJHyVyI|xt&GQYMTpD1&*oYdM zHLOdt(J6FL=9+9?h2>c?O{ap~01TrR+tPf4zu5!qzxY7HT6WO;Vyz)54sYAn zLQTuQ%<4`~hG^M4=wH3Ih3$nSeL6)-JyoDe(b<}l{KCd>+t>(sQLCA?S@y4+tj!{- z1Q5M5Lh@lkDwDBoB9DsD33)>wxB~RUMQ_TACVc*y-O*nyq4$@27PHEtDd!0^)B1u~ zA`4{r%g)~mL|j(Hnj+pUjn4mGL3h${s}oD5lF7%*=|mNtpWK~M?S~Y^e6(fLEWg#- z4FkjFc;z`l2N_9J_m56xWM0Zui-+(4X1^q(;Sp*8;Uqzq?089|>`Dyf0t|}1+DAd^o3fPZ* z*kt|s4`AU8p2fJR?Qnw}u4dA0U!OE9Z|9g}9x?Y;^ie2JKA^Eh5K>z;dH9N z;(mF41}fUo{ya-sdH#^Y)fTf9^PG!k135Pvq5NOhyHGi9s>wKVQDfz>i5BE$zK$`X z0o$4T!d0F^qO@02 z@dtVAtLe$CiLYLog6G<`B}15}_bc@K)kL_&jcR^JMqnfGPV8570 z+_hV}d+z;5(gQhX!mS8V4L*UD;IU5rAFRz9ne1Z(?zY0RLb7rez) z(_DQ@gw&lcVt>DJ)d1zd{Cm~zG>(Vc30K2T;$1}zX8?+?ANHvKSh;M}s3T~lvakUL zg{^l(NDT_^`fuJGi=+y_8BZvfqe7RzY6zv)@rq#Vq^%aXJ%&CsaZYVCqADfYX_{9~3uhVxRDs+Dp+67$!_Y6qSjmv&yDe-s`pr}a zCv@acIOI_v*5`P?Fzv9)hxWmF?VMOE#=-^+wKCQX1^FZ=xL4MQk@P24kmnSEncPQD z@#QAGX{?l%>LMxe@Q6oja%tw}5jTLrPT7#eG1HMpPN!<%0mV=lWk-WqG(kl&SUKe2 zu_rQR65nl}#R#!pp;E*$_biRzK4`||ns-!rM20rws{6QRm9NUwQpobROONv8w^6E) zH9us~C!n9P)`@aI3-$f1urilD8~gZ>+v%=np@MslfJp=a8}={W9GnN_URZWII?rmK zFy)(@2u#eB-6>18-$1%;BC*P3p@Z1qwO4%@D=kHkj&@oYCu~hd1EtX4OX!XFx@Q7= zr62*8-Uv}DX=_a?S<`rsRV zV&A?X6Zrn#mz)CyLDft`bu=$52brtG;hlM55TO&_E{%!ONB}Pz8#Tn&61I%xa9~!# zz73UIy#$mn311l;G0jEj@Oe!sg%ZE6Qgol0ua<3$h?4j&P|wn$6g0y>jLt#i*WF8m za?lw>1t7rD7Kp@gV%h@#ukQcWphpEIaqN9X>&O=#tArwO85yFL3JsQaf_RZL&)dP> z@B296s$Ug59?7QQd&iVD+I_A@o-#k-KSMq9GhggeQ!G-(5bYh%1vVHP8PXn>)Q~?m zZ2!T(!u9}mvncwKJx<*|+C8?xj)fuUWJL9OS26{x(vNCF(N_} zp&76h#I#)hYB<{b0?WIL&}JkGi!3#}D+}*h$0$K8B0z^uT7DAgJ%MaPex|Zou82Nv zxFYU6)QY|C+|>=yIy)GIEBoqPrJ0diOUa?uxEDRE*27;Jg+bT)Ez0bo@Qw5a!ft~= z*D6U77h8bH&dF7hy_WY7NX6H{A)?@Dxo~?8bZ9wNAW`Z~<0(K{0l;<@zRtG{oUX5Le?}`L&&3C~;L0o)zVM4l9Md+Oy zSFH1&5{VMSD9?qk3ykloqdJ?u*fAIk$!v@>Witm(*Tm48JxU)C)x6gnTziL1cINOm zwix4PAPq2ou`JC(W%B4mWb;hzf*`CyEd&AD&>{#sa=oRMSX7n*;IhQ zcw`p4?{o?H`&bdsAh1eQuB3P;6~OmXBOLMn%`$S+J+hBFat2WMdO61{JZczw(CCL0 zk%ny?>6=@)qCg4A5|Li@`)OONSoZh)Ly%8Kw<8$26gq|eh)pH;UtbhIsm=PPX4t?% z5?URF=9Vmw@i=t`V#?#$xxv4kFh+0<-Aoz2NQ_H7qFTjGTz!V;kdcEB9zGx*KT}R`R$o$YW(+|j#G z7H>Lb#6cK|{```Pm$*Pz0R@wUg(fx}(+M>V8Fe^1kL|SJo;-3l`#vAX)?}vZ7@uKy zXhA}nZ8z;kjO+raf8;+0kfNhsh#1~aQl+Yi(-3(w5}o}cq#i9uIcX$VvBvJm;rAs; zcaP5!aWO;kAEvu1Sn;>hwF6`&k{;G$gfbadt=)7K;Lz#(SBEh}8^FYRVF9vQ(x7CvA>LLQ;cQ+ZAz#U4i09Zr zE_%9f6V@-bF$VqeRE#gVCr|-yJ5a>}*9zU~ds79~adE=;)OHv*SG9hU=;qmq5|nuf41zF>K=05yM< zzZQWe>0rGAKG*I#OzOZwLHC`zD?ugC;mu&)KZES1Ha$Wb4suIc&ZQ;5S>Y>Ga+8gf@3^TUv z(8r3Z$;Y>|MK?SO>HG^Qd-~t=D49R=^3*VDrbrNOQlxEPOzqe(EYARjBhNPlp4+Is zu8#yL&6-_du6oxl8?Wrt_ncGl5)?Pt;7%fInwEX$~*@Cect&_jx}Ozyl3kBG;d)h zpHXksk#P_QrTxB{tUB+}@Az^zHx(=clfd#u6FPU9d5DR81TrRr#U3HBR^swBmRSnk z&+7)x;|gnx4cj_kI6JL_>QfM3MQ9NB&(LR;iznH>*GcVgYv_q%8Lob+)1*EN$i`v_uYW${^n9iSTT+NKVnb{T9sB<3D={r*!~KN zlpOmWydSuFbMB|7eyvh!jDT(>wy)=|>3*<<;ulV`yp}Gu>`lBhBh)|8h!PKGO>V2N zz=S*ioRxuYgxEGZHwcC6O?fsOeT!`FQMxh3I5L%SwlP|z;YrfMHW<1fv(J&5Eb>)NFQKV6#H+2KR?2uyWr5fUGb>yF0uBh432?7wM#(aB`ef4V}X;ehd zacfN35Dmxv7MPKaQ?jqB?$+U>E-V_3W>uzZ8q>^cAJp9DTpj$zz^`M^e+-(?W#!48 zedVQd3v-^TM|6FYy(HC4|Q(@t)00wV_uWu3A5%x7c5)q~J7G zyoZp=fgNT$FJmV3y~KXxwuAfgL>=5+(>4eCD;J5w+FI8w>Z96G=J9u?2V3g@ug4ax z!z`-El9*PAcyf&>ft~@EQ1W1s*KiV;xj;yJbOVP~TJoS)jdkjPzI_4MroF0rZ)`1l z>bBP!3btr{QI;t2KS5$o0wF*<7#M9w!shoTTaS#uE=@Sd)9;m5Jinr@sz?=V34`|? zN5I0|fJ&3d3vvQZOBGt zH(x+lkGk`KF!PQWyq%N2KQ(53nwho#whIz+aTXI=S3d8nk9{bqsjI)wUrJv31GCVs zI(6s}QYp-N7r-vzS8?H#f9 zp&+agP{Xk8I&V->MCl$7)2cgBGf?9^5V!Zn1Kgk_xJXHZyKHBynbOJ!Lk;V~ zmU~?Zn5wX)UnDrEhAI2C5GiuFQ+BLH^m0cUXneC}QOtw?sVm^slKQ&k6co#CeJn)2 z+$PPUmkRs7+U*Y}Cc7Xxz|ly_J?LW5M@PJyv$hk63{IHnt63V)eVOk$;x?rX(~AF{b>}Ue2dxH)pW{a(IesGrwIoS0HMY_V{(0I zJmqR}rr@jJLK%lr4+fllP_Hm;RJJ3&#SxJgQc3c=;?Nv*jGh|~a|G6CoFC;tMp5j{ zkZac}dcBx{v3keE1z=IJlSq?W$;zo{=AJKqK7H*thVhd$fJv9~#a?XndoZsi@DL^; zj79j1irU`(9?i-wzKi|$o zJ=1tJ>P~LIFspYBosgIn3N`5iWD9io4v}mFR1$1$PZea0efRwN5=uvVdJ}7r8)rzs zMjQQ^cUhD1o&u;mF7hbr`fS2+=pQ4TEQ96UN%NY8$6uc6Tif7>)tYg!9m`3YB5yQc zM^i%ZB1m=|>nO2rO40XG@PY7sgY{AaoS9HP_y8G#rFRw?t|>M$8cLp(sGIe}V+eRG zpt$EY@efOH#KCDU9F&0M>|8a$3|pQNP)2>J?I*tmFgpz2Wi zm1+(cjYF83f(;#(eP(UkGYjF7hyYD?qn$t`M+(^>V--tEN|{0pPaW@uVwH0QrNPVT z`s3YgvGhVudUygPm*z>z{ObSiAV^KKHYJ)G#oK{DJi&l?P?C4i>HB-f=7zq8BhbL_ zN(nMk-C{q75;EGa>ClYrrn(kxHW=vj#GCiUB^h~i-nWO|=NWr*Gs{`bd{1bLh#XP| zciD!~2K4BvUAA{bT7^1nIp)oPoH;%(NNn|HzTGGH{@^}1z;rjlP|>Wf?3Tz`4~9>f zDh%^aaOZ3yXLneCb05X+DaGlVby|Q~`6Wm;u!zm&NG~4&9)8SF^vAbFl~_MdQXGEb zQz`T3OSD{55?kCS*Rw;5;rQSAig07_Gn7tw4%I$bbi)-OTC~+~Rtx%$bb`khj?nJ| zv14=1?AiA%+|T>-v{*xVSbU92w9A%5uj!E6eBrddYbwe7q{3OeTJD=i& z<_icCdPr>yo& zF~gfF|3u4)W;lD#og$jq#cV)agpTy3T+8^UP8xjHjh%;BIxe191d;%w2{C8cKF|xM zlvn)YUiN>?%cThX9N?2M8TYUw#oRe__(l**sDfRr29McH%Q$iVJGHLD(J2$#j31vz z5=fL4exe(x|Hns}`)Ps3^5tv3i~Uhs3KBFVKbISzP_?;y^laV=p_+GF6J9+KRJsp= zAw-vm)f&0JPJHVer6Ap2nTK zmi==1)eU&9@sKRMJrabnyXp)vfI+xmF-?v5B1<>={|&BcB~0VbtWd{tEn{`OM7WxV zvYY`8Er74L$Ya!ivD4Sr!b=w$KNC{*5;qE-a==(XEb00w@1@0A|87Ku7}k2p1Tdc% zV|Xeb(s7Bbd7kD+&N>y&uq;H-5M|E@PX%6Hav%Ko$M!jDIksI0B^oHHbfcAM2;u*% zy@Bn_#0k8;MiW3(W zzZBl@t}J9jwYS_)XhbBzN$Oxt92s`zf}PeryP83^oL|{E^%0x->l?Dh1JP^W?Cf3- zCv?TAfAvOVZ=BY787}H{Ocx&KoSg0pNL9~p?@5fjH|W{tj(?8c6Xt_DSlxB(Feh!% zM2hX!CN%1&rwg4V@TmgCZb)-M0l&^9h`H39->OjH-wqa^jsr*3n+6sQ zbd>XWcLX}EBWJVbn>1YB(Z)7L7E}ojWPorxPZh}D7|UCft`cX`$0GD->&Iq~9|SE~w#Qtg2QB8*GG+;b#mcfQXC;;X3$w|*6f(k}P94;)Eq ziGkfATGcUz?^ts41GS}t%=j}zK%5A-@U`^}>e8^^9Ic+SdY+jQz7Yp#L$74Q9aFAS zmIeyA!U$sZE!@(aXypOUBj2zTakrxw&lBR{J!qw^sh;keAnQ-2*4&DSSq-ABI4app zim)`Cs&2)qzepQagl~tEzkEB9#7OKrxt=SuPA~D6cF{7zCiz=apPuqdK6tUcSItM; zP<;D_d01P1HU8r}f*<*wIZv}=&^GQW=tir%__Gfm9rx6MoMYr$ zy-AlR0Chi?8P}qMVPDozaEfaGY=F#1^!8A&4}U{*GUZHM{~XPCNQx+{txz$3x@3r>-s*{?D@0VXvFPEZlrNZd|!zYLcPb+>prP zmIjT0`zOevscDo9K4mjvhj+HeW-Kcg&jXlxD9uX~3``n$x?MHI&eBOqn~$xtId^Mk zOqyaQ4IXCRgu9?2?F)lV`(Qq$f^#o6e%}+2cJ0auwzqoY zLetP9UTfDpamiZoLvF*QTr!L!nG1rCKWqezX|V&{UAuH?S`%^K+1pJ2Kc))nV@P5Y z@qx=6=1@(^7MgTlDD}A#NKD@Q-J{$uSrOD`Dav)0d>mUKb|Tv^LXWrX-bC&ZXBMYI zwY2b6YD+IH)o6eOp5`!NR`TOfE$S*{qZAw7^7KAV!~W zTA@)8%aIP#(6&)OXN=$Sy&lEA2~A^W4TK{p_KyTB$A#o#Ob!cNgSy&ANRP+8d>`O0 zZJlJIrNXrvnF{?G%-tYO8Kj1e5qL8H!O}OF03sA=U1ZT9_rdp;0b~MhgPzOB+2kp( qZSDX70002442(fmmZd-d0f8QXpaB3`;8WzW#Ao{g000001X)@;nv9+R 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 5916eabe98b..8edc71fb05c 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 @@ -352,7 +352,50 @@ { "path": "debian-container-layer.tar.xz/etc/os-release", "type": "file", - "package_data": [], + "package_data": [ + { + "type": "linux-distro", + "namespace": "debian", + "name": "ubuntu", + "version": "22.04", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "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": "etc_os_release", + "purl": "pkg:linux-distro/debian/ubuntu@22.04" + } + ], "for_packages": [], "scan_errors": [] }, diff --git a/tests/packagedcode/data/rpm_installed/end-to-end/bdb-fedora-rootfs.tar.xz-expected.json b/tests/packagedcode/data/rpm_installed/end-to-end/bdb-fedora-rootfs.tar.xz-expected.json index 60cd1323a41..c6d7a7a2794 100644 --- a/tests/packagedcode/data/rpm_installed/end-to-end/bdb-fedora-rootfs.tar.xz-expected.json +++ b/tests/packagedcode/data/rpm_installed/end-to-end/bdb-fedora-rootfs.tar.xz-expected.json @@ -2,7 +2,7 @@ "packages": [ { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "fedora-modular-repos", "version": "26", "qualifiers": { @@ -263,18 +263,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/fedora-modular-repos@26?arch=noarch" + "purl": "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "setup", "version": "2.10.5", "qualifiers": { @@ -373,18 +373,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/setup@2.10.5?arch=noarch" + "purl": "pkg:rpm/fedora/setup@2.10.5?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "basesystem", "version": "11", "qualifiers": { @@ -444,18 +444,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/basesystem@11?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/basesystem@11?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/basesystem@11?arch=noarch" + "purl": "pkg:rpm/fedora/basesystem@11?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "tzdata", "version": "2017b", "qualifiers": { @@ -17168,18 +17168,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/tzdata@2017b?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/tzdata@2017b?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/tzdata@2017b?arch=noarch" + "purl": "pkg:rpm/fedora/tzdata@2017b?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "glibc-minimal-langpack", "version": "2.25", "qualifiers": { @@ -17269,18 +17269,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/glibc-minimal-langpack@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/glibc-minimal-langpack@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/glibc-minimal-langpack@2.25?arch=x86_64" + "purl": "pkg:rpm/fedora/glibc-minimal-langpack@2.25?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "glibc", "version": "2.25", "qualifiers": { @@ -17787,18 +17787,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/glibc@2.25?arch=x86_64" + "purl": "pkg:rpm/fedora/glibc@2.25?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "bash", "version": "4.4.12", "qualifiers": { @@ -18806,18 +18806,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/bash@4.4.12?arch=x86_64" + "purl": "pkg:rpm/fedora/bash@4.4.12?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "pcre", "version": "8.40", "qualifiers": { @@ -18925,18 +18925,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/pcre@8.40?arch=x86_64" + "purl": "pkg:rpm/fedora/pcre@8.40?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "zlib", "version": "1.2.11", "qualifiers": { @@ -19035,18 +19035,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/zlib@1.2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/zlib@1.2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/zlib@1.2.11?arch=x86_64" + "purl": "pkg:rpm/fedora/zlib@1.2.11?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nspr", "version": "4.14.0", "qualifiers": { @@ -19106,18 +19106,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nspr@4.14.0?arch=x86_64" + "purl": "pkg:rpm/fedora/nspr@4.14.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libgpg-error", "version": "1.25", "qualifiers": { @@ -19405,18 +19405,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libgpg-error@1.25?arch=x86_64" + "purl": "pkg:rpm/fedora/libgpg-error@1.25?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "bzip2-libs", "version": "1.0.6", "qualifiers": { @@ -19488,18 +19488,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/bzip2-libs@1.0.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/bzip2-libs@1.0.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/bzip2-libs@1.0.6?arch=x86_64" + "purl": "pkg:rpm/fedora/bzip2-libs@1.0.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libcap", "version": "2.25", "qualifiers": { @@ -19625,18 +19625,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libcap@2.25?arch=x86_64" + "purl": "pkg:rpm/fedora/libcap@2.25?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libuuid", "version": "2.29.1", "qualifiers": { @@ -19708,18 +19708,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libuuid@2.29.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libuuid@2.29.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "popt", "version": "1.16", "qualifiers": { @@ -20097,18 +20097,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/popt@1.16?arch=x86_64" + "purl": "pkg:rpm/fedora/popt@1.16?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "gmp", "version": "6.1.2", "qualifiers": { @@ -20222,18 +20222,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/gmp@6.1.2?arch=x86_64" + "purl": "pkg:rpm/fedora/gmp@6.1.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "chkconfig", "version": "1.10", "qualifiers": { @@ -21088,18 +21088,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/chkconfig@1.10?arch=x86_64" + "purl": "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libunistring", "version": "0.9.7", "qualifiers": { @@ -21222,18 +21222,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libunistring@0.9.7?arch=x86_64" + "purl": "pkg:rpm/fedora/libunistring@0.9.7?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "elfutils-libelf", "version": "0.169", "qualifiers": { @@ -21383,18 +21383,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/elfutils-libelf@0.169?arch=x86_64" + "purl": "pkg:rpm/fedora/elfutils-libelf@0.169?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libacl", "version": "2.2.52", "qualifiers": { @@ -21475,18 +21475,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libacl@2.2.52?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libacl@2.2.52?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libacl@2.2.52?arch=x86_64" + "purl": "pkg:rpm/fedora/libacl@2.2.52?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "sed", "version": "4.4", "qualifiers": { @@ -21981,18 +21981,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/sed@4.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/sed@4.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/sed@4.4?arch=x86_64" + "purl": "pkg:rpm/fedora/sed@4.4?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libblkid", "version": "2.29.1", "qualifiers": { @@ -22082,18 +22082,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libblkid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libblkid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libblkid@2.29.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libblkid@2.29.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libmount", "version": "2.29.1", "qualifiers": { @@ -22165,18 +22165,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libmount@2.29.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libmount@2.29.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libxml2", "version": "2.9.4", "qualifiers": { @@ -22320,18 +22320,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libxml2@2.9.4?arch=x86_64" + "purl": "pkg:rpm/fedora/libxml2@2.9.4?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libassuan", "version": "2.4.3", "qualifiers": { @@ -22481,18 +22481,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libassuan@2.4.3?arch=x86_64" + "purl": "pkg:rpm/fedora/libassuan@2.4.3?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libcap-ng", "version": "0.7.8", "qualifiers": { @@ -22573,18 +22573,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libcap-ng@0.7.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libcap-ng@0.7.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libcap-ng@0.7.8?arch=x86_64" + "purl": "pkg:rpm/fedora/libcap-ng@0.7.8?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "lz4-libs", "version": "1.7.5", "qualifiers": { @@ -22674,18 +22674,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/lz4-libs@1.7.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/lz4-libs@1.7.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/lz4-libs@1.7.5?arch=x86_64" + "purl": "pkg:rpm/fedora/lz4-libs@1.7.5?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "expat", "version": "2.2.0", "qualifiers": { @@ -22784,18 +22784,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/expat@2.2.0?arch=x86_64" + "purl": "pkg:rpm/fedora/expat@2.2.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "p11-kit-trust", "version": "0.23.5", "qualifiers": { @@ -22855,18 +22855,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/p11-kit-trust@0.23.5?arch=x86_64" + "purl": "pkg:rpm/fedora/p11-kit-trust@0.23.5?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "openssl-libs", "version": "1.1.0e", "qualifiers": { @@ -22965,18 +22965,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64" + "purl": "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libmetalink", "version": "0.1.3", "qualifiers": { @@ -23066,18 +23066,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libmetalink@0.1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libmetalink@0.1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libmetalink@0.1.3?arch=x86_64" + "purl": "pkg:rpm/fedora/libmetalink@0.1.3?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "gobject-introspection", "version": "1.52.1", "qualifiers": { @@ -23164,18 +23164,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64" + "purl": "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libfdisk", "version": "2.29.1", "qualifiers": { @@ -23247,18 +23247,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libfdisk@2.29.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libfdisk@2.29.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "cracklib", "version": "2.9.6", "qualifiers": { @@ -23753,18 +23753,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/cracklib@2.9.6?arch=x86_64" + "purl": "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libpwquality", "version": "1.3.0", "qualifiers": { @@ -24322,18 +24322,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libpwquality@1.3.0?arch=x86_64" + "purl": "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "mpfr", "version": "3.1.5", "qualifiers": { @@ -24483,18 +24483,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/mpfr@3.1.5?arch=x86_64" + "purl": "pkg:rpm/fedora/mpfr@3.1.5?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "gnutls", "version": "3.5.12", "qualifiers": { @@ -24761,18 +24761,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/gnutls@3.5.12?arch=x86_64" + "purl": "pkg:rpm/fedora/gnutls@3.5.12?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libksba", "version": "1.3.5", "qualifiers": { @@ -24937,18 +24937,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libksba@1.3.5?arch=x86_64" + "purl": "pkg:rpm/fedora/libksba@1.3.5?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nss-softokn", "version": "3.30.2", "qualifiers": { @@ -25065,18 +25065,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nss-softokn@3.30.2?arch=x86_64" + "purl": "pkg:rpm/fedora/nss-softokn@3.30.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nss", "version": "3.30.2", "qualifiers": { @@ -25202,18 +25202,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nss@3.30.2?arch=x86_64" + "purl": "pkg:rpm/fedora/nss@3.30.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nss-tools", "version": "3.30.2", "qualifiers": { @@ -25501,18 +25501,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nss-tools@3.30.2?arch=x86_64" + "purl": "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libsss_idmap", "version": "1.15.2", "qualifiers": { @@ -25584,18 +25584,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libsss_idmap@1.15.2?arch=x86_64" + "purl": "pkg:rpm/fedora/libsss_idmap@1.15.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "ustr", "version": "1.0.4", "qualifiers": { @@ -25703,18 +25703,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/ustr@1.0.4?arch=x86_64" + "purl": "pkg:rpm/fedora/ustr@1.0.4?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "shadow-utils", "version": "4.3.1", "qualifiers": { @@ -28657,18 +28657,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/shadow-utils@4.3.1?arch=x86_64" + "purl": "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "lzo", "version": "2.08", "qualifiers": { @@ -28776,18 +28776,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/lzo@2.08?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/lzo@2.08?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/lzo@2.08?arch=x86_64" + "purl": "pkg:rpm/fedora/lzo@2.08?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "keyutils-libs", "version": "1.5.10", "qualifiers": { @@ -28883,18 +28883,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/keyutils-libs@1.5.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/keyutils-libs@1.5.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/keyutils-libs@1.5.10?arch=x86_64" + "purl": "pkg:rpm/fedora/keyutils-libs@1.5.10?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libsigsegv", "version": "2.11", "qualifiers": { @@ -29011,18 +29011,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libsigsegv@2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libsigsegv@2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libsigsegv@2.11?arch=x86_64" + "purl": "pkg:rpm/fedora/libsigsegv@2.11?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "krb5-libs", "version": "1.15.1", "qualifiers": { @@ -29229,18 +29229,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/krb5-libs@1.15.1?arch=x86_64" + "purl": "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "openldap", "version": "2.4.44", "qualifiers": { @@ -29393,18 +29393,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/openldap@2.4.44?arch=x86_64" + "purl": "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libcurl", "version": "7.53.1", "qualifiers": { @@ -29476,18 +29476,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libcurl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libcurl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libcurl@7.53.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libcurl@7.53.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "rpm-plugin-selinux", "version": "4.13.0.1", "qualifiers": { @@ -29559,18 +29559,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/rpm-plugin-selinux@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/rpm-plugin-selinux@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/rpm-plugin-selinux@4.13.0.1?arch=x86_64" + "purl": "pkg:rpm/fedora/rpm-plugin-selinux@4.13.0.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "rpm", "version": "4.13.0.1", "qualifiers": { @@ -30416,18 +30416,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/rpm@4.13.0.1?arch=x86_64" + "purl": "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "npth", "version": "1.3", "qualifiers": { @@ -30544,18 +30544,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/npth@1.3?arch=x86_64" + "purl": "pkg:rpm/fedora/npth@1.3?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "gpgme", "version": "1.9.0", "qualifiers": { @@ -30699,18 +30699,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/gpgme@1.9.0?arch=x86_64" + "purl": "pkg:rpm/fedora/gpgme@1.9.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libdnf", "version": "0.9.2", "qualifiers": { @@ -30809,18 +30809,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libdnf@0.9.2?arch=x86_64" + "purl": "pkg:rpm/fedora/libdnf@0.9.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "sssd-client", "version": "1.15.2", "qualifiers": { @@ -30973,18 +30973,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/sssd-client@1.15.2?arch=x86_64" + "purl": "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "gpg-pubkey", "version": "64dab85d", "qualifiers": {}, @@ -31042,18 +31042,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/gpg-pubkey@64dab85d?uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/gpg-pubkey@64dab85d?uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/gpg-pubkey@64dab85d" + "purl": "pkg:rpm/fedora/gpg-pubkey@64dab85d" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libgcc", "version": "7.1.1", "qualifiers": { @@ -31179,18 +31179,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libgcc@7.1.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libgcc@7.1.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "fedora-modular-release", "version": "26", "qualifiers": { @@ -31352,18 +31352,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/fedora-modular-release@26?arch=noarch" + "purl": "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "filesystem", "version": "3.2", "qualifiers": { @@ -185200,18 +185200,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/filesystem@3.2?arch=x86_64" + "purl": "pkg:rpm/fedora/filesystem@3.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "publicsuffix-list-dafsa", "version": "20170424", "qualifiers": { @@ -185271,18 +185271,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/publicsuffix-list-dafsa@20170424?arch=noarch" + "purl": "pkg:rpm/fedora/publicsuffix-list-dafsa@20170424?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "ncurses-base", "version": "6.0", "qualifiers": { @@ -185363,18 +185363,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/ncurses-base@6.0?arch=noarch" + "purl": "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "glibc-common", "version": "2.25", "qualifiers": { @@ -185512,18 +185512,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/glibc-common@2.25?arch=x86_64" + "purl": "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "ncurses-libs", "version": "6.0", "qualifiers": { @@ -185766,18 +185766,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/ncurses-libs@6.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/ncurses-libs@6.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/ncurses-libs@6.0?arch=x86_64" + "purl": "pkg:rpm/fedora/ncurses-libs@6.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libsepol", "version": "2.6", "qualifiers": { @@ -185837,18 +185837,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libsepol@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libsepol@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libsepol@2.6?arch=x86_64" + "purl": "pkg:rpm/fedora/libsepol@2.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libselinux", "version": "2.6", "qualifiers": { @@ -185920,18 +185920,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libselinux@2.6?arch=x86_64" + "purl": "pkg:rpm/fedora/libselinux@2.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "info", "version": "6.3", "qualifiers": { @@ -186039,18 +186039,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/info@6.3?arch=x86_64" + "purl": "pkg:rpm/fedora/info@6.3?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nss-util", "version": "3.30.2", "qualifiers": { @@ -186110,18 +186110,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nss-util@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nss-util@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nss-util@3.30.2?arch=x86_64" + "purl": "pkg:rpm/fedora/nss-util@3.30.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "xz-libs", "version": "5.2.3", "qualifiers": { @@ -186202,18 +186202,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/xz-libs@5.2.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/xz-libs@5.2.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/xz-libs@5.2.3?arch=x86_64" + "purl": "pkg:rpm/fedora/xz-libs@5.2.3?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libdb", "version": "5.3.28", "qualifiers": { @@ -186303,18 +186303,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libdb@5.3.28?arch=x86_64" + "purl": "pkg:rpm/fedora/libdb@5.3.28?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libcrypt", "version": "2.25", "qualifiers": { @@ -186443,18 +186443,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libcrypt@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libcrypt@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libcrypt@2.25?arch=x86_64" + "purl": "pkg:rpm/fedora/libcrypt@2.25?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libcom_err", "version": "1.43.4", "qualifiers": { @@ -186526,18 +186526,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libcom_err@1.43.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libcom_err@1.43.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libcom_err@1.43.4?arch=x86_64" + "purl": "pkg:rpm/fedora/libcom_err@1.43.4?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libffi", "version": "3.1", "qualifiers": { @@ -186627,18 +186627,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libffi@3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libffi@3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libffi@3.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libffi@3.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "p11-kit", "version": "0.23.5", "qualifiers": { @@ -186791,18 +186791,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/p11-kit@0.23.5?arch=x86_64" + "purl": "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "grep", "version": "3.0", "qualifiers": { @@ -187369,18 +187369,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/grep@3.0?arch=x86_64" + "purl": "pkg:rpm/fedora/grep@3.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libidn2", "version": "2.0.2", "qualifiers": { @@ -187536,18 +187536,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libidn2@2.0.2?arch=x86_64" + "purl": "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libattr", "version": "2.4.47", "qualifiers": { @@ -187619,18 +187619,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libattr@2.4.47?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libattr@2.4.47?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libattr@2.4.47?arch=x86_64" + "purl": "pkg:rpm/fedora/libattr@2.4.47?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "coreutils-single", "version": "8.27", "qualifiers": { @@ -187702,18 +187702,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/coreutils-single@8.27?arch=x86_64" + "purl": "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "crypto-policies", "version": "20170330", "qualifiers": { @@ -187866,18 +187866,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/crypto-policies@20170330?arch=noarch" + "purl": "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "lua-libs", "version": "5.3.4", "qualifiers": { @@ -187949,18 +187949,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/lua-libs@5.3.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/lua-libs@5.3.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/lua-libs@5.3.4?arch=x86_64" + "purl": "pkg:rpm/fedora/lua-libs@5.3.4?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "glib2", "version": "2.52.2", "qualifiers": { @@ -189049,18 +189049,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/glib2@2.52.2?arch=x86_64" + "purl": "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libgcrypt", "version": "1.7.6", "qualifiers": { @@ -189168,18 +189168,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libgcrypt@1.7.6?arch=x86_64" + "purl": "pkg:rpm/fedora/libgcrypt@1.7.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "readline", "version": "7.0", "qualifiers": { @@ -189323,18 +189323,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/readline@7.0?arch=x86_64" + "purl": "pkg:rpm/fedora/readline@7.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "audit-libs", "version": "2.7.6", "qualifiers": { @@ -189442,18 +189442,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/audit-libs@2.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/audit-libs@2.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/audit-libs@2.7.6?arch=x86_64" + "purl": "pkg:rpm/fedora/audit-libs@2.7.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "sqlite-libs", "version": "3.18.0", "qualifiers": { @@ -189543,18 +189543,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/sqlite-libs@3.18.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/sqlite-libs@3.18.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/sqlite-libs@3.18.0?arch=x86_64" + "purl": "pkg:rpm/fedora/sqlite-libs@3.18.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libtasn1", "version": "4.10", "qualifiers": { @@ -189686,18 +189686,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libtasn1@4.10?arch=x86_64" + "purl": "pkg:rpm/fedora/libtasn1@4.10?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "ca-certificates", "version": "2017.2.14", "qualifiers": { @@ -189832,18 +189832,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/ca-certificates@2017.2.14?arch=noarch" + "purl": "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libssh2", "version": "1.8.0", "qualifiers": { @@ -189951,18 +189951,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libssh2@1.8.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libssh2@1.8.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libssh2@1.8.0?arch=x86_64" + "purl": "pkg:rpm/fedora/libssh2@1.8.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "systemd-libs", "version": "233", "qualifiers": { @@ -190043,18 +190043,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/systemd-libs@233?arch=x86_64" + "purl": "pkg:rpm/fedora/systemd-libs@233?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libpeas", "version": "1.20.0", "qualifiers": { @@ -190801,18 +190801,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libpeas@1.20.0?arch=x86_64" + "purl": "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "gzip", "version": "1.8", "qualifiers": { @@ -191046,18 +191046,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/gzip@1.8?arch=x86_64" + "purl": "pkg:rpm/fedora/gzip@1.8?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "pam", "version": "1.3.0", "qualifiers": { @@ -193739,18 +193739,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/pam@1.3.0?arch=x86_64" + "purl": "pkg:rpm/fedora/pam@1.3.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libpsl", "version": "0.17.0", "qualifiers": { @@ -193822,18 +193822,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libpsl@0.17.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libpsl@0.17.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libpsl@0.17.0?arch=x86_64" + "purl": "pkg:rpm/fedora/libpsl@0.17.0?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nettle", "version": "3.3", "qualifiers": { @@ -193983,18 +193983,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nettle@3.3?arch=x86_64" + "purl": "pkg:rpm/fedora/nettle@3.3?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libdb-utils", "version": "5.3.28", "qualifiers": { @@ -194192,18 +194192,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libdb-utils@5.3.28?arch=x86_64" + "purl": "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nss-softokn-freebl", "version": "3.30.2", "qualifiers": { @@ -194263,18 +194263,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64" + "purl": "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nss-pem", "version": "1.0.3", "qualifiers": { @@ -194334,18 +194334,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nss-pem@1.0.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nss-pem@1.0.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nss-pem@1.0.3?arch=x86_64" + "purl": "pkg:rpm/fedora/nss-pem@1.0.3?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "nss-sysinit", "version": "3.30.2", "qualifiers": { @@ -194426,18 +194426,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/nss-sysinit@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/nss-sysinit@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/nss-sysinit@3.30.2?arch=x86_64" + "purl": "pkg:rpm/fedora/nss-sysinit@3.30.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libsmartcols", "version": "2.29.1", "qualifiers": { @@ -194509,18 +194509,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libsmartcols@2.29.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libsmartcols@2.29.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libsss_nss_idmap", "version": "1.15.2", "qualifiers": { @@ -194592,18 +194592,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libsss_nss_idmap@1.15.2?arch=x86_64" + "purl": "pkg:rpm/fedora/libsss_nss_idmap@1.15.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libsemanage", "version": "2.6", "qualifiers": { @@ -194675,18 +194675,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libsemanage@2.6?arch=x86_64" + "purl": "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libutempter", "version": "1.1.6", "qualifiers": { @@ -194776,18 +194776,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libutempter@1.1.6?arch=x86_64" + "purl": "pkg:rpm/fedora/libutempter@1.1.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libarchive", "version": "3.2.2", "qualifiers": { @@ -194904,18 +194904,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libarchive@3.2.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libarchive@3.2.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libarchive@3.2.2?arch=x86_64" + "purl": "pkg:rpm/fedora/libarchive@3.2.2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libverto", "version": "0.2.6", "qualifiers": { @@ -195032,18 +195032,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libverto@0.2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libverto@0.2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libverto@0.2.6?arch=x86_64" + "purl": "pkg:rpm/fedora/libverto@0.2.6?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "gawk", "version": "4.1.4", "qualifiers": { @@ -195487,18 +195487,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/gawk@4.1.4?arch=x86_64" + "purl": "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "cyrus-sasl-lib", "version": "2.1.26", "qualifiers": { @@ -195777,18 +195777,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64" + "purl": "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libnghttp2", "version": "1.21.1", "qualifiers": { @@ -195860,18 +195860,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libnghttp2@1.21.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libnghttp2@1.21.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libnghttp2@1.21.1?arch=x86_64" + "purl": "pkg:rpm/fedora/libnghttp2@1.21.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "curl", "version": "7.53.1", "qualifiers": { @@ -196033,18 +196033,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/curl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/curl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/curl@7.53.1?arch=x86_64" + "purl": "pkg:rpm/fedora/curl@7.53.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "rpm-libs", "version": "4.13.0.1", "qualifiers": { @@ -196167,18 +196167,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/rpm-libs@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/rpm-libs@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/rpm-libs@4.13.0.1?arch=x86_64" + "purl": "pkg:rpm/fedora/rpm-libs@4.13.0.1?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "libsolv", "version": "0.6.27", "qualifiers": { @@ -196259,18 +196259,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/libsolv@0.6.27?arch=x86_64" + "purl": "pkg:rpm/fedora/libsolv@0.6.27?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "gnupg2", "version": "2.1.20", "qualifiers": { @@ -197269,18 +197269,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/gnupg2@2.1.20?arch=x86_64" + "purl": "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "librepo", "version": "1.7.20", "qualifiers": { @@ -197361,18 +197361,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/librepo@1.7.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/librepo@1.7.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/librepo@1.7.20?arch=x86_64" + "purl": "pkg:rpm/fedora/librepo@1.7.20?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "microdnf", "version": "2", "qualifiers": { @@ -197453,18 +197453,18 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/microdnf@2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/microdnf@2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/microdnf@2?arch=x86_64" + "purl": "pkg:rpm/fedora/microdnf@2?arch=x86_64" }, { "type": "rpm", - "namespace": null, + "namespace": "fedora", "name": "util-linux", "version": "2.29.1", "qualifiers": { @@ -198949,14 +198949,14 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "rootfs/var/lib/rpm/Packages" ], "datasource_ids": [ "rpm_installed_database_bdb" ], - "purl": "pkg:rpm/util-linux@2.29.1?arch=x86_64" + "purl": "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64" } ], "dependencies": [], @@ -198966,7 +198966,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -198975,7 +198975,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -198984,7 +198984,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -198993,7 +198993,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199009,7 +199009,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199018,7 +199018,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199027,7 +199027,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199036,7 +199036,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199059,7 +199059,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199068,7 +199068,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199077,7 +199077,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199086,7 +199086,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199095,7 +199095,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199104,7 +199104,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199113,7 +199113,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199122,7 +199122,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199131,7 +199131,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199140,7 +199140,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199170,7 +199170,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199179,7 +199179,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199188,7 +199188,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199197,7 +199197,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199206,7 +199206,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199215,7 +199215,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199224,7 +199224,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199233,7 +199233,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199242,7 +199242,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199251,7 +199251,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199260,7 +199260,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199269,7 +199269,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199285,7 +199285,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199301,7 +199301,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199310,7 +199310,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199319,7 +199319,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199335,7 +199335,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199344,7 +199344,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199353,7 +199353,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199362,7 +199362,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199371,7 +199371,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199380,7 +199380,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199389,7 +199389,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199398,7 +199398,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199407,7 +199407,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199416,7 +199416,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/audit-libs@2.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/audit-libs@2.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199439,7 +199439,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199455,7 +199455,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199464,7 +199464,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199480,7 +199480,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199489,7 +199489,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199498,7 +199498,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199507,7 +199507,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199516,7 +199516,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199525,7 +199525,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199534,7 +199534,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199543,7 +199543,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199552,7 +199552,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199561,7 +199561,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199570,7 +199570,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199579,7 +199579,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199588,7 +199588,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199597,7 +199597,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199606,7 +199606,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199615,7 +199615,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199624,7 +199624,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199633,7 +199633,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199642,7 +199642,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199651,7 +199651,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199660,7 +199660,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199669,7 +199669,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199678,7 +199678,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199687,7 +199687,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199696,7 +199696,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199705,7 +199705,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199714,7 +199714,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199723,7 +199723,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199732,7 +199732,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199741,7 +199741,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199750,7 +199750,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199759,7 +199759,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199768,7 +199768,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199777,7 +199777,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199786,7 +199786,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199795,7 +199795,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199804,7 +199804,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199813,7 +199813,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199822,7 +199822,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199831,7 +199831,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199840,7 +199840,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199849,7 +199849,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199858,7 +199858,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199867,7 +199867,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199876,7 +199876,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199885,7 +199885,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199894,7 +199894,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199903,7 +199903,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199912,7 +199912,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199921,7 +199921,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199930,7 +199930,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199939,7 +199939,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199948,7 +199948,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199957,7 +199957,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199966,7 +199966,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199975,7 +199975,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199984,7 +199984,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -199993,8 +199993,8 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200003,8 +200003,8 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200013,7 +200013,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200022,7 +200022,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200031,7 +200031,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200040,7 +200040,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200049,7 +200049,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200058,7 +200058,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200067,7 +200067,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200076,7 +200076,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200085,7 +200085,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200094,7 +200094,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200103,7 +200103,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200112,7 +200112,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200121,7 +200121,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200130,7 +200130,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200139,7 +200139,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200148,7 +200148,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200157,7 +200157,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200166,7 +200166,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200175,7 +200175,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200184,7 +200184,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200193,7 +200193,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200202,7 +200202,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200211,7 +200211,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200220,7 +200220,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200229,7 +200229,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200238,7 +200238,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200247,7 +200247,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200263,7 +200263,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200272,7 +200272,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200288,7 +200288,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200297,7 +200297,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200306,7 +200306,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200315,7 +200315,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200324,7 +200324,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200333,7 +200333,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200342,7 +200342,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200351,7 +200351,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200360,7 +200360,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200369,7 +200369,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200378,7 +200378,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200387,7 +200387,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200396,7 +200396,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200405,7 +200405,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200414,7 +200414,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200423,7 +200423,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200432,7 +200432,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200441,7 +200441,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200450,7 +200450,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200459,7 +200459,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200468,7 +200468,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200477,7 +200477,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200486,7 +200486,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200495,7 +200495,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200511,7 +200511,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200520,7 +200520,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200529,7 +200529,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200538,7 +200538,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200547,7 +200547,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200556,7 +200556,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200565,7 +200565,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200574,7 +200574,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200583,7 +200583,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200627,7 +200627,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200643,7 +200643,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libattr@2.4.47?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libattr@2.4.47?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200652,7 +200652,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200661,7 +200661,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200670,7 +200670,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200679,7 +200679,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200688,7 +200688,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200697,7 +200697,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200713,7 +200713,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200722,7 +200722,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200731,7 +200731,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200740,7 +200740,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200749,7 +200749,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200786,7 +200786,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200802,7 +200802,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200811,7 +200811,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200820,7 +200820,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200836,7 +200836,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200845,7 +200845,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200854,7 +200854,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200863,7 +200863,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200872,7 +200872,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200881,7 +200881,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200890,7 +200890,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200899,7 +200899,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200908,7 +200908,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200917,7 +200917,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200926,7 +200926,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200935,7 +200935,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200944,7 +200944,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200953,7 +200953,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200962,7 +200962,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200971,7 +200971,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200980,7 +200980,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200989,7 +200989,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -200998,7 +200998,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201007,7 +201007,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201016,7 +201016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201025,7 +201025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201034,7 +201034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201043,7 +201043,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201052,7 +201052,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201061,7 +201061,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201070,7 +201070,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201079,7 +201079,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201088,7 +201088,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201097,7 +201097,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201106,7 +201106,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201115,7 +201115,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201124,7 +201124,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201133,7 +201133,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201142,7 +201142,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201151,7 +201151,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201160,7 +201160,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/curl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/curl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201169,7 +201169,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201178,7 +201178,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201187,7 +201187,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201196,7 +201196,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201205,7 +201205,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201214,7 +201214,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201223,7 +201223,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201232,7 +201232,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201241,7 +201241,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201250,7 +201250,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201259,7 +201259,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201268,7 +201268,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201277,7 +201277,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201286,7 +201286,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201295,7 +201295,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201304,7 +201304,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201313,7 +201313,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb-utils@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201322,7 +201322,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201331,7 +201331,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201340,7 +201340,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201349,7 +201349,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201358,7 +201358,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201367,7 +201367,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201376,7 +201376,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201385,7 +201385,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201394,7 +201394,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201403,7 +201403,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201419,7 +201419,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201428,7 +201428,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201437,7 +201437,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201446,7 +201446,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201455,7 +201455,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201464,7 +201464,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201473,7 +201473,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201482,7 +201482,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201491,7 +201491,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201507,7 +201507,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201516,7 +201516,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201525,7 +201525,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201534,7 +201534,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201543,7 +201543,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201552,7 +201552,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201561,7 +201561,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201570,7 +201570,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201579,7 +201579,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201588,7 +201588,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201597,7 +201597,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201606,7 +201606,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201615,7 +201615,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201624,7 +201624,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201633,7 +201633,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201642,7 +201642,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201651,7 +201651,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201660,7 +201660,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201669,7 +201669,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201678,7 +201678,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201687,7 +201687,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201696,7 +201696,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201705,7 +201705,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201714,7 +201714,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201730,7 +201730,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201739,7 +201739,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201748,7 +201748,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201757,7 +201757,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201766,7 +201766,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201775,7 +201775,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201784,7 +201784,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201793,7 +201793,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201802,7 +201802,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201811,7 +201811,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201820,7 +201820,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201829,7 +201829,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201838,7 +201838,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201847,7 +201847,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201856,7 +201856,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201865,7 +201865,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201874,7 +201874,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201883,7 +201883,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201892,7 +201892,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201901,7 +201901,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201910,7 +201910,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201919,7 +201919,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201928,7 +201928,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201937,7 +201937,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201946,7 +201946,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201955,7 +201955,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201964,7 +201964,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201973,7 +201973,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201982,7 +201982,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -201991,7 +201991,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202000,7 +202000,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202009,7 +202009,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202018,7 +202018,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202027,7 +202027,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202036,7 +202036,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202045,7 +202045,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202054,7 +202054,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202063,7 +202063,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202072,7 +202072,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202081,7 +202081,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202090,7 +202090,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202099,7 +202099,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202108,7 +202108,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202117,7 +202117,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202126,7 +202126,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202135,7 +202135,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/microdnf@2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/microdnf@2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202144,7 +202144,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202153,7 +202153,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202162,7 +202162,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202171,7 +202171,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202180,7 +202180,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202189,7 +202189,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202198,7 +202198,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202207,7 +202207,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202216,7 +202216,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202225,7 +202225,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202234,7 +202234,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202243,7 +202243,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202252,7 +202252,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202261,7 +202261,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202270,7 +202270,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202279,7 +202279,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202288,7 +202288,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202297,7 +202297,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202306,7 +202306,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202315,7 +202315,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202324,7 +202324,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202333,7 +202333,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202342,7 +202342,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202351,7 +202351,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202360,7 +202360,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202369,7 +202369,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202378,7 +202378,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202387,7 +202387,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202396,7 +202396,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202405,7 +202405,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202414,7 +202414,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202423,7 +202423,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202432,7 +202432,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202441,7 +202441,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202450,7 +202450,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202459,7 +202459,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202468,7 +202468,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202477,7 +202477,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202486,7 +202486,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202495,7 +202495,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202504,7 +202504,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202513,7 +202513,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202522,7 +202522,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202531,7 +202531,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202540,7 +202540,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202549,7 +202549,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202558,7 +202558,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202574,7 +202574,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202583,7 +202583,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202592,7 +202592,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202601,7 +202601,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202610,7 +202610,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202619,7 +202619,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202628,7 +202628,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202637,7 +202637,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/sed@4.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sed@4.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202646,7 +202646,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202655,7 +202655,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202664,7 +202664,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202673,7 +202673,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202682,7 +202682,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202691,7 +202691,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-sysinit@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-sysinit@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202700,7 +202700,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202709,7 +202709,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202718,7 +202718,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202727,7 +202727,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202736,7 +202736,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202745,7 +202745,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202754,7 +202754,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202763,7 +202763,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202772,7 +202772,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202781,7 +202781,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202790,7 +202790,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202799,7 +202799,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202808,7 +202808,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202817,7 +202817,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202826,7 +202826,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202835,7 +202835,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-tools@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202844,7 +202844,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202853,7 +202853,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202862,7 +202862,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202871,7 +202871,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202880,7 +202880,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202889,7 +202889,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202898,7 +202898,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202907,7 +202907,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202916,7 +202916,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202925,7 +202925,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202934,7 +202934,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202943,7 +202943,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202952,7 +202952,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202961,7 +202961,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202970,7 +202970,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202979,7 +202979,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202988,7 +202988,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -202997,7 +202997,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203006,7 +203006,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203015,7 +203015,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203024,7 +203024,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203033,7 +203033,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203042,7 +203042,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203051,7 +203051,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203060,7 +203060,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203069,7 +203069,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203078,7 +203078,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203087,7 +203087,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203096,7 +203096,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203105,7 +203105,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203114,7 +203114,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203123,7 +203123,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203132,7 +203132,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203141,7 +203141,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203150,7 +203150,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203159,7 +203159,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203168,7 +203168,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203177,7 +203177,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203186,7 +203186,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203195,7 +203195,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203204,7 +203204,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203213,7 +203213,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203222,7 +203222,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203231,7 +203231,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203240,7 +203240,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203249,7 +203249,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203258,7 +203258,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203267,7 +203267,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203276,7 +203276,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203285,7 +203285,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203294,7 +203294,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203303,7 +203303,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203312,7 +203312,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203321,7 +203321,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203330,7 +203330,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203339,7 +203339,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203348,7 +203348,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203357,7 +203357,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203366,7 +203366,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203375,7 +203375,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203384,7 +203384,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203393,7 +203393,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203402,7 +203402,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203411,7 +203411,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203420,7 +203420,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203429,7 +203429,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203438,7 +203438,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203447,7 +203447,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203456,7 +203456,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203465,7 +203465,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203488,7 +203488,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203504,7 +203504,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203513,7 +203513,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203522,7 +203522,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203531,7 +203531,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203540,7 +203540,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203549,7 +203549,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203558,7 +203558,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203567,7 +203567,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203576,7 +203576,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203585,7 +203585,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203594,7 +203594,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203603,7 +203603,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203612,7 +203612,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203621,7 +203621,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203630,7 +203630,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203639,7 +203639,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203648,7 +203648,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203657,7 +203657,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203666,7 +203666,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203675,7 +203675,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203684,16 +203684,59 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, { "path": "rootfs/usr/lib/os-release", "type": "file", - "package_data": [], + "package_data": [ + { + "type": "linux-distro", + "namespace": "fedora-modular", + "name": "fedora", + "version": "26", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "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": "etc_os_release", + "purl": "pkg:linux-distro/fedora-modular/fedora@26" + } + ], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203702,7 +203745,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203711,7 +203754,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203720,7 +203763,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203729,7 +203772,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203738,7 +203781,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203747,7 +203790,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203756,7 +203799,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203765,7 +203808,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203774,7 +203817,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203783,7 +203826,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203792,7 +203835,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203801,7 +203844,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203810,7 +203853,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203819,7 +203862,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203828,7 +203871,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203837,7 +203880,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203846,7 +203889,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203855,7 +203898,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203864,7 +203907,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203873,7 +203916,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203882,7 +203925,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203891,7 +203934,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203900,7 +203943,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203909,7 +203952,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203918,7 +203961,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203927,7 +203970,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203936,7 +203979,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203945,7 +203988,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203954,7 +203997,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203963,7 +204006,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203972,7 +204015,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203981,7 +204024,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203990,7 +204033,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -203999,7 +204042,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204008,7 +204051,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204017,7 +204060,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204026,7 +204069,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204035,7 +204078,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204044,7 +204087,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204053,7 +204096,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204062,7 +204105,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204071,7 +204114,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204080,7 +204123,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204089,7 +204132,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204098,7 +204141,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204107,7 +204150,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204116,7 +204159,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204125,7 +204168,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204134,7 +204177,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204143,7 +204186,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204152,7 +204195,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204161,7 +204204,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204170,7 +204213,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204179,7 +204222,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204188,7 +204231,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204197,7 +204240,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204206,7 +204249,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204215,7 +204258,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204224,7 +204267,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204233,7 +204276,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204242,7 +204285,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204251,7 +204294,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204260,7 +204303,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204269,7 +204312,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204278,7 +204321,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204287,7 +204330,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204296,7 +204339,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204305,7 +204348,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204314,7 +204357,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204323,7 +204366,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204332,7 +204375,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204341,7 +204384,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204350,7 +204393,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204359,7 +204402,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204368,7 +204411,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204377,7 +204420,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204386,7 +204429,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204395,7 +204438,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204404,7 +204447,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204413,7 +204456,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204422,7 +204465,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204431,7 +204474,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204440,7 +204483,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204449,7 +204492,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204458,7 +204501,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204467,7 +204510,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204476,7 +204519,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204485,7 +204528,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204494,7 +204537,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204503,7 +204546,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204512,7 +204555,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204521,7 +204564,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204530,7 +204573,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204539,7 +204582,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204548,7 +204591,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204557,7 +204600,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204566,7 +204609,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204575,7 +204618,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204584,7 +204627,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204593,7 +204636,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204602,7 +204645,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204611,7 +204654,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204620,7 +204663,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204629,7 +204672,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204638,7 +204681,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204647,7 +204690,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204656,7 +204699,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204665,7 +204708,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204674,7 +204717,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204683,7 +204726,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204692,7 +204735,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204701,7 +204744,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204710,7 +204753,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204719,7 +204762,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204728,7 +204771,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204737,7 +204780,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204746,7 +204789,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204755,7 +204798,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204764,7 +204807,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204773,7 +204816,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204782,7 +204825,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204791,7 +204834,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204800,7 +204843,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204809,7 +204852,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204818,7 +204861,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204827,7 +204870,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204836,7 +204879,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204845,7 +204888,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204854,7 +204897,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204863,7 +204906,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204872,7 +204915,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204881,7 +204924,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204890,7 +204933,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204899,7 +204942,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204908,7 +204951,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204917,7 +204960,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204926,7 +204969,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204935,7 +204978,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204944,7 +204987,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204953,7 +204996,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204962,7 +205005,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204971,7 +205014,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204987,7 +205030,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204996,7 +205039,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205005,7 +205048,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205028,7 +205071,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205037,7 +205080,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205046,7 +205089,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205055,7 +205098,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205064,7 +205107,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205073,7 +205116,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205082,7 +205125,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205091,7 +205134,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205100,7 +205143,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205109,7 +205152,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205118,7 +205161,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205127,7 +205170,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205136,7 +205179,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205145,7 +205188,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205154,7 +205197,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205163,7 +205206,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205172,7 +205215,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205181,7 +205224,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205190,7 +205233,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205199,7 +205242,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205208,7 +205251,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205217,7 +205260,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205226,7 +205269,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205235,7 +205278,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205244,7 +205287,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205253,7 +205296,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205262,7 +205305,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205271,7 +205314,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205280,7 +205323,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205289,7 +205332,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205298,7 +205341,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205307,7 +205350,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205316,7 +205359,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205325,7 +205368,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205334,7 +205377,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205343,7 +205386,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205352,7 +205395,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205361,7 +205404,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205370,7 +205413,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205379,7 +205422,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205388,7 +205431,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205397,7 +205440,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205406,7 +205449,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205415,7 +205458,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205424,7 +205467,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205433,7 +205476,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205442,7 +205485,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205451,7 +205494,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205460,7 +205503,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205469,7 +205512,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205478,7 +205521,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205487,7 +205530,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205496,7 +205539,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205505,7 +205548,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205514,7 +205557,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205523,7 +205566,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205532,7 +205575,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205541,7 +205584,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205550,7 +205593,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205559,7 +205602,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205568,7 +205611,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205577,7 +205620,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205586,7 +205629,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205595,7 +205638,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205604,7 +205647,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205613,7 +205656,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205622,7 +205665,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205631,7 +205674,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205640,7 +205683,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205649,7 +205692,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205658,7 +205701,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205667,7 +205710,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205676,7 +205719,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205685,7 +205728,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205694,7 +205737,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205703,7 +205746,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205712,7 +205755,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205721,7 +205764,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205730,7 +205773,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205739,7 +205782,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205748,7 +205791,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205757,7 +205800,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205766,7 +205809,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205775,7 +205818,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205784,7 +205827,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205793,7 +205836,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205802,7 +205845,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205811,7 +205854,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205820,7 +205863,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205829,7 +205872,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205838,7 +205881,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205847,7 +205890,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205856,7 +205899,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205865,7 +205908,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205874,7 +205917,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205883,7 +205926,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205892,7 +205935,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205901,7 +205944,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205910,7 +205953,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205919,7 +205962,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205928,7 +205971,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205937,7 +205980,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205946,7 +205989,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205955,7 +205998,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205964,7 +206007,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205973,7 +206016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205982,7 +206025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -205991,7 +206034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206000,7 +206043,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206009,7 +206052,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206018,7 +206061,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206027,7 +206070,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206036,7 +206079,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206045,7 +206088,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206054,7 +206097,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206063,7 +206106,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206072,7 +206115,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206081,7 +206124,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206090,7 +206133,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206099,7 +206142,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206108,7 +206151,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206117,7 +206160,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206126,7 +206169,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206135,7 +206178,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206144,7 +206187,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206153,7 +206196,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206162,7 +206205,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206171,7 +206214,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206180,7 +206223,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206189,7 +206232,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206198,7 +206241,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206207,7 +206250,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206216,7 +206259,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206225,7 +206268,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206234,7 +206277,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206243,7 +206286,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206252,7 +206295,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206261,7 +206304,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206270,7 +206313,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206279,7 +206322,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206288,7 +206331,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206297,7 +206340,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206306,7 +206349,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206315,7 +206358,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206324,7 +206367,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206333,7 +206376,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206342,7 +206385,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206351,7 +206394,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206360,7 +206403,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206369,7 +206412,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206378,7 +206421,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206387,7 +206430,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206396,7 +206439,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206405,7 +206448,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206414,7 +206457,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206423,7 +206466,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206432,7 +206475,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206441,7 +206484,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206450,7 +206493,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206459,7 +206502,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206468,7 +206511,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206477,7 +206520,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206486,7 +206529,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206495,7 +206538,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206504,7 +206547,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206513,7 +206556,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206522,7 +206565,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206531,7 +206574,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206540,7 +206583,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206549,7 +206592,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206558,7 +206601,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206567,7 +206610,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206576,7 +206619,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206585,7 +206628,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206594,7 +206637,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206603,7 +206646,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206612,7 +206655,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206621,7 +206664,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206630,7 +206673,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206639,7 +206682,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206648,7 +206691,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206657,7 +206700,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206666,7 +206709,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206675,7 +206718,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206684,7 +206727,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206693,7 +206736,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206702,7 +206745,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206711,7 +206754,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206720,7 +206763,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206729,7 +206772,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206738,7 +206781,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206747,7 +206790,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206756,7 +206799,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206765,7 +206808,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206774,7 +206817,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206783,7 +206826,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206792,7 +206835,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206801,7 +206844,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206810,7 +206853,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206819,7 +206862,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206828,7 +206871,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206837,7 +206880,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206846,7 +206889,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206855,7 +206898,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206864,7 +206907,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206873,7 +206916,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206882,7 +206925,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206891,7 +206934,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206900,7 +206943,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206909,7 +206952,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206918,7 +206961,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206927,7 +206970,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206936,7 +206979,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206945,7 +206988,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206954,7 +206997,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206963,7 +207006,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206972,7 +207015,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206981,7 +207024,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206990,7 +207033,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -206999,7 +207042,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207008,7 +207051,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207017,7 +207060,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207026,7 +207069,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207035,7 +207078,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207044,7 +207087,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207053,7 +207096,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207062,7 +207105,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207071,7 +207114,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207080,7 +207123,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207089,7 +207132,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207098,7 +207141,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207107,7 +207150,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207116,7 +207159,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207125,7 +207168,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207134,7 +207177,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207143,7 +207186,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207152,7 +207195,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207161,7 +207204,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207170,7 +207213,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207179,7 +207222,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207188,7 +207231,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207197,7 +207240,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207206,7 +207249,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207215,7 +207258,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207224,7 +207267,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207233,7 +207276,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207242,7 +207285,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207251,7 +207294,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207260,7 +207303,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207269,7 +207312,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207278,7 +207321,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207287,7 +207330,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207296,7 +207339,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207305,7 +207348,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207314,7 +207357,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207323,7 +207366,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207332,7 +207375,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207341,7 +207384,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207350,7 +207393,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207359,7 +207402,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207368,7 +207411,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207377,7 +207420,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207386,7 +207429,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207395,7 +207438,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207404,7 +207447,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207413,7 +207456,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207422,7 +207465,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207431,7 +207474,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207440,7 +207483,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207449,7 +207492,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207458,7 +207501,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207467,7 +207510,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207476,7 +207519,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207485,7 +207528,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207494,7 +207537,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207503,7 +207546,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207512,7 +207555,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207521,7 +207564,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207530,7 +207573,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207539,7 +207582,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207548,7 +207591,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207557,7 +207600,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207566,7 +207609,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207575,7 +207618,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207584,7 +207627,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207593,8 +207636,8 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", - "pkg:rpm/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207603,7 +207646,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207612,7 +207655,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207621,7 +207664,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207630,7 +207673,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207639,7 +207682,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207648,7 +207691,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207657,7 +207700,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207666,7 +207709,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207675,7 +207718,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207684,7 +207727,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207693,7 +207736,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207702,7 +207745,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207711,7 +207754,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207720,7 +207763,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207729,7 +207772,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207738,7 +207781,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207747,7 +207790,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207756,7 +207799,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207765,7 +207808,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207774,7 +207817,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207783,7 +207826,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207792,7 +207835,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207801,7 +207844,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207810,7 +207853,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207819,7 +207862,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207828,7 +207871,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207837,7 +207880,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207846,7 +207889,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207855,7 +207898,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207899,7 +207942,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libarchive@3.2.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libarchive@3.2.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207908,7 +207951,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207917,7 +207960,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libattr@2.4.47?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libattr@2.4.47?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207940,7 +207983,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libblkid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libblkid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207949,7 +207992,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/bzip2-libs@1.0.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bzip2-libs@1.0.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207972,7 +208015,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207988,7 +208031,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcom_err@1.43.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcom_err@1.43.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -207997,7 +208040,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208013,7 +208056,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208022,7 +208065,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcurl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcurl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208031,7 +208074,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208047,7 +208090,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208056,7 +208099,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208065,7 +208108,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208074,7 +208117,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208083,7 +208126,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libffi@3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libffi@3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208106,7 +208149,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208115,7 +208158,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208124,7 +208167,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208133,7 +208176,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208149,7 +208192,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208158,7 +208201,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208167,7 +208210,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208176,7 +208219,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208185,7 +208228,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208194,7 +208237,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208203,7 +208246,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208212,7 +208255,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208221,7 +208264,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208230,7 +208273,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208239,7 +208282,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208248,7 +208291,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208257,7 +208300,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208266,7 +208309,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208275,7 +208318,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208284,7 +208327,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208293,7 +208336,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208302,7 +208345,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208311,7 +208354,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/keyutils-libs@1.5.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/keyutils-libs@1.5.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208320,7 +208363,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208329,7 +208372,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208338,7 +208381,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208347,7 +208390,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208356,7 +208399,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208365,7 +208408,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208374,7 +208417,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208390,7 +208433,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/lz4-libs@1.7.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/lz4-libs@1.7.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208399,7 +208442,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/xz-libs@5.2.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/xz-libs@5.2.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208408,7 +208451,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/lzo@2.08?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/lzo@2.08?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208424,7 +208467,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208447,7 +208490,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libmetalink@0.1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libmetalink@0.1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208456,7 +208499,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208465,7 +208508,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208495,7 +208538,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208504,7 +208547,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libnghttp2@1.21.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libnghttp2@1.21.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208513,7 +208556,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208529,7 +208572,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208538,7 +208581,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208561,7 +208604,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208570,7 +208613,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208579,7 +208622,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208588,7 +208631,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208597,7 +208640,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208606,7 +208649,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208615,7 +208658,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-pem@1.0.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-pem@1.0.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208624,7 +208667,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-sysinit@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-sysinit@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208633,7 +208676,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-util@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-util@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208642,7 +208685,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208651,7 +208694,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208660,7 +208703,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208669,7 +208712,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208692,7 +208735,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208701,7 +208744,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208710,7 +208753,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208719,7 +208762,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208728,7 +208771,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208737,7 +208780,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208746,7 +208789,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208755,7 +208798,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208764,7 +208807,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208773,7 +208816,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libpsl@0.17.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpsl@0.17.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208789,7 +208832,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208798,7 +208841,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208807,7 +208850,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/librepo@1.7.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/librepo@1.7.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208844,7 +208887,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208853,7 +208896,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208862,7 +208905,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208871,7 +208914,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libsepol@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsepol@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208887,7 +208930,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208896,7 +208939,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208905,7 +208948,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208914,7 +208957,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208923,7 +208966,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208932,7 +208975,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208941,7 +208984,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208950,7 +208993,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/sqlite-libs@3.18.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sqlite-libs@3.18.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208959,7 +209002,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libssh2@1.8.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libssh2@1.8.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208968,7 +209011,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208977,7 +209020,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208986,7 +209029,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -208995,7 +209038,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209004,7 +209047,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209013,7 +209056,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209043,7 +209086,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209052,7 +209095,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209061,7 +209104,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209070,7 +209113,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209086,7 +209129,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209095,7 +209138,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libverto@0.2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libverto@0.2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209104,7 +209147,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209113,7 +209156,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/zlib@1.2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/zlib@1.2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209122,7 +209165,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209131,7 +209174,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209140,7 +209183,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209149,7 +209192,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209158,7 +209201,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209167,7 +209210,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209176,7 +209219,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209185,7 +209228,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209194,7 +209237,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209217,7 +209260,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209226,7 +209269,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209235,7 +209278,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209244,7 +209287,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209253,7 +209296,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209262,7 +209305,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209271,7 +209314,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209280,7 +209323,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209289,7 +209332,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209298,7 +209341,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209307,7 +209350,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209316,7 +209359,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209325,7 +209368,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209334,7 +209377,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209343,7 +209386,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209352,7 +209395,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209361,7 +209404,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209370,7 +209413,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209379,7 +209422,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209388,7 +209431,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209397,7 +209440,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209406,7 +209449,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209415,7 +209458,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209424,7 +209467,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209433,7 +209476,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209442,7 +209485,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209451,7 +209494,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209460,7 +209503,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209469,7 +209512,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209478,7 +209521,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209487,7 +209530,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209496,7 +209539,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209505,7 +209548,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209514,7 +209557,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209523,7 +209566,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209532,7 +209575,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209541,7 +209584,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209550,7 +209593,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209559,7 +209602,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209568,7 +209611,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209577,7 +209620,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209586,7 +209629,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209595,7 +209638,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209604,7 +209647,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209613,7 +209656,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209622,7 +209665,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209631,7 +209674,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209640,7 +209683,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209649,7 +209692,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209658,7 +209701,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209667,7 +209710,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209676,7 +209719,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209685,7 +209728,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209694,7 +209737,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209703,7 +209746,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209712,7 +209755,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209721,7 +209764,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209730,7 +209773,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209739,7 +209782,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209748,7 +209791,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209757,7 +209800,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209766,7 +209809,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209775,7 +209818,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209784,7 +209827,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209793,7 +209836,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209809,7 +209852,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209818,7 +209861,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209827,7 +209870,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209836,7 +209879,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209845,7 +209888,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209854,7 +209897,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209863,7 +209906,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209872,7 +209915,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209881,7 +209924,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209890,7 +209933,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209899,7 +209942,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209908,7 +209951,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209917,7 +209960,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209926,7 +209969,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209935,7 +209978,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209944,7 +209987,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209953,7 +209996,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209962,7 +210005,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209971,7 +210014,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209980,7 +210023,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209989,7 +210032,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -209998,7 +210041,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210007,7 +210050,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210016,7 +210059,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210025,7 +210068,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210034,7 +210077,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210043,7 +210086,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210052,7 +210095,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210061,7 +210104,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210070,7 +210113,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210079,7 +210122,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210088,7 +210131,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210097,7 +210140,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210106,7 +210149,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210115,7 +210158,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210124,7 +210167,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210133,7 +210176,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210142,7 +210185,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210151,7 +210194,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210160,7 +210203,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210169,7 +210212,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210178,7 +210221,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210187,7 +210230,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210196,7 +210239,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210205,7 +210248,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210214,7 +210257,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210223,7 +210266,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210232,7 +210275,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210241,7 +210284,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210250,7 +210293,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210259,7 +210302,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210268,7 +210311,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210277,7 +210320,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210286,7 +210329,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210295,7 +210338,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210304,7 +210347,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210313,7 +210356,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210322,7 +210365,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210331,7 +210374,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210340,7 +210383,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210349,7 +210392,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210358,7 +210401,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210367,7 +210410,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210376,7 +210419,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210385,7 +210428,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210401,7 +210444,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210410,7 +210453,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210419,7 +210462,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210428,7 +210471,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210437,7 +210480,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210446,7 +210489,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210455,7 +210498,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210464,7 +210507,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210473,7 +210516,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210482,7 +210525,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210491,7 +210534,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210500,7 +210543,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210509,7 +210552,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210518,7 +210561,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210527,7 +210570,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210536,7 +210579,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210545,7 +210588,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210554,7 +210597,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210563,7 +210606,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210572,7 +210615,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210581,7 +210624,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210590,7 +210633,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210599,7 +210642,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210608,7 +210651,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210617,7 +210660,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210626,7 +210669,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210635,7 +210678,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210644,7 +210687,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210653,7 +210696,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210662,7 +210705,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210671,7 +210714,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210687,7 +210730,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210703,7 +210746,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210712,7 +210755,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210721,7 +210764,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210730,7 +210773,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210739,7 +210782,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210748,7 +210791,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210757,7 +210800,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210766,7 +210809,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210775,7 +210818,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210784,7 +210827,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210793,7 +210836,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210802,7 +210845,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210811,7 +210854,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210820,7 +210863,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210829,7 +210872,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210838,7 +210881,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210847,7 +210890,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210856,7 +210899,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210865,7 +210908,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210874,7 +210917,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210883,7 +210926,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210892,7 +210935,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210901,7 +210944,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210910,7 +210953,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210919,7 +210962,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210928,7 +210971,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210944,7 +210987,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210953,7 +210996,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210962,7 +211005,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210971,7 +211014,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210980,7 +211023,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210989,7 +211032,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -210998,7 +211041,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211007,7 +211050,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211016,7 +211059,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211025,7 +211068,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211034,7 +211077,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211043,7 +211086,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211052,7 +211095,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211061,7 +211104,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211070,7 +211113,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211079,7 +211122,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211088,7 +211131,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211097,7 +211140,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211106,7 +211149,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211115,7 +211158,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211124,7 +211167,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211133,7 +211176,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211142,7 +211185,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211151,7 +211194,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211160,7 +211203,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211169,7 +211212,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211178,7 +211221,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211187,7 +211230,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211196,7 +211239,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211205,7 +211248,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211214,7 +211257,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211223,7 +211266,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211232,7 +211275,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211241,7 +211284,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211250,7 +211293,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211259,7 +211302,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211268,7 +211311,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211277,7 +211320,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211286,7 +211329,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211295,7 +211338,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211304,7 +211347,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211313,7 +211356,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211322,7 +211365,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211331,7 +211374,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211340,7 +211383,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211349,7 +211392,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211358,7 +211401,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211367,7 +211410,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211376,7 +211419,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211385,7 +211428,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211394,7 +211437,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211403,7 +211446,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211412,7 +211455,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211421,7 +211464,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211430,7 +211473,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211439,7 +211482,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211448,7 +211491,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211457,7 +211500,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211466,7 +211509,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211475,7 +211518,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211484,7 +211527,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211493,7 +211536,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211502,7 +211545,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211511,7 +211554,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211520,7 +211563,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211529,7 +211572,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211538,7 +211581,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211547,7 +211590,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211556,7 +211599,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211565,7 +211608,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211574,7 +211617,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211583,7 +211626,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211592,7 +211635,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211601,7 +211644,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211610,7 +211653,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211619,7 +211662,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211628,7 +211671,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211637,7 +211680,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211646,7 +211689,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211655,7 +211698,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211664,7 +211707,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211673,7 +211716,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211682,7 +211725,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211691,7 +211734,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211700,7 +211743,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211709,7 +211752,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211718,7 +211761,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211727,7 +211770,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211736,7 +211779,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211745,7 +211788,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211754,7 +211797,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211763,7 +211806,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211772,7 +211815,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211781,7 +211824,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211790,7 +211833,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211799,7 +211842,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211808,7 +211851,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211817,7 +211860,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211826,7 +211869,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211835,7 +211878,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211844,7 +211887,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211853,7 +211896,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211862,7 +211905,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211871,7 +211914,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211880,7 +211923,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211889,7 +211932,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211898,7 +211941,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211907,7 +211950,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211916,7 +211959,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211925,7 +211968,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211934,7 +211977,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211943,7 +211986,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211952,7 +211995,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211961,7 +212004,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211970,7 +212013,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211979,7 +212022,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211988,7 +212031,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -211997,7 +212040,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212006,7 +212049,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212015,7 +212058,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212024,7 +212067,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212033,7 +212076,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212042,7 +212085,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212051,7 +212094,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212060,7 +212103,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212069,7 +212112,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212078,7 +212121,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212087,7 +212130,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212096,7 +212139,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212105,7 +212148,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212114,7 +212157,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212123,7 +212166,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212132,7 +212175,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212141,7 +212184,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212150,7 +212193,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212159,7 +212202,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212168,7 +212211,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212177,7 +212220,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212186,7 +212229,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212195,7 +212238,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212204,7 +212247,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212213,7 +212256,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212222,7 +212265,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212231,7 +212274,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212247,7 +212290,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212256,7 +212299,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212265,7 +212308,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212274,7 +212317,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212283,7 +212326,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212292,7 +212335,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212301,7 +212344,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212310,7 +212353,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212326,7 +212369,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212335,7 +212378,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212344,7 +212387,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212353,7 +212396,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212362,7 +212405,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212371,7 +212414,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212380,7 +212423,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212389,7 +212432,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212405,7 +212448,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212414,7 +212457,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212423,7 +212466,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212432,7 +212475,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212441,7 +212484,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212450,7 +212493,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212459,7 +212502,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212468,7 +212511,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212484,7 +212527,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212493,7 +212536,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212502,7 +212545,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212511,7 +212554,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212520,7 +212563,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212529,7 +212572,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212538,7 +212581,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212547,7 +212590,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212556,7 +212599,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212565,7 +212608,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212574,7 +212617,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212583,7 +212626,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212592,7 +212635,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212601,7 +212644,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212610,7 +212653,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212619,7 +212662,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212628,7 +212671,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212637,7 +212680,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212646,7 +212689,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212655,7 +212698,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212664,7 +212707,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212673,7 +212716,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212682,7 +212725,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212691,7 +212734,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212700,7 +212743,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212709,7 +212752,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212718,7 +212761,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212727,7 +212770,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212736,7 +212779,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212745,7 +212788,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212754,7 +212797,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212763,7 +212806,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212772,7 +212815,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/audit-libs@2.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/audit-libs@2.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212781,7 +212824,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/audit-libs@2.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/audit-libs@2.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212790,7 +212833,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212842,7 +212885,7 @@ } ], "for_packages": [ - "pkg:rpm/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bash@4.4.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212851,7 +212894,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/bzip2-libs@1.0.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bzip2-libs@1.0.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212903,7 +212946,7 @@ } ], "for_packages": [ - "pkg:rpm/bzip2-libs@1.0.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/bzip2-libs@1.0.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212912,7 +212955,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212964,7 +213007,7 @@ } ], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -212973,7 +213016,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213025,7 +213068,7 @@ } ], "for_packages": [ - "pkg:rpm/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/coreutils-single@8.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213034,7 +213077,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213086,7 +213129,7 @@ } ], "for_packages": [ - "pkg:rpm/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cracklib@2.9.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213095,7 +213138,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213147,7 +213190,7 @@ } ], "for_packages": [ - "pkg:rpm/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/crypto-policies@20170330?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213156,7 +213199,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213208,7 +213251,7 @@ } ], "for_packages": [ - "pkg:rpm/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/cyrus-sasl-lib@2.1.26?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213217,7 +213260,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213269,7 +213312,7 @@ } ], "for_packages": [ - "pkg:rpm/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213321,7 +213364,7 @@ } ], "for_packages": [ - "pkg:rpm/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/elfutils-libelf@0.169?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213330,7 +213373,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213382,7 +213425,7 @@ } ], "for_packages": [ - "pkg:rpm/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/expat@2.2.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213391,7 +213434,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213400,7 +213443,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213452,7 +213495,7 @@ } ], "for_packages": [ - "pkg:rpm/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-release@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213461,7 +213504,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213513,7 +213556,7 @@ } ], "for_packages": [ - "pkg:rpm/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/fedora-modular-repos@26?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213522,7 +213565,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213574,7 +213617,7 @@ } ], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213626,7 +213669,7 @@ } ], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213678,7 +213721,7 @@ } ], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213730,7 +213773,7 @@ } ], "for_packages": [ - "pkg:rpm/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gawk@4.1.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213739,7 +213782,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213791,7 +213834,7 @@ } ], "for_packages": [ - "pkg:rpm/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glib2@2.52.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213800,7 +213843,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213852,7 +213895,7 @@ } ], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213904,7 +213947,7 @@ } ], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213956,7 +213999,7 @@ } ], "for_packages": [ - "pkg:rpm/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -213965,7 +214008,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214017,7 +214060,7 @@ } ], "for_packages": [ - "pkg:rpm/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214069,7 +214112,7 @@ } ], "for_packages": [ - "pkg:rpm/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214121,7 +214164,7 @@ } ], "for_packages": [ - "pkg:rpm/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214173,7 +214216,7 @@ } ], "for_packages": [ - "pkg:rpm/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gmp@6.1.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214182,7 +214225,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214234,7 +214277,7 @@ } ], "for_packages": [ - "pkg:rpm/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnupg2@2.1.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214243,7 +214286,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214295,7 +214338,7 @@ } ], "for_packages": [ - "pkg:rpm/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214347,7 +214390,7 @@ } ], "for_packages": [ - "pkg:rpm/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214399,7 +214442,7 @@ } ], "for_packages": [ - "pkg:rpm/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gnutls@3.5.12?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214408,7 +214451,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214460,7 +214503,7 @@ } ], "for_packages": [ - "pkg:rpm/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gobject-introspection@1.52.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214469,7 +214512,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214521,7 +214564,7 @@ } ], "for_packages": [ - "pkg:rpm/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214573,7 +214616,7 @@ } ], "for_packages": [ - "pkg:rpm/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gpgme@1.9.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214582,7 +214625,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214634,7 +214677,7 @@ } ], "for_packages": [ - "pkg:rpm/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/grep@3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214643,7 +214686,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214695,7 +214738,7 @@ } ], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214704,7 +214747,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/gzip@1.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214713,7 +214756,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214765,7 +214808,7 @@ } ], "for_packages": [ - "pkg:rpm/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/info@6.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214774,7 +214817,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/keyutils-libs@1.5.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/keyutils-libs@1.5.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214783,7 +214826,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/keyutils-libs@1.5.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/keyutils-libs@1.5.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214792,7 +214835,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214844,7 +214887,7 @@ } ], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214853,7 +214896,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libarchive@3.2.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libarchive@3.2.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214905,7 +214948,7 @@ } ], "for_packages": [ - "pkg:rpm/libarchive@3.2.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libarchive@3.2.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214914,7 +214957,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -214966,7 +215009,7 @@ } ], "for_packages": [ - "pkg:rpm/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215018,7 +215061,7 @@ } ], "for_packages": [ - "pkg:rpm/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libassuan@2.4.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215027,7 +215070,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215036,7 +215079,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libcap-ng@0.7.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap-ng@0.7.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215088,7 +215131,7 @@ } ], "for_packages": [ - "pkg:rpm/libcap-ng@0.7.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap-ng@0.7.8?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215097,7 +215140,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcap@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215106,7 +215149,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libcom_err@1.43.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcom_err@1.43.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215115,7 +215158,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libcom_err@1.43.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcom_err@1.43.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215124,7 +215167,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libcurl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcurl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215176,7 +215219,7 @@ } ], "for_packages": [ - "pkg:rpm/libcurl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libcurl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215185,7 +215228,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215237,7 +215280,7 @@ } ], "for_packages": [ - "pkg:rpm/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215246,7 +215289,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdb@5.3.28?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215255,7 +215298,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215307,7 +215350,7 @@ } ], "for_packages": [ - "pkg:rpm/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libdnf@0.9.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215316,7 +215359,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215368,7 +215411,7 @@ } ], "for_packages": [ - "pkg:rpm/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215420,7 +215463,7 @@ } ], "for_packages": [ - "pkg:rpm/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libfdisk@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215429,7 +215472,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libffi@3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libffi@3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215481,7 +215524,7 @@ } ], "for_packages": [ - "pkg:rpm/libffi@3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libffi@3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215490,7 +215533,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215542,7 +215585,7 @@ } ], "for_packages": [ - "pkg:rpm/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215594,7 +215637,7 @@ } ], "for_packages": [ - "pkg:rpm/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215646,7 +215689,7 @@ } ], "for_packages": [ - "pkg:rpm/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215698,7 +215741,7 @@ } ], "for_packages": [ - "pkg:rpm/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215750,7 +215793,7 @@ } ], "for_packages": [ - "pkg:rpm/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcc@7.1.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215759,7 +215802,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215811,7 +215854,7 @@ } ], "for_packages": [ - "pkg:rpm/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgcrypt@1.7.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215820,7 +215863,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215872,7 +215915,7 @@ } ], "for_packages": [ - "pkg:rpm/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215924,7 +215967,7 @@ } ], "for_packages": [ - "pkg:rpm/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libgpg-error@1.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215933,7 +215976,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -215985,7 +216028,7 @@ } ], "for_packages": [ - "pkg:rpm/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216037,7 +216080,7 @@ } ], "for_packages": [ - "pkg:rpm/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216089,7 +216132,7 @@ } ], "for_packages": [ - "pkg:rpm/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216141,7 +216184,7 @@ } ], "for_packages": [ - "pkg:rpm/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libidn2@2.0.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216150,7 +216193,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216202,7 +216245,7 @@ } ], "for_packages": [ - "pkg:rpm/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216254,7 +216297,7 @@ } ], "for_packages": [ - "pkg:rpm/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216306,7 +216349,7 @@ } ], "for_packages": [ - "pkg:rpm/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216358,7 +216401,7 @@ } ], "for_packages": [ - "pkg:rpm/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libksba@1.3.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216367,7 +216410,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libmetalink@0.1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libmetalink@0.1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216419,7 +216462,7 @@ } ], "for_packages": [ - "pkg:rpm/libmetalink@0.1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libmetalink@0.1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216428,7 +216471,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216480,7 +216523,7 @@ } ], "for_packages": [ - "pkg:rpm/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216532,7 +216575,7 @@ } ], "for_packages": [ - "pkg:rpm/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libmount@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216541,7 +216584,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libnghttp2@1.21.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libnghttp2@1.21.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216593,7 +216636,7 @@ } ], "for_packages": [ - "pkg:rpm/libnghttp2@1.21.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libnghttp2@1.21.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216602,7 +216645,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216654,7 +216697,7 @@ } ], "for_packages": [ - "pkg:rpm/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpeas@1.20.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216663,7 +216706,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libpsl@0.17.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpsl@0.17.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216715,7 +216758,7 @@ } ], "for_packages": [ - "pkg:rpm/libpsl@0.17.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpsl@0.17.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216724,7 +216767,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216776,7 +216819,7 @@ } ], "for_packages": [ - "pkg:rpm/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libpwquality@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216785,7 +216828,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/librepo@1.7.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/librepo@1.7.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216837,7 +216880,7 @@ } ], "for_packages": [ - "pkg:rpm/librepo@1.7.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/librepo@1.7.20?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216846,7 +216889,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216898,7 +216941,7 @@ } ], "for_packages": [ - "pkg:rpm/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libselinux@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216907,7 +216950,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216959,7 +217002,7 @@ } ], "for_packages": [ - "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -216968,7 +217011,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsepol@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsepol@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217020,7 +217063,7 @@ } ], "for_packages": [ - "pkg:rpm/libsepol@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsepol@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217029,7 +217072,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsigsegv@2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsigsegv@2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217081,7 +217124,7 @@ } ], "for_packages": [ - "pkg:rpm/libsigsegv@2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsigsegv@2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217090,7 +217133,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217142,7 +217185,7 @@ } ], "for_packages": [ - "pkg:rpm/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217194,7 +217237,7 @@ } ], "for_packages": [ - "pkg:rpm/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsmartcols@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217203,7 +217246,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217255,7 +217298,7 @@ } ], "for_packages": [ - "pkg:rpm/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsolv@0.6.27?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217264,7 +217307,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libssh2@1.8.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libssh2@1.8.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217316,7 +217359,7 @@ } ], "for_packages": [ - "pkg:rpm/libssh2@1.8.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libssh2@1.8.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217325,7 +217368,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217377,7 +217420,7 @@ } ], "for_packages": [ - "pkg:rpm/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217429,7 +217472,7 @@ } ], "for_packages": [ - "pkg:rpm/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217438,7 +217481,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217490,7 +217533,7 @@ } ], "for_packages": [ - "pkg:rpm/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217542,7 +217585,7 @@ } ], "for_packages": [ - "pkg:rpm/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsss_nss_idmap@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217551,7 +217594,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217603,7 +217646,7 @@ } ], "for_packages": [ - "pkg:rpm/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217655,7 +217698,7 @@ } ], "for_packages": [ - "pkg:rpm/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libtasn1@4.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217664,7 +217707,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217716,7 +217759,7 @@ } ], "for_packages": [ - "pkg:rpm/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217768,7 +217811,7 @@ } ], "for_packages": [ - "pkg:rpm/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libunistring@0.9.7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217777,7 +217820,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217829,7 +217872,7 @@ } ], "for_packages": [ - "pkg:rpm/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libutempter@1.1.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217838,7 +217881,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217890,7 +217933,7 @@ } ], "for_packages": [ - "pkg:rpm/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217942,7 +217985,7 @@ } ], "for_packages": [ - "pkg:rpm/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libuuid@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -217951,7 +217994,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libverto@0.2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libverto@0.2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218003,7 +218046,7 @@ } ], "for_packages": [ - "pkg:rpm/libverto@0.2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libverto@0.2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218012,7 +218055,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218021,7 +218064,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libxml2@2.9.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218030,7 +218073,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/lzo@2.08?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/lzo@2.08?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218082,7 +218125,7 @@ } ], "for_packages": [ - "pkg:rpm/lzo@2.08?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/lzo@2.08?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218091,7 +218134,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/microdnf@2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/microdnf@2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218143,7 +218186,7 @@ } ], "for_packages": [ - "pkg:rpm/microdnf@2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/microdnf@2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218152,7 +218195,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218204,7 +218247,7 @@ } ], "for_packages": [ - "pkg:rpm/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218256,7 +218299,7 @@ } ], "for_packages": [ - "pkg:rpm/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/mpfr@3.1.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218265,7 +218308,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218317,7 +218360,7 @@ } ], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218326,7 +218369,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218378,7 +218421,7 @@ } ], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218430,7 +218473,7 @@ } ], "for_packages": [ - "pkg:rpm/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nettle@3.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218439,7 +218482,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218491,7 +218534,7 @@ } ], "for_packages": [ - "pkg:rpm/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218543,7 +218586,7 @@ } ], "for_packages": [ - "pkg:rpm/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/npth@1.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218552,7 +218595,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218604,7 +218647,7 @@ } ], "for_packages": [ - "pkg:rpm/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nspr@4.14.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218613,7 +218656,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218622,7 +218665,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss-pem@1.0.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-pem@1.0.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218674,7 +218717,7 @@ } ], "for_packages": [ - "pkg:rpm/nss-pem@1.0.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-pem@1.0.3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218683,7 +218726,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218735,7 +218778,7 @@ } ], "for_packages": [ - "pkg:rpm/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-softokn-freebl@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218744,7 +218787,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/nss-util@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-util@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218796,7 +218839,7 @@ } ], "for_packages": [ - "pkg:rpm/nss-util@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss-util@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218848,7 +218891,7 @@ } ], "for_packages": [ - "pkg:rpm/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/nss@3.30.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218857,7 +218900,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218866,7 +218909,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218918,7 +218961,7 @@ } ], "for_packages": [ - "pkg:rpm/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openldap@2.4.44?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218927,7 +218970,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218979,7 +219022,7 @@ } ], "for_packages": [ - "pkg:rpm/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/openssl-libs@1.1.0e?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -218988,7 +219031,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219040,7 +219083,7 @@ } ], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219049,7 +219092,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219058,7 +219101,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219067,7 +219110,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pam@1.3.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219076,7 +219119,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219128,7 +219171,7 @@ } ], "for_packages": [ - "pkg:rpm/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219137,7 +219180,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/pcre@8.40?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219146,7 +219189,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219198,7 +219241,7 @@ } ], "for_packages": [ - "pkg:rpm/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/popt@1.16?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219207,7 +219250,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219259,7 +219302,7 @@ } ], "for_packages": [ - "pkg:rpm/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219268,7 +219311,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219320,7 +219363,7 @@ } ], "for_packages": [ - "pkg:rpm/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/readline@7.0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219329,7 +219372,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219381,7 +219424,7 @@ } ], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219390,7 +219433,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/sed@4.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sed@4.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219442,7 +219485,7 @@ } ], "for_packages": [ - "pkg:rpm/sed@4.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sed@4.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219451,7 +219494,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219503,7 +219546,7 @@ } ], "for_packages": [ - "pkg:rpm/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/setup@2.10.5?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219512,7 +219555,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219521,7 +219564,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219530,7 +219573,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/shadow-utils@4.3.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219539,7 +219582,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219591,7 +219634,7 @@ } ], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219643,7 +219686,7 @@ } ], "for_packages": [ - "pkg:rpm/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/sssd-client@1.15.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219652,7 +219695,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219704,7 +219747,7 @@ } ], "for_packages": [ - "pkg:rpm/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/systemd-libs@233?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219713,7 +219756,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/tzdata@2017b?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/tzdata@2017b?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219765,7 +219808,7 @@ } ], "for_packages": [ - "pkg:rpm/tzdata@2017b?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/tzdata@2017b?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219774,7 +219817,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219826,7 +219869,7 @@ } ], "for_packages": [ - "pkg:rpm/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219878,7 +219921,7 @@ } ], "for_packages": [ - "pkg:rpm/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219930,7 +219973,7 @@ } ], "for_packages": [ - "pkg:rpm/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219982,7 +220025,7 @@ } ], "for_packages": [ - "pkg:rpm/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ustr@1.0.4?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -219991,7 +220034,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220043,7 +220086,7 @@ } ], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220095,7 +220138,7 @@ } ], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220147,7 +220190,7 @@ } ], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220199,7 +220242,7 @@ } ], "for_packages": [ - "pkg:rpm/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/util-linux@2.29.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220208,7 +220251,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/zlib@1.2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/zlib@1.2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220217,7 +220260,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/zlib@1.2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/zlib@1.2.11?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220226,7 +220269,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220235,7 +220278,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220244,7 +220287,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220253,7 +220296,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220262,7 +220305,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/glibc-common@2.25?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220271,7 +220314,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220280,7 +220323,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220289,7 +220332,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220298,7 +220341,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220307,7 +220350,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220316,7 +220359,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220325,7 +220368,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220334,7 +220377,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220343,7 +220386,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220352,7 +220395,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220361,7 +220404,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220370,7 +220413,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220379,7 +220422,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220388,7 +220431,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220397,7 +220440,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220406,7 +220449,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220415,7 +220458,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220424,7 +220467,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220433,7 +220476,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220442,7 +220485,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220451,7 +220494,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220460,7 +220503,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220469,7 +220512,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220478,7 +220521,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220487,7 +220530,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220496,7 +220539,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220505,7 +220548,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220514,7 +220557,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220523,7 +220566,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/p11-kit-trust@0.23.5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220532,7 +220575,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220541,7 +220584,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220550,7 +220593,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220559,7 +220602,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220568,7 +220611,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220577,7 +220620,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220586,7 +220629,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220595,7 +220638,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220604,7 +220647,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220613,7 +220656,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ca-certificates@2017.2.14?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220622,7 +220665,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220631,7 +220674,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/publicsuffix-list-dafsa@20170424?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220640,7 +220683,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220649,7 +220692,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220658,7 +220701,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220667,7 +220710,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220676,7 +220719,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220685,7 +220728,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220694,7 +220737,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220703,7 +220746,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220712,7 +220755,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220721,7 +220764,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220730,7 +220773,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220739,7 +220782,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220748,7 +220791,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220757,7 +220800,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220766,7 +220809,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220775,7 +220818,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220784,7 +220827,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220793,7 +220836,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220802,7 +220845,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220811,7 +220854,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220820,7 +220863,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220829,7 +220872,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220838,7 +220881,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220847,7 +220890,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220856,7 +220899,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220865,7 +220908,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220874,7 +220917,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220883,7 +220926,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220892,7 +220935,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220901,7 +220944,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220910,7 +220953,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220919,7 +220962,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220928,7 +220971,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220937,7 +220980,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220946,7 +220989,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220955,7 +220998,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220964,7 +221007,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220973,7 +221016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220982,7 +221025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -220991,7 +221034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221000,7 +221043,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221009,7 +221052,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221018,7 +221061,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221027,7 +221070,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221036,7 +221079,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221045,7 +221088,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221054,7 +221097,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221063,7 +221106,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221072,7 +221115,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221081,7 +221124,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221090,7 +221133,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221099,7 +221142,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221108,7 +221151,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221117,7 +221160,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221126,7 +221169,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221135,7 +221178,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221144,7 +221187,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221153,7 +221196,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221162,7 +221205,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221171,7 +221214,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221180,7 +221223,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221189,7 +221232,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221198,7 +221241,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221207,7 +221250,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221216,7 +221259,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221225,7 +221268,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221234,7 +221277,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221243,7 +221286,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221252,7 +221295,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221261,7 +221304,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221270,7 +221313,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221279,7 +221322,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221288,7 +221331,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221297,7 +221340,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221306,7 +221349,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221315,7 +221358,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221324,7 +221367,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221333,7 +221376,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221342,7 +221385,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221351,7 +221394,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221360,7 +221403,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221369,7 +221412,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221378,7 +221421,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221387,7 +221430,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221396,7 +221439,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221405,7 +221448,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221414,7 +221457,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221423,7 +221466,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221432,7 +221475,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221441,7 +221484,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221450,7 +221493,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221459,7 +221502,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221468,7 +221511,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221477,7 +221520,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221486,7 +221529,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221495,7 +221538,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221504,7 +221547,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221513,7 +221556,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221522,7 +221565,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221531,7 +221574,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221540,7 +221583,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221549,7 +221592,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221558,7 +221601,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221567,7 +221610,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221576,7 +221619,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221585,7 +221628,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221594,7 +221637,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221603,7 +221646,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221612,7 +221655,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221621,7 +221664,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221630,7 +221673,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221639,7 +221682,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221648,7 +221691,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221657,7 +221700,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221666,7 +221709,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221675,7 +221718,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221684,7 +221727,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221693,7 +221736,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221702,7 +221745,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221711,7 +221754,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221720,7 +221763,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221729,7 +221772,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221738,7 +221781,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221747,7 +221790,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221756,7 +221799,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221765,7 +221808,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221774,7 +221817,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221783,7 +221826,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221792,7 +221835,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221801,7 +221844,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221810,7 +221853,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221819,7 +221862,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221828,7 +221871,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221837,7 +221880,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221846,7 +221889,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221855,7 +221898,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221864,7 +221907,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221873,7 +221916,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221882,7 +221925,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221891,7 +221934,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221900,7 +221943,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221909,7 +221952,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221918,7 +221961,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221927,7 +221970,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221936,7 +221979,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221945,7 +221988,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221954,7 +221997,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221963,7 +222006,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221972,7 +222015,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221981,7 +222024,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221990,7 +222033,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -221999,7 +222042,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222008,7 +222051,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222017,7 +222060,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222026,7 +222069,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222035,7 +222078,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222044,7 +222087,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222053,7 +222096,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222062,7 +222105,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222071,7 +222114,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/ncurses-base@6.0?arch=noarch&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222080,7 +222123,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222089,7 +222132,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222098,7 +222141,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222114,7 +222157,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/curl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/curl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222123,7 +222166,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/curl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/curl@7.53.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222132,7 +222175,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222141,7 +222184,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222150,7 +222193,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222159,7 +222202,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222168,7 +222211,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222177,7 +222220,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222186,7 +222229,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222195,7 +222238,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222204,7 +222247,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222213,7 +222256,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222222,7 +222265,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222231,7 +222274,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222240,7 +222283,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222249,7 +222292,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/krb5-libs@1.15.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222258,7 +222301,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222267,7 +222310,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/chkconfig@1.10?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222290,7 +222333,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222299,7 +222342,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222308,7 +222351,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222317,7 +222360,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222340,7 +222383,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222349,7 +222392,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222358,7 +222401,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222381,7 +222424,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222390,7 +222433,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222399,7 +222442,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -222408,7 +222451,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438350,7 +438393,7 @@ } ], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438359,7 +438402,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438375,7 +438418,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438384,7 +438427,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438393,7 +438436,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438423,7 +438466,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438432,7 +438475,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438441,7 +438484,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438450,7 +438493,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:rpm/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/rpm@4.13.0.1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438459,7 +438502,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438468,7 +438511,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/libsemanage@2.6?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438477,7 +438520,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438486,7 +438529,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438565,7 +438608,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438574,7 +438617,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438583,7 +438626,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438592,7 +438635,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438601,7 +438644,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438610,7 +438653,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438619,7 +438662,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -438628,7 +438671,7 @@ "type": "directory", "package_data": [], "for_packages": [ - "pkg:rpm/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:rpm/fedora/filesystem@3.2?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } From 8797c9fb2af8f73e1663178afa61444d4f6f4a1d Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Wed, 8 May 2024 18:15:18 +0530 Subject: [PATCH 3/4] Update default package type for alpine apk packages Reference: https://github.com/nexB/scancode-toolkit/issues/3726 Reference: https://github.com/package-url/purl-spec/pull/171 Reference: https://github.com/package-url/purl-spec/issues/159 Signed-off-by: Ayan Sinha Mahapatra --- src/packagedcode/alpine.py | 6 +- ...r-layer.tar.xz-get-installed-expected.json | 234 +++++++------- ...-container-layer.tar.xz-scan-expected.json | 300 +++++++++--------- .../bluedevil/APKBUILD-expected.json | 4 +- .../breeze-grub/APKBUILD-expected.json | 16 +- .../breeze-gtk/APKBUILD-expected.json | 16 +- .../breeze-plymouth/APKBUILD-expected.json | 16 +- .../community/breeze/APKBUILD-expected.json | 16 +- .../community/discover/APKBUILD-expected.json | 4 +- .../community/drkonqi/APKBUILD-expected.json | 16 +- .../jool-modules-lts/APKBUILD-expected.json | 16 +- .../jool-modules-rpi/APKBUILD-expected.json | 16 +- .../kactivitymanagerd/APKBUILD-expected.json | 4 +- .../kde-cli-tools/APKBUILD-expected.json | 4 +- .../kde-gtk-config/APKBUILD-expected.json | 4 +- .../kdecoration/APKBUILD-expected.json | 4 +- .../kdeplasma-addons/APKBUILD-expected.json | 4 +- .../community/kgamma5/APKBUILD-expected.json | 16 +- .../community/khotkeys/APKBUILD-expected.json | 4 +- .../kinfocenter/APKBUILD-expected.json | 4 +- .../kmenuedit/APKBUILD-expected.json | 16 +- .../community/kscreen/APKBUILD-expected.json | 4 +- .../kscreenlocker/APKBUILD-expected.json | 4 +- .../ksshaskpass/APKBUILD-expected.json | 16 +- .../kwallet-pam/APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 4 +- .../kwayland-server/APKBUILD-expected.json | 4 +- .../community/kwin/APKBUILD-expected.json | 4 +- .../community/kwrited/APKBUILD-expected.json | 16 +- .../layer-shell-qt/APKBUILD-expected.json | 4 +- .../libkscreen/APKBUILD-expected.json | 4 +- .../libksysguard/APKBUILD-expected.json | 4 +- .../libreoffice/APKBUILD-expected.json | 16 +- .../community/milou/APKBUILD-expected.json | 4 +- .../community/mpd/APKBUILD-expected.json | 16 +- .../community/oxygen/APKBUILD-expected.json | 16 +- .../community/parole/APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 16 +- .../plasma-desktop/APKBUILD-expected.json | 4 +- .../plasma-disks/APKBUILD-expected.json | 16 +- .../plasma-firewall/APKBUILD-expected.json | 16 +- .../plasma-integration/APKBUILD-expected.json | 4 +- .../plasma-nano/APKBUILD-expected.json | 4 +- .../plasma-nm/APKBUILD-expected.json | 4 +- .../plasma-pa/APKBUILD-expected.json | 4 +- .../APKBUILD-expected.json | 4 +- .../plasma-sdk/APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 4 +- .../plasma-thunderbolt/APKBUILD-expected.json | 4 +- .../plasma-vault/APKBUILD-expected.json | 4 +- .../APKBUILD-expected.json | 16 +- .../plasma-workspace/APKBUILD-expected.json | 4 +- .../plymouth-kcm/APKBUILD-expected.json | 16 +- .../polkit-kde-agent-1/APKBUILD-expected.json | 16 +- .../powerdevil/APKBUILD-expected.json | 4 +- .../qqc2-breeze-style/APKBUILD-expected.json | 4 +- .../qt6-qtbase/APKBUILD-expected.json | 4 +- .../rtpengine-lts/APKBUILD-expected.json | 16 +- .../community/sddm-kcm/APKBUILD-expected.json | 4 +- .../systemsettings/APKBUILD-expected.json | 16 +- .../community/ufw/APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 16 +- .../main/cmake/APKBUILD-expected.json | 16 +- .../main/kamailio/APKBUILD-expected.json | 16 +- .../main/libburn/APKBUILD-expected.json | 16 +- .../main/linux-lts/APKBUILD-expected.json | 16 +- .../main/linux-rpi/APKBUILD-expected.json | 16 +- .../main/lua-unit/APKBUILD-expected.json | 16 +- .../main/sqlite-tcl/APKBUILD-expected.json | 4 +- .../main/sqlite/APKBUILD-expected.json | 4 +- .../alpine14/main/sqsh/APKBUILD-expected.json | 16 +- .../alpine14/main/sudo/APKBUILD-expected.json | 4 +- .../main/util-linux/APKBUILD-expected.json | 4 +- .../testing/linux-edge/APKBUILD-expected.json | 16 +- .../testing/linux-elm/APKBUILD-expected.json | 16 +- .../testing/linux-gru/APKBUILD-expected.json | 16 +- .../community/abook/APKBUILD-expected.json | 16 +- .../darktable/APKBUILD-expected.json | 16 +- .../community/haxe/APKBUILD-expected.json | 4 +- .../linux-firmware/APKBUILD-expected.json | 4 +- .../community/2bwm/APKBUILD-expected.json | 16 +- .../community/acccheck/APKBUILD-expected.json | 16 +- .../accerciser/APKBUILD-expected.json | 16 +- .../community/alpine/APKBUILD-expected.json | 16 +- .../audacious-plugins/APKBUILD-expected.json | 4 +- .../boost-build/APKBUILD-expected.json | 16 +- .../dircproxy/APKBUILD-expected.json | 16 +- .../community/faac/APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 16 +- .../community/gcc6/APKBUILD-expected.json | 4 +- .../hunspell-de-de/APKBUILD-expected.json | 16 +- .../imagemagick/APKBUILD-expected.json | 16 +- .../imagemagick6/APKBUILD-expected.json | 16 +- .../community/libluv/APKBUILD-expected.json | 16 +- .../nymphcast-client/APKBUILD-expected.json | 16 +- .../openjdk10/APKBUILD-expected.json | 16 +- .../py3-cairosvg/APKBUILD-expected.json | 16 +- .../community/qt6-qt3d/APKBUILD-expected.json | 4 +- .../ruby-rspec/APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 16 +- .../community/vtk/APKBUILD-expected.json | 16 +- .../community/zsnes/APKBUILD-expected.json | 16 +- .../alpine14/main/gcc/APKBUILD-expected.json | 4 +- .../alpine14/main/icu/APKBUILD-expected.json | 4 +- .../alpine14/main/ruby/APKBUILD-expected.json | 4 +- .../APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 4 +- .../APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 4 +- .../APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 16 +- .../gitlab-release-cli/APKBUILD-expected.json | 16 +- .../gtksourceviewmm3/APKBUILD-expected.json | 16 +- .../testing/pnmixer/APKBUILD-expected.json | 16 +- .../APKBUILD-expected.json | 16 +- .../buildbot/APKBUILD-expected.json | 16 +- .../full-installed/installed-expected.json | 56 ++-- .../rootfs/alpine-rootfs.tar.xz-expected.json | 296 ++++++++--------- .../single-installed/installed-expected.json | 16 +- .../small-installed/installed-expected.json | 56 ++-- tests/packagedcode/test_alpine.py | 6 +- 121 files changed, 1113 insertions(+), 1113 deletions(-) diff --git a/src/packagedcode/alpine.py b/src/packagedcode/alpine.py index e0ae10d020a..ae04c7c8a98 100644 --- a/src/packagedcode/alpine.py +++ b/src/packagedcode/alpine.py @@ -36,7 +36,7 @@ class AlpineApkArchiveHandler(models.DatafileHandler): datasource_id = 'alpine_apk_archive' path_patterns = ('*.apk',) filetypes = ('gzip compressed data',) - default_package_type = 'alpine' + default_package_type = 'apk' description = 'Alpine Linux .apk package archive' documentation_url = 'https://wiki.alpinelinux.org/wiki/Alpine_package_format' @@ -59,7 +59,7 @@ def get_license_detections_and_expression(package): class AlpineInstalledDatabaseHandler(models.DatafileHandler): datasource_id = 'alpine_installed_db' path_patterns = ('*lib/apk/db/installed',) - default_package_type = 'alpine' + default_package_type = 'apk' description = 'Alpine Linux installed package database' @classmethod @@ -130,7 +130,7 @@ def assemble(cls, package_data, resource, codebase, package_adder): class AlpineApkbuildHandler(models.DatafileHandler): datasource_id = 'alpine_apkbuild' path_patterns = ('*APKBUILD',) - default_package_type = 'alpine' + default_package_type = 'apk' description = 'Alpine Linux APKBUILD package script' documentation_url = 'https://wiki.alpinelinux.org/wiki/APKBUILD_Reference' diff --git a/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-get-installed-expected.json b/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-get-installed-expected.json index 1efd8a0ad44..9a4dfab9e9d 100644 --- a/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-get-installed-expected.json +++ b/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-get-installed-expected.json @@ -1,6 +1,6 @@ [ { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "alpine-baselayout-data", "version": "3.2.0-r22", @@ -83,7 +83,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -96,7 +96,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -105,7 +105,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -114,7 +114,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -123,7 +123,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -132,7 +132,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -141,7 +141,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -150,7 +150,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -159,7 +159,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -168,7 +168,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -177,7 +177,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -186,7 +186,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -195,7 +195,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -204,15 +204,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" + "purl": "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "musl", "version": "1.2.3-r0", @@ -295,7 +295,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -308,15 +308,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64" + "purl": "pkg:apk/alpine/musl@1.2.3-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "busybox", "version": "1.35.0-r15", @@ -399,7 +399,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -412,7 +412,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -421,7 +421,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -430,7 +430,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -439,7 +439,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -448,7 +448,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -457,15 +457,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64" + "purl": "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "alpine-baselayout", "version": "3.2.0-r22", @@ -566,7 +566,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -579,7 +579,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -588,7 +588,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -597,7 +597,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -606,7 +606,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -615,7 +615,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -624,7 +624,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -633,7 +633,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -642,7 +642,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -651,7 +651,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -660,7 +660,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -669,15 +669,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" + "purl": "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "alpine-keys", "version": "2.4-r1", @@ -922,7 +922,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -935,7 +935,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -944,7 +944,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -953,7 +953,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -962,7 +962,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -971,7 +971,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -980,7 +980,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -989,7 +989,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -998,7 +998,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1007,7 +1007,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1016,7 +1016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1025,7 +1025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1034,7 +1034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1043,7 +1043,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1052,7 +1052,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1061,7 +1061,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1070,7 +1070,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1079,7 +1079,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1088,7 +1088,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1097,7 +1097,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1106,7 +1106,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1115,7 +1115,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1124,15 +1124,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64" + "purl": "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "ca-certificates-bundle", "version": "20211220-r0", @@ -1215,7 +1215,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1228,15 +1228,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" + "purl": "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libcrypto1.1", "version": "1.1.1q-r0", @@ -1328,7 +1328,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1341,7 +1341,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1350,7 +1350,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1359,7 +1359,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1368,7 +1368,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1377,7 +1377,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1386,7 +1386,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1395,7 +1395,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1404,7 +1404,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1413,7 +1413,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1422,15 +1422,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libssl1.1", "version": "1.1.1q-r0", @@ -1513,7 +1513,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1526,15 +1526,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:apk/alpine/libssl1.1@1.1.1q-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "ssl_client", "version": "1.35.0-r15", @@ -1605,7 +1605,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1618,15 +1618,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64" + "purl": "pkg:apk/alpine/ssl_client@1.35.0-r15?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "zlib", "version": "1.2.12-r1", @@ -1709,7 +1709,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1722,15 +1722,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64" + "purl": "pkg:apk/alpine/zlib@1.2.12-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "apk-tools", "version": "2.12.9-r3", @@ -1801,7 +1801,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1814,7 +1814,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1823,15 +1823,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64" + "purl": "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "scanelf", "version": "1.3.4-r0", @@ -1902,7 +1902,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -1915,15 +1915,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64" + "purl": "pkg:apk/alpine/scanelf@1.3.4-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "musl-utils", "version": "1.2.3-r0", @@ -1994,7 +1994,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -2007,7 +2007,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2016,7 +2016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2025,7 +2025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2034,7 +2034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2043,15 +2043,15 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] } ], - "purl": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64" + "purl": "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libc-utils", "version": "0.7.2-r3", @@ -2122,7 +2122,7 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], @@ -2130,6 +2130,6 @@ "alpine_installed_db" ], "resources": [], - "purl": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64" } ] \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-scan-expected.json b/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-scan-expected.json index b8cc210403a..5f3054d0644 100644 --- a/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-scan-expected.json +++ b/tests/packagedcode/data/alpine/alpine-container-layer.tar.xz-scan-expected.json @@ -1,7 +1,7 @@ { "packages": [ { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "alpine-baselayout-data", "version": "3.2.0-r22", @@ -84,17 +84,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" + "purl": "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "musl", "version": "1.2.3-r0", @@ -177,17 +177,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64" + "purl": "pkg:apk/alpine/musl@1.2.3-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "busybox", "version": "1.35.0-r15", @@ -270,17 +270,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64" + "purl": "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "alpine-baselayout", "version": "3.2.0-r22", @@ -381,17 +381,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" + "purl": "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "alpine-keys", "version": "2.4-r1", @@ -636,17 +636,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64" + "purl": "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "ca-certificates-bundle", "version": "20211220-r0", @@ -729,17 +729,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" + "purl": "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libcrypto1.1", "version": "1.1.1q-r0", @@ -831,17 +831,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libssl1.1", "version": "1.1.1q-r0", @@ -924,17 +924,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:apk/alpine/libssl1.1@1.1.1q-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "ssl_client", "version": "1.35.0-r15", @@ -1005,17 +1005,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64" + "purl": "pkg:apk/alpine/ssl_client@1.35.0-r15?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "zlib", "version": "1.2.12-r1", @@ -1098,17 +1098,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64" + "purl": "pkg:apk/alpine/zlib@1.2.12-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "apk-tools", "version": "2.12.9-r3", @@ -1179,17 +1179,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64" + "purl": "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "scanelf", "version": "1.3.4-r0", @@ -1260,17 +1260,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64" + "purl": "pkg:apk/alpine/scanelf@1.3.4-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "musl-utils", "version": "1.2.3-r0", @@ -1341,17 +1341,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64" + "purl": "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libc-utils", "version": "0.7.2-r3", @@ -1422,14 +1422,14 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-container-layer.tar.xz/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64" } ], "dependencies": [ @@ -1443,7 +1443,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, @@ -1457,7 +1457,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/musl?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, @@ -1471,7 +1471,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, @@ -1485,7 +1485,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/scanelf?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, @@ -1499,7 +1499,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/musl-utils?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-container-layer.tar.xz/lib/apk/db/installed", "datasource_id": "alpine_installed_db" } @@ -1524,7 +1524,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1575,7 +1575,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1584,7 +1584,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1593,7 +1593,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1602,7 +1602,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1611,7 +1611,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1655,7 +1655,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1664,7 +1664,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1673,7 +1673,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1682,7 +1682,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1691,7 +1691,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1707,7 +1707,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1730,7 +1730,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1746,7 +1746,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1755,7 +1755,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1764,7 +1764,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1773,7 +1773,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1782,7 +1782,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1798,7 +1798,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1856,7 +1856,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1922,7 +1922,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1973,7 +1973,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1989,7 +1989,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1998,7 +1998,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2007,7 +2007,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2016,7 +2016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2039,7 +2039,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2048,7 +2048,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2057,7 +2057,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2066,7 +2066,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2089,7 +2089,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2098,7 +2098,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2107,7 +2107,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2123,7 +2123,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2132,7 +2132,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2141,7 +2141,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2150,7 +2150,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2166,7 +2166,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2182,7 +2182,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2219,7 +2219,7 @@ "type": "file", "package_data": [ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-baselayout-data", "version": "3.2.0-r22", @@ -2420,10 +2420,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64" + "purl": "pkg:apk/alpine-baselayout-data@3.2.0-r22?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "musl", "version": "1.2.3-r0", @@ -2516,10 +2516,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/musl@1.2.3-r0?arch=x86_64" + "purl": "pkg:apk/musl@1.2.3-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "busybox", "version": "1.35.0-r15", @@ -2657,10 +2657,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/busybox@1.35.0-r15?arch=x86_64" + "purl": "pkg:apk/busybox@1.35.0-r15?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-baselayout", "version": "3.2.0-r22", @@ -2872,10 +2872,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64" + "purl": "pkg:apk/alpine-baselayout@3.2.0-r22?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-keys", "version": "2.4-r1", @@ -3319,10 +3319,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64" + "purl": "pkg:apk/alpine-keys@2.4-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ca-certificates-bundle", "version": "20211220-r0", @@ -3415,10 +3415,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" + "purl": "pkg:apk/ca-certificates-bundle@20211220-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libcrypto1.1", "version": "1.1.1q-r0", @@ -3601,10 +3601,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:apk/libcrypto1.1@1.1.1q-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libssl1.1", "version": "1.1.1q-r0", @@ -3697,10 +3697,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64" + "purl": "pkg:apk/libssl1.1@1.1.1q-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ssl_client", "version": "1.35.0-r15", @@ -3784,10 +3784,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/ssl_client@1.35.0-r15?arch=x86_64" + "purl": "pkg:apk/ssl_client@1.35.0-r15?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "zlib", "version": "1.2.12-r1", @@ -3880,10 +3880,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/zlib@1.2.12-r1?arch=x86_64" + "purl": "pkg:apk/zlib@1.2.12-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "apk-tools", "version": "2.12.9-r3", @@ -3997,10 +3997,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64" + "purl": "pkg:apk/apk-tools@2.12.9-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "scanelf", "version": "1.3.4-r0", @@ -4084,10 +4084,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64" + "purl": "pkg:apk/scanelf@1.3.4-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "musl-utils", "version": "1.2.3-r0", @@ -4218,10 +4218,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64" + "purl": "pkg:apk/musl-utils@1.2.3-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libc-utils", "version": "0.7.2-r3", @@ -4306,7 +4306,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:apk/libc-utils@0.7.2-r3?arch=x86_64" } ], "for_packages": [], @@ -4345,7 +4345,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4354,7 +4354,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4363,7 +4363,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4372,7 +4372,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libssl1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4381,7 +4381,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/zlib@1.2.12-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4411,7 +4411,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4490,7 +4490,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/apk-tools@2.12.9-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4499,7 +4499,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4508,7 +4508,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r22?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4552,7 +4552,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4561,7 +4561,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4570,7 +4570,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4579,7 +4579,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4588,7 +4588,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/scanelf@1.3.4-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4597,7 +4597,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/ssl_client@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4620,7 +4620,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4629,7 +4629,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4638,7 +4638,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4717,7 +4717,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4726,7 +4726,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4735,7 +4735,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4744,7 +4744,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4753,7 +4753,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4762,7 +4762,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4771,7 +4771,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4780,7 +4780,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4789,7 +4789,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4798,7 +4798,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4807,7 +4807,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4816,7 +4816,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4825,7 +4825,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4834,7 +4834,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4843,7 +4843,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4852,7 +4852,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4861,7 +4861,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4947,7 +4947,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.35.0-r15?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/bluedevil/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/bluedevil/APKBUILD-expected.json index 3f959e7e5c2..9e777d0dbea 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/bluedevil/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/bluedevil/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "bluedevil", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/bluedevil@5.22.0-r0" + "purl": "pkg:apk/bluedevil@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-grub/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-grub/APKBUILD-expected.json index df77305970e..deadeba5ec0 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-grub/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-grub/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "breeze-grub", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-3.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-3.0-plus", + "spdx_license_expression": "GPL-3.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "matched_text": "gpl-3.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/breeze-grub@5.22.0-r0" + "purl": "pkg:apk/breeze-grub@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-gtk/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-gtk/APKBUILD-expected.json index e9ea90dc986..4f662b581e0 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-gtk/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-gtk/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "breeze-gtk", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "LGPL-2.1-only", "matches": [ { - "score": 50.0, + "license_expression": "lgpl-2.1", + "spdx_license_expression": "LGPL-2.1-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 4, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "lgpl-2.1", - "spdx_license_expression": "LGPL-2.1-only", - "rule_identifier": "spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE", "matched_text": "lgpl-2.1-only" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/breeze-gtk@5.22.0-r0" + "purl": "pkg:apk/breeze-gtk@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-plymouth/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-plymouth/APKBUILD-expected.json index 2a8b5c49cf3..84395ea97e1 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-plymouth/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze-plymouth/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "breeze-plymouth", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/breeze-plymouth@5.22.0-r0" + "purl": "pkg:apk/breeze-plymouth@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze/APKBUILD-expected.json index d61e833d4f9..b971ac99617 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/breeze/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "breeze", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/breeze@5.22.0-r0" + "purl": "pkg:apk/breeze@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/discover/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/discover/APKBUILD-expected.json index fa31963e042..50c76ba86e8 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/discover/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/discover/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "discover", "version": "5.22.0-r0", @@ -98,5 +98,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/discover@5.22.0-r0" + "purl": "pkg:apk/discover@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/drkonqi/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/drkonqi/APKBUILD-expected.json index aa0685676b7..14a572230ae 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/drkonqi/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/drkonqi/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "drkonqi", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/drkonqi@5.22.0-r0" + "purl": "pkg:apk/drkonqi@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/jool-modules-lts/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/jool-modules-lts/APKBUILD-expected.json index c160712d3ef..af2a4e3c44c 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/jool-modules-lts/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/jool-modules-lts/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "jool-modules-lts", "version": "5.10.43-r$((", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/jool-modules-lts@5.10.43-r%24%28%28" + "purl": "pkg:apk/jool-modules-lts@5.10.43-r%24%28%28" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/jool-modules-rpi/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/jool-modules-rpi/APKBUILD-expected.json index c160712d3ef..af2a4e3c44c 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/jool-modules-rpi/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/jool-modules-rpi/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "jool-modules-lts", "version": "5.10.43-r$((", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/jool-modules-lts@5.10.43-r%24%28%28" + "purl": "pkg:apk/jool-modules-lts@5.10.43-r%24%28%28" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kactivitymanagerd/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kactivitymanagerd/APKBUILD-expected.json index fcbcbbb9836..5967bcb35dd 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kactivitymanagerd/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kactivitymanagerd/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kactivitymanagerd", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kactivitymanagerd@5.22.0-r0" + "purl": "pkg:apk/kactivitymanagerd@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kde-cli-tools/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kde-cli-tools/APKBUILD-expected.json index fbdd389c365..eb5c31861a1 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kde-cli-tools/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kde-cli-tools/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kde-cli-tools", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kde-cli-tools@5.22.0-r0" + "purl": "pkg:apk/kde-cli-tools@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kde-gtk-config/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kde-gtk-config/APKBUILD-expected.json index 4d99fab15ba..555d2f732fb 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kde-gtk-config/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kde-gtk-config/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kde-gtk-config", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kde-gtk-config@5.22.0-r0" + "purl": "pkg:apk/kde-gtk-config@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kdecoration/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kdecoration/APKBUILD-expected.json index afaa90fd6f7..255365fea0e 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kdecoration/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kdecoration/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kdecoration", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kdecoration@5.22.0-r0" + "purl": "pkg:apk/kdecoration@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kdeplasma-addons/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kdeplasma-addons/APKBUILD-expected.json index ff5e4b00053..e96905150f3 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kdeplasma-addons/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kdeplasma-addons/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kdeplasma-addons", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kdeplasma-addons@5.22.0-r0" + "purl": "pkg:apk/kdeplasma-addons@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kgamma5/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kgamma5/APKBUILD-expected.json index 1c4bb9ab5d0..62e3736bf7d 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kgamma5/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kgamma5/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kgamma5", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kgamma5@5.22.0-r0" + "purl": "pkg:apk/kgamma5@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/khotkeys/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/khotkeys/APKBUILD-expected.json index 1ab837d84ca..6635779fd5a 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/khotkeys/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/khotkeys/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "khotkeys", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/khotkeys@5.22.0-r0" + "purl": "pkg:apk/khotkeys@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kinfocenter/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kinfocenter/APKBUILD-expected.json index 511b70e22bf..cad327d58f3 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kinfocenter/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kinfocenter/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kinfocenter", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kinfocenter@5.22.0-r0" + "purl": "pkg:apk/kinfocenter@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kmenuedit/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kmenuedit/APKBUILD-expected.json index 7e2454270bf..4d379201dfd 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kmenuedit/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kmenuedit/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kmenuedit", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kmenuedit@5.22.0-r0" + "purl": "pkg:apk/kmenuedit@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kscreen/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kscreen/APKBUILD-expected.json index f661be157ec..da14645deda 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kscreen/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kscreen/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kscreen", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kscreen@5.22.0-r0" + "purl": "pkg:apk/kscreen@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kscreenlocker/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kscreenlocker/APKBUILD-expected.json index 2f6e798b294..1ed72d29967 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kscreenlocker/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kscreenlocker/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kscreenlocker", "version": "5.22.0-r0", @@ -90,5 +90,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kscreenlocker@5.22.0-r0" + "purl": "pkg:apk/kscreenlocker@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/ksshaskpass/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/ksshaskpass/APKBUILD-expected.json index bb9843750c4..23dc9456601 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/ksshaskpass/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/ksshaskpass/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ksshaskpass", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/ksshaskpass@5.22.0-r0" + "purl": "pkg:apk/ksshaskpass@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwallet-pam/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwallet-pam/APKBUILD-expected.json index a8a6b8eda24..917299c8290 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwallet-pam/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwallet-pam/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kwallet-pam", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "LGPL-2.1-or-later", "matches": [ { - "score": 50.0, + "license_expression": "lgpl-2.1-plus", + "spdx_license_expression": "LGPL-2.1-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "lgpl-2.1-plus", - "spdx_license_expression": "LGPL-2.1-or-later", - "rule_identifier": "spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "matched_text": "lgpl-2.1-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kwallet-pam@5.22.0-r0" + "purl": "pkg:apk/kwallet-pam@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwayland-integration/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwayland-integration/APKBUILD-expected.json index 1f69989c255..9a9ea67ebec 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwayland-integration/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwayland-integration/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kwayland-integration", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kwayland-integration@5.22.0-r0" + "purl": "pkg:apk/kwayland-integration@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwayland-server/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwayland-server/APKBUILD-expected.json index c535bfe0e5b..963d742cc63 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwayland-server/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwayland-server/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kwayland-server", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kwayland-server@5.22.0-r0" + "purl": "pkg:apk/kwayland-server@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwin/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwin/APKBUILD-expected.json index cf80f9d2f3e..282f4e3b788 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwin/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwin/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kwin", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kwin@5.22.0-r0" + "purl": "pkg:apk/kwin@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwrited/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwrited/APKBUILD-expected.json index 66546879e0f..0d771ab9351 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwrited/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/kwrited/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kwrited", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kwrited@5.22.0-r0" + "purl": "pkg:apk/kwrited@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/layer-shell-qt/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/layer-shell-qt/APKBUILD-expected.json index 0d4e95517a9..78a582fd6dd 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/layer-shell-qt/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/layer-shell-qt/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "layer-shell-qt", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/layer-shell-qt@5.22.0-r0" + "purl": "pkg:apk/layer-shell-qt@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libkscreen/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libkscreen/APKBUILD-expected.json index 35898eb82d4..30203d20fe8 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libkscreen/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libkscreen/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libkscreen", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/libkscreen@5.22.0-r0" + "purl": "pkg:apk/libkscreen@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libksysguard/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libksysguard/APKBUILD-expected.json index f9004df6f97..439b43df315 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libksysguard/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libksysguard/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libksysguard", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/libksysguard@5.22.0-r0" + "purl": "pkg:apk/libksysguard@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libreoffice/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libreoffice/APKBUILD-expected.json index 11de8288d91..92ad1d8156a 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libreoffice/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/libreoffice/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libreoffice", "version": "6.4.6.2-r11", @@ -30,17 +30,17 @@ "license_expression_spdx": "MPL-2.0", "matches": [ { - "score": 50.0, + "license_expression": "mpl-2.0", + "spdx_license_expression": "MPL-2.0", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "mpl-2.0", - "spdx_license_expression": "MPL-2.0", - "rule_identifier": "spdx_license_id_mpl-2.0_for_mpl-2.0.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_mpl-2.0_for_mpl-2.0.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE", "matched_text": "mpl-2.0" } @@ -306,5 +306,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/libreoffice@6.4.6.2-r11" + "purl": "pkg:apk/libreoffice@6.4.6.2-r11" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/milou/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/milou/APKBUILD-expected.json index 6c37d66d102..2c75061f15f 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/milou/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/milou/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "milou", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/milou@5.22.0-r0" + "purl": "pkg:apk/milou@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/mpd/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/mpd/APKBUILD-expected.json index 6a91488fc13..a9aae8c79e8 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/mpd/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/mpd/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "mpd", "version": "0.22.8-r2", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -122,5 +122,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/mpd@0.22.8-r2" + "purl": "pkg:apk/mpd@0.22.8-r2" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/oxygen/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/oxygen/APKBUILD-expected.json index 5538c00a638..a542561ae85 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/oxygen/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/oxygen/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "oxygen", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "LGPL-2.1-or-later", "matches": [ { - "score": 50.0, + "license_expression": "lgpl-2.1-plus", + "spdx_license_expression": "LGPL-2.1-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "lgpl-2.1-plus", - "spdx_license_expression": "LGPL-2.1-or-later", - "rule_identifier": "spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "matched_text": "lgpl-2.1-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/oxygen@5.22.0-r0" + "purl": "pkg:apk/oxygen@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/parole/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/parole/APKBUILD-expected.json index dabb9faead6..2f15ec33160 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/parole/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/parole/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "parole", "version": "1.0.5-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/parole@1.0.5-r0" + "purl": "pkg:apk/parole@1.0.5-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-browser-integration/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-browser-integration/APKBUILD-expected.json index 36940b793bf..44185ba15f2 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-browser-integration/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-browser-integration/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-browser-integration", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-3.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-3.0-plus", + "spdx_license_expression": "GPL-3.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "matched_text": "gpl-3.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-browser-integration@5.22.0-r0" + "purl": "pkg:apk/plasma-browser-integration@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-desktop/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-desktop/APKBUILD-expected.json index d65e8b9bcb9..0697beb451b 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-desktop/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-desktop/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-desktop", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-desktop@5.22.0-r0" + "purl": "pkg:apk/plasma-desktop@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-disks/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-disks/APKBUILD-expected.json index f97f47e514a..88a807a8bc9 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-disks/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-disks/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-disks", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-disks@5.22.0-r0" + "purl": "pkg:apk/plasma-disks@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-firewall/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-firewall/APKBUILD-expected.json index bed393ad7e0..5090aa99441 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-firewall/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-firewall/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-firewall", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-firewall@5.22.0-r0" + "purl": "pkg:apk/plasma-firewall@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-integration/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-integration/APKBUILD-expected.json index b8599062add..c7dec53258f 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-integration/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-integration/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-integration", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-integration@5.22.0-r0" + "purl": "pkg:apk/plasma-integration@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-nano/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-nano/APKBUILD-expected.json index b714c155144..65887c1c82c 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-nano/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-nano/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-nano", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-nano@5.22.0-r0" + "purl": "pkg:apk/plasma-nano@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-nm/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-nm/APKBUILD-expected.json index ef7d5de792b..5819ed0f457 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-nm/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-nm/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-nm", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-nm@5.22.0-r0" + "purl": "pkg:apk/plasma-nm@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-pa/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-pa/APKBUILD-expected.json index 28560628d4d..db652c13b71 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-pa/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-pa/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-pa", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-pa@5.22.0-r0" + "purl": "pkg:apk/plasma-pa@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-phone-components/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-phone-components/APKBUILD-expected.json index 62706cfe121..82b802e3679 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-phone-components/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-phone-components/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-phone-components", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-phone-components@5.22.0-r0" + "purl": "pkg:apk/plasma-phone-components@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-sdk/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-sdk/APKBUILD-expected.json index 9edab3a014b..0d188ffed01 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-sdk/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-sdk/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-sdk", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-sdk@5.22.0-r0" + "purl": "pkg:apk/plasma-sdk@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-systemmonitor/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-systemmonitor/APKBUILD-expected.json index 3f931b950f7..7ed7f609520 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-systemmonitor/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-systemmonitor/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-systemmonitor", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-systemmonitor@5.22.0-r0" + "purl": "pkg:apk/plasma-systemmonitor@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-thunderbolt/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-thunderbolt/APKBUILD-expected.json index 8a7ad53b596..4ab72fd508a 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-thunderbolt/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-thunderbolt/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-thunderbolt", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-thunderbolt@5.22.0-r0" + "purl": "pkg:apk/plasma-thunderbolt@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-vault/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-vault/APKBUILD-expected.json index cce09c3ff54..ba22ba7ac42 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-vault/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-vault/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-vault", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-vault@5.22.0-r0" + "purl": "pkg:apk/plasma-vault@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-workspace-wallpapers/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-workspace-wallpapers/APKBUILD-expected.json index 07affdea67c..382f6baa4b4 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-workspace-wallpapers/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-workspace-wallpapers/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-workspace-wallpapers", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-workspace-wallpapers@5.22.0-r0" + "purl": "pkg:apk/plasma-workspace-wallpapers@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-workspace/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-workspace/APKBUILD-expected.json index 7938b813a92..68ce66d4cd5 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-workspace/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plasma-workspace/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plasma-workspace", "version": "5.22.0-r2", @@ -82,5 +82,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plasma-workspace@5.22.0-r2" + "purl": "pkg:apk/plasma-workspace@5.22.0-r2" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plymouth-kcm/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plymouth-kcm/APKBUILD-expected.json index e7c703db621..3cbad324314 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plymouth-kcm/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/plymouth-kcm/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "plymouth-kcm", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/plymouth-kcm@5.22.0-r0" + "purl": "pkg:apk/plymouth-kcm@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/polkit-kde-agent-1/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/polkit-kde-agent-1/APKBUILD-expected.json index 61cefd7c6ac..4fe5aaef96c 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/polkit-kde-agent-1/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/polkit-kde-agent-1/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "polkit-kde-agent-1", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/polkit-kde-agent-1@5.22.0-r0" + "purl": "pkg:apk/polkit-kde-agent-1@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/powerdevil/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/powerdevil/APKBUILD-expected.json index e111ee9240e..0a6a9568293 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/powerdevil/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/powerdevil/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "powerdevil", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/powerdevil@5.22.0-r0" + "purl": "pkg:apk/powerdevil@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/qqc2-breeze-style/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/qqc2-breeze-style/APKBUILD-expected.json index a49177eb6a0..4b74e231a8a 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/qqc2-breeze-style/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/qqc2-breeze-style/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "qqc2-breeze-style", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/qqc2-breeze-style@5.22.0-r0" + "purl": "pkg:apk/qqc2-breeze-style@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/qt6-qtbase/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/qt6-qtbase/APKBUILD-expected.json index 891f84336bc..2f4c3d6fc7b 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/qt6-qtbase/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/qt6-qtbase/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "qt6-qtbase", "version": "6.1.1-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/qt6-qtbase@6.1.1-r0" + "purl": "pkg:apk/qt6-qtbase@6.1.1-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/rtpengine-lts/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/rtpengine-lts/APKBUILD-expected.json index 49d35829d0e..73045a5d230 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/rtpengine-lts/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/rtpengine-lts/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "rtpengine-lts", "version": "5.10.43-r$((0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-3.0-only", "matches": [ { - "score": 50.0, + "license_expression": "gpl-3.0", + "spdx_license_expression": "GPL-3.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 4, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-3.0", - "spdx_license_expression": "GPL-3.0-only", - "rule_identifier": "spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE", "matched_text": "gpl-3.0-only" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/rtpengine-lts@5.10.43-r%24%28%280" + "purl": "pkg:apk/rtpengine-lts@5.10.43-r%24%28%280" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/sddm-kcm/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/sddm-kcm/APKBUILD-expected.json index ef1aa01bb13..9190da7bbb8 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/sddm-kcm/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/sddm-kcm/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "sddm-kcm", "version": "5.22.0-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/sddm-kcm@5.22.0-r0" + "purl": "pkg:apk/sddm-kcm@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/systemsettings/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/systemsettings/APKBUILD-expected.json index 79a4dc9a3ff..742b392b619 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/systemsettings/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/systemsettings/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "systemsettings", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/systemsettings@5.22.0-r0" + "purl": "pkg:apk/systemsettings@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/ufw/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/ufw/APKBUILD-expected.json index 1b950bd84e3..b240b9f6352 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/ufw/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/ufw/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ufw", "version": "0.36-r4", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-3.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-3.0-plus", + "spdx_license_expression": "GPL-3.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "matched_text": "gpl-3.0-or-later" } @@ -90,5 +90,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/ufw@0.36-r4" + "purl": "pkg:apk/ufw@0.36-r4" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/xdg-desktop-portal-kde/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/xdg-desktop-portal-kde/APKBUILD-expected.json index 572ff7046c4..885e0ce355d 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/xdg-desktop-portal-kde/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/community/xdg-desktop-portal-kde/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "xdg-desktop-portal-kde", "version": "5.22.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "LGPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "lgpl-2.0-plus", + "spdx_license_expression": "LGPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "lgpl-2.0-plus", - "spdx_license_expression": "LGPL-2.0-or-later", - "rule_identifier": "spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE", "matched_text": "lgpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/xdg-desktop-portal-kde@5.22.0-r0" + "purl": "pkg:apk/xdg-desktop-portal-kde@5.22.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/cmake/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/cmake/APKBUILD-expected.json index f2272866281..9e2a306d87b 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/cmake/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/cmake/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "cmake", "version": "3.20.3-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSD-3-Clause", "matches": [ { - "score": 100.0, + "license_expression": "bsd-new", + "spdx_license_expression": "BSD-3-Clause", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "rule_identifier": "bsd-new_10.RULE", "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": "bsd-3-clause" } @@ -82,5 +82,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/cmake@3.20.3-r0" + "purl": "pkg:apk/cmake@3.20.3-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/kamailio/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/kamailio/APKBUILD-expected.json index 99bc1265341..351c6aa8341 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/kamailio/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/kamailio/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "kamailio", "version": "5.4.5-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -82,5 +82,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/kamailio@5.4.5-r0" + "purl": "pkg:apk/kamailio@5.4.5-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/libburn/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/libburn/APKBUILD-expected.json index 1e8cf2fc1d9..584bb16a449 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/libburn/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/libburn/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libburn", "version": "1.5.4-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/libburn@1.5.4-r0" + "purl": "pkg:apk/libburn@1.5.4-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/linux-lts/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/linux-lts/APKBUILD-expected.json index 5516e225b6a..3f08b1555a8 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/linux-lts/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/linux-lts/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "linux-lts", "version": "5.10.43-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "gpl-2.0_52.RULE", "rule_relevance": 100, + "rule_identifier": "gpl-2.0_52.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_52.RULE", "matched_text": "gpl-2.0" } @@ -206,5 +206,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/linux-lts@5.10.43-r0" + "purl": "pkg:apk/linux-lts@5.10.43-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/linux-rpi/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/linux-rpi/APKBUILD-expected.json index 77d6ffd871a..432d770e8c2 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/linux-rpi/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/linux-rpi/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "linux-rpi", "version": "5.10.43-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "gpl-2.0_52.RULE", "rule_relevance": 100, + "rule_identifier": "gpl-2.0_52.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_52.RULE", "matched_text": "gpl-2.0" } @@ -146,5 +146,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/linux-rpi@5.10.43-r0" + "purl": "pkg:apk/linux-rpi@5.10.43-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/lua-unit/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/lua-unit/APKBUILD-expected.json index 25cc70c8554..c77cdfa2106 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/lua-unit/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/lua-unit/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "lua-unit", "version": "3.3-r2", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSD-2-Clause", "matches": [ { - "score": 100.0, + "license_expression": "bsd-simplified", + "spdx_license_expression": "BSD-2-Clause", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "bsd-simplified", - "spdx_license_expression": "BSD-2-Clause", - "rule_identifier": "spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE", "rule_relevance": 100, + "rule_identifier": "spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE", "matched_text": "bsd-2-clause" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/lua-unit@3.3-r2" + "purl": "pkg:apk/lua-unit@3.3-r2" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqlite-tcl/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqlite-tcl/APKBUILD-expected.json index e2fb61ba016..f8e63a8a180 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqlite-tcl/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqlite-tcl/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "sqlite-tcl", "version": "3.35.5-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/sqlite-tcl@3.35.5-r0" + "purl": "pkg:apk/sqlite-tcl@3.35.5-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqlite/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqlite/APKBUILD-expected.json index a5cbd8ee88e..4db0d9e390b 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqlite/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqlite/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "sqlite", "version": "3.35.5-r0", @@ -82,5 +82,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/sqlite@3.35.5-r0" + "purl": "pkg:apk/sqlite@3.35.5-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqsh/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqsh/APKBUILD-expected.json index 1425348a540..e54ae3de347 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqsh/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqsh/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "sqsh", "version": "2.5.16.1-r4", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-1.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-1.0-plus", + "spdx_license_expression": "GPL-1.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-1.0-plus", - "spdx_license_expression": "GPL-1.0-or-later", - "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "matched_text": "gpl-1.0-or-later" } @@ -90,5 +90,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/sqsh@2.5.16.1-r4" + "purl": "pkg:apk/sqsh@2.5.16.1-r4" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sudo/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sudo/APKBUILD-expected.json index 311afeb1f2d..96767363a99 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sudo/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sudo/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "sudo", "version": "1.9.6_p1-r1", @@ -90,5 +90,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/sudo@1.9.6_p1-r1" + "purl": "pkg:apk/sudo@1.9.6_p1-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/util-linux/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/util-linux/APKBUILD-expected.json index 1f2994a3869..d3aa0167f26 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/util-linux/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/util-linux/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "util-linux", "version": "2.37-r0", @@ -98,5 +98,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/util-linux@2.37-r0" + "purl": "pkg:apk/util-linux@2.37-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-edge/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-edge/APKBUILD-expected.json index 744116bd9b1..d6f7fcb3e4c 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-edge/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-edge/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "linux-edge", "version": "5.12.10-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "gpl-2.0_52.RULE", "rule_relevance": 100, + "rule_identifier": "gpl-2.0_52.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_52.RULE", "matched_text": "gpl-2.0" } @@ -102,5 +102,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/linux-edge@5.12.10-r0" + "purl": "pkg:apk/linux-edge@5.12.10-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-elm/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-elm/APKBUILD-expected.json index a8b4382de51..c7a246fb09e 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-elm/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-elm/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "linux-elm", "version": "5.12.10-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "gpl-2.0_52.RULE", "rule_relevance": 100, + "rule_identifier": "gpl-2.0_52.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_52.RULE", "matched_text": "gpl-2.0" } @@ -98,5 +98,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/linux-elm@5.12.10-r0" + "purl": "pkg:apk/linux-elm@5.12.10-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-gru/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-gru/APKBUILD-expected.json index 591e7f1d67b..506f763abf7 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-gru/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/testing/linux-gru/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "linux-gru", "version": "5.12.10-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "gpl-2.0_52.RULE", "rule_relevance": 100, + "rule_identifier": "gpl-2.0_52.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_52.RULE", "matched_text": "gpl-2.0" } @@ -94,5 +94,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/linux-gru@5.12.10-r0" + "purl": "pkg:apk/linux-gru@5.12.10-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine13/community/abook/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine13/community/abook/APKBUILD-expected.json index 00eb86cdf44..50fdb3152a6 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine13/community/abook/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine13/community/abook/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "abook", "version": "0.6.1-r5", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -82,5 +82,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/abook@0.6.1-r5" + "purl": "pkg:apk/abook@0.6.1-r5" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine13/community/darktable/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine13/community/darktable/APKBUILD-expected.json index 966f1077fb8..64badf9d2fb 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine13/community/darktable/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine13/community/darktable/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "darktable", "version": "3.4.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-3.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-3.0-plus", + "spdx_license_expression": "GPL-3.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "matched_text": "gpl-3.0-or-later" } @@ -98,5 +98,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/darktable@3.4.0-r0" + "purl": "pkg:apk/darktable@3.4.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine13/community/haxe/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine13/community/haxe/APKBUILD-expected.json index 0ad3a3a7322..621bd4359a3 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine13/community/haxe/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine13/community/haxe/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "haxe", "version": "3.4.7-r1", @@ -98,5 +98,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/haxe@3.4.7-r1" + "purl": "pkg:apk/haxe@3.4.7-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine13/main/linux-firmware/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine13/main/linux-firmware/APKBUILD-expected.json index 9274cb21757..f8c06ade7de 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine13/main/linux-firmware/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine13/main/linux-firmware/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "linux-firmware", "version": "20201218-r0", @@ -90,5 +90,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/linux-firmware@20201218-r0" + "purl": "pkg:apk/linux-firmware@20201218-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/2bwm/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/2bwm/APKBUILD-expected.json index e4f6a8da663..cb74dfc04a5 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/2bwm/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/2bwm/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "2bwm", "version": "0.3-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "ISC", "matches": [ { - "score": 100.0, + "license_expression": "isc", + "spdx_license_expression": "ISC", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-spdx-id", + "score": 100.0, "matched_length": 1, "match_coverage": 100.0, - "matcher": "1-spdx-id", - "license_expression": "isc", - "spdx_license_expression": "ISC", - "rule_identifier": "spdx-license-identifier-isc-fd23252ced2c9184cff91208f30a380cf105f995", "rule_relevance": 100, + "rule_identifier": "spdx-license-identifier-isc-fd23252ced2c9184cff91208f30a380cf105f995", "rule_url": null, "matched_text": "isc" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/2bwm@0.3-r0" + "purl": "pkg:apk/2bwm@0.3-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/acccheck/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/acccheck/APKBUILD-expected.json index 062f591a81a..255233f71ca 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/acccheck/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/acccheck/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "acccheck", "version": "0.2.1-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "gpl-2.0_52.RULE", "rule_relevance": 100, + "rule_identifier": "gpl-2.0_52.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_52.RULE", "matched_text": "gpl-2.0" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/acccheck@0.2.1-r1" + "purl": "pkg:apk/acccheck@0.2.1-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/accerciser/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/accerciser/APKBUILD-expected.json index f6879798083..af851a5b805 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/accerciser/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/accerciser/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "accerciser", "version": "3.38.0-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSD-3-Clause", "matches": [ { - "score": 100.0, + "license_expression": "bsd-new", + "spdx_license_expression": "BSD-3-Clause", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "rule_identifier": "bsd-new_10.RULE", "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": "bsd-3-clause" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/accerciser@3.38.0-r1" + "purl": "pkg:apk/accerciser@3.38.0-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/alpine/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/alpine/APKBUILD-expected.json index 34226abf52f..0b30e68fa10 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/alpine/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/alpine/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine", "version": "2.24-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "Apache-2.0", "matches": [ { - "score": 100.0, + "license_expression": "apache-2.0", + "spdx_license_expression": "Apache-2.0", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "apache-2.0", - "spdx_license_expression": "Apache-2.0", - "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", "rule_relevance": 100, + "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE", "matched_text": "apache-2.0" } @@ -82,5 +82,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/alpine@2.24-r0" + "purl": "pkg:apk/alpine@2.24-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/audacious-plugins/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/audacious-plugins/APKBUILD-expected.json index fa3c3842c0b..95244fe7c72 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/audacious-plugins/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/audacious-plugins/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "audacious-plugins", "version": "4.0.5-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/audacious-plugins@4.0.5-r0" + "purl": "pkg:apk/audacious-plugins@4.0.5-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/boost-build/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/boost-build/APKBUILD-expected.json index 15c463be0e3..70fc22720d7 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/boost-build/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/boost-build/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "boost-build", "version": "1.76.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSL-1.0", "matches": [ { - "score": 50.0, + "license_expression": "boost-1.0", + "spdx_license_expression": "BSL-1.0", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "boost-1.0", - "spdx_license_expression": "BSL-1.0", - "rule_identifier": "boost-1.0_48.RULE", "rule_relevance": 50, + "rule_identifier": "boost-1.0_48.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/boost-1.0_48.RULE", "matched_text": "bsl-1.0" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/boost-build@1.76.0-r0" + "purl": "pkg:apk/boost-build@1.76.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/dircproxy/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/dircproxy/APKBUILD-expected.json index d573365c106..c4fc77463c9 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/dircproxy/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/dircproxy/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "dircproxy", "version": "1.2.0_rc-r2", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-2.0-plus", + "spdx_license_expression": "GPL-2.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0-plus", - "spdx_license_expression": "GPL-2.0-or-later", - "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE", "matched_text": "gpl-2.0-or-later" } @@ -106,5 +106,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/dircproxy@1.2.0_rc-r2" + "purl": "pkg:apk/dircproxy@1.2.0_rc-r2" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/faac/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/faac/APKBUILD-expected.json index e0bfb283ec3..d2f7eca0f79 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/faac/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/faac/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "faac", "version": "1.30-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-3.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-3.0-plus", + "spdx_license_expression": "GPL-3.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "matched_text": "gpl-3.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/faac@1.30-r1" + "purl": "pkg:apk/faac@1.30-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/feedbackd-device-themes/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/feedbackd-device-themes/APKBUILD-expected.json index 4fc0b8ccb74..11d7b3fe466 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/feedbackd-device-themes/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/feedbackd-device-themes/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "feedbackd-device-themes", "version": "0_git20210126-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-3.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-3.0-plus", + "spdx_license_expression": "GPL-3.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-3.0-plus", - "spdx_license_expression": "GPL-3.0-or-later", - "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE", "matched_text": "gpl-3.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/feedbackd-device-themes@0_git20210126-r0" + "purl": "pkg:apk/feedbackd-device-themes@0_git20210126-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/gcc6/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/gcc6/APKBUILD-expected.json index 2762ec76ed9..3621f05f4dc 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/gcc6/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/gcc6/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "gcc6", "version": "6.4.0-r12", @@ -386,5 +386,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/gcc6@6.4.0-r12" + "purl": "pkg:apk/gcc6@6.4.0-r12" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/hunspell-de-de/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/hunspell-de-de/APKBUILD-expected.json index 09dc27c77f0..a4b536fa789 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/hunspell-de-de/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/hunspell-de-de/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "hunspell-de-de", "version": "20170112-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-3.0-only", "matches": [ { - "score": 50.0, + "license_expression": "gpl-3.0", + "spdx_license_expression": "GPL-3.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 4, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-3.0", - "spdx_license_expression": "GPL-3.0-only", - "rule_identifier": "spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE", "matched_text": "gpl-3.0-only" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/hunspell-de-de@20170112-r0" + "purl": "pkg:apk/hunspell-de-de@20170112-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/imagemagick/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/imagemagick/APKBUILD-expected.json index c74c1616022..9b8e8bc44d3 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/imagemagick/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/imagemagick/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "imagemagick", "version": "7.0.11.13-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "ImageMagick", "matches": [ { - "score": 100.0, + "license_expression": "imagemagick", + "spdx_license_expression": "ImageMagick", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-spdx-id", + "score": 100.0, "matched_length": 1, "match_coverage": 100.0, - "matcher": "1-spdx-id", - "license_expression": "imagemagick", - "spdx_license_expression": "ImageMagick", - "rule_identifier": "spdx-license-identifier-imagemagick-0dd8f5c123a82d3e8b7c6d577c371911a89076bb", "rule_relevance": 100, + "rule_identifier": "spdx-license-identifier-imagemagick-0dd8f5c123a82d3e8b7c6d577c371911a89076bb", "rule_url": null, "matched_text": "imagemagick" } @@ -82,5 +82,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/imagemagick@7.0.11.13-r0" + "purl": "pkg:apk/imagemagick@7.0.11.13-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/imagemagick6/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/imagemagick6/APKBUILD-expected.json index bfad352408a..93e0e676ad4 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/imagemagick6/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/imagemagick6/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "imagemagick6", "version": "6.9.11.55-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "Apache-2.0", "matches": [ { - "score": 100.0, + "license_expression": "apache-2.0", + "spdx_license_expression": "Apache-2.0", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "apache-2.0", - "spdx_license_expression": "Apache-2.0", - "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", "rule_relevance": 100, + "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE", "matched_text": "apache-2.0" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/imagemagick6@6.9.11.55-r0" + "purl": "pkg:apk/imagemagick6@6.9.11.55-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/libluv/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/libluv/APKBUILD-expected.json index 57b27ff9395..cb7a4769758 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/libluv/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/libluv/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libluv", "version": "1.36.0.0-r2", @@ -30,17 +30,17 @@ "license_expression_spdx": "Apache-2.0", "matches": [ { - "score": 100.0, + "license_expression": "apache-2.0", + "spdx_license_expression": "Apache-2.0", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "apache-2.0", - "spdx_license_expression": "Apache-2.0", - "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", "rule_relevance": 100, + "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE", "matched_text": "apache-2.0" } @@ -90,5 +90,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/libluv@1.36.0.0-r2" + "purl": "pkg:apk/libluv@1.36.0.0-r2" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/nymphcast-client/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/nymphcast-client/APKBUILD-expected.json index 32012d0ef54..4b68f1a6129 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/nymphcast-client/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/nymphcast-client/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "nymphcast-client", "version": "0.1_alpha4-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSD-3-Clause", "matches": [ { - "score": 100.0, + "license_expression": "bsd-new", + "spdx_license_expression": "BSD-3-Clause", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "rule_identifier": "bsd-new_10.RULE", "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": "bsd-3-clause" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/nymphcast-client@0.1_alpha4-r0" + "purl": "pkg:apk/nymphcast-client@0.1_alpha4-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/openjdk10/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/openjdk10/APKBUILD-expected.json index 6a091b1c7c6..748fe8006fc 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/openjdk10/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/openjdk10/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "openjdk10", "version": "10.0.2_p13-r3", @@ -30,17 +30,17 @@ "license_expression_spdx": "Classpath-exception-2.0", "matches": [ { - "score": 100.0, + "license_expression": "classpath-exception-2.0", + "spdx_license_expression": "Classpath-exception-2.0", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 6, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "classpath-exception-2.0", - "spdx_license_expression": "Classpath-exception-2.0", - "rule_identifier": "classpath-exception-2.0_6.RULE", "rule_relevance": 100, + "rule_identifier": "classpath-exception-2.0_6.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/classpath-exception-2.0_6.RULE", "matched_text": "gpl-2.0-with-classpath-exception" } @@ -170,5 +170,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/openjdk10@10.0.2_p13-r3" + "purl": "pkg:apk/openjdk10@10.0.2_p13-r3" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/py3-cairosvg/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/py3-cairosvg/APKBUILD-expected.json index b36cef29ea7..6f8a4a83180 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/py3-cairosvg/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/py3-cairosvg/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "py3-cairosvg", "version": "2.5.2-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "LGPL-3.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "lgpl-3.0-plus", + "spdx_license_expression": "LGPL-3.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "lgpl-3.0-plus", - "spdx_license_expression": "LGPL-3.0-or-later", - "rule_identifier": "spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE", "matched_text": "lgpl-3.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/py3-cairosvg@2.5.2-r1" + "purl": "pkg:apk/py3-cairosvg@2.5.2-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/qt6-qt3d/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/qt6-qt3d/APKBUILD-expected.json index d231e218466..c787d914038 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/qt6-qt3d/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/qt6-qt3d/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "qt6-qt3d", "version": "6.1.1-r0", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/qt6-qt3d@6.1.1-r0" + "purl": "pkg:apk/qt6-qt3d@6.1.1-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/ruby-rspec/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/ruby-rspec/APKBUILD-expected.json index 2957134f73b..931ab2533e0 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/ruby-rspec/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/ruby-rspec/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ruby-rspec", "version": "3.10.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "MIT", "matches": [ { - "score": 100.0, + "license_expression": "mit", + "spdx_license_expression": "MIT", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-spdx-id", + "score": 100.0, "matched_length": 1, "match_coverage": 100.0, - "matcher": "1-spdx-id", - "license_expression": "mit", - "spdx_license_expression": "MIT", - "rule_identifier": "spdx-license-identifier-mit-1b937028f397e2c5fe4eb6a0abd781ab80f9eeff", "rule_relevance": 100, + "rule_identifier": "spdx-license-identifier-mit-1b937028f397e2c5fe4eb6a0abd781ab80f9eeff", "rule_url": null, "matched_text": "mit" } @@ -82,5 +82,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/ruby-rspec@3.10.0-r0" + "purl": "pkg:apk/ruby-rspec@3.10.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/unicode-character-database/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/unicode-character-database/APKBUILD-expected.json index 685da43b908..07376177256 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/unicode-character-database/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/unicode-character-database/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "unicode-character-database", "version": "13.0.0-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "Unicode-DFS-2015", "matches": [ { - "score": 50.0, + "license_expression": "unicode-dfs-2015", + "spdx_license_expression": "Unicode-DFS-2015", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "unicode-dfs-2015", - "spdx_license_expression": "Unicode-DFS-2015", - "rule_identifier": "spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.RULE", "matched_text": "unicode-dfs-2015" } @@ -106,5 +106,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/unicode-character-database@13.0.0-r1" + "purl": "pkg:apk/unicode-character-database@13.0.0-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/vtk/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/vtk/APKBUILD-expected.json index 5b847bdc162..1eaf5d79131 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/vtk/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/vtk/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "vtk", "version": "9.0.1-r5", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSD-3-Clause", "matches": [ { - "score": 100.0, + "license_expression": "bsd-new", + "spdx_license_expression": "BSD-3-Clause", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "rule_identifier": "bsd-new_10.RULE", "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": "bsd-3-clause" } @@ -98,5 +98,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/vtk@9.0.1-r5" + "purl": "pkg:apk/vtk@9.0.1-r5" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/zsnes/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/zsnes/APKBUILD-expected.json index c6218d4d5c7..d4fc33d372f 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/community/zsnes/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/community/zsnes/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "zsnes", "version": "1.51-r11", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "gpl-2.0_52.RULE", "rule_relevance": 100, + "rule_identifier": "gpl-2.0_52.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_52.RULE", "matched_text": "gpl-2.0" } @@ -130,5 +130,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/zsnes@1.51-r11" + "purl": "pkg:apk/zsnes@1.51-r11" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/main/gcc/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/main/gcc/APKBUILD-expected.json index 1d0abb6963c..a511f676660 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/main/gcc/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/main/gcc/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "gcc", "version": "10.3.1_git20210424-r1", @@ -402,5 +402,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/gcc@10.3.1_git20210424-r1" + "purl": "pkg:apk/gcc@10.3.1_git20210424-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/main/icu/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/main/icu/APKBUILD-expected.json index 765d1e7977f..5e5f5070eca 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/main/icu/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/main/icu/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "icu", "version": "67.1-r2", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/icu@67.1-r2" + "purl": "pkg:apk/icu@67.1-r2" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/main/ruby/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/main/ruby/APKBUILD-expected.json index b6b5c7f659e..4fac45f5cce 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/main/ruby/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/main/ruby/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ruby", "version": "2.7.3-r1", @@ -106,5 +106,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/ruby@2.7.3-r1" + "purl": "pkg:apk/ruby@2.7.3-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-dcontainers/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-dcontainers/APKBUILD-expected.json index 4a085574a4d..7bf1c077e58 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-dcontainers/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-dcontainers/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "dcontainers", "version": "0.8.0_alpha19-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSL-1.0", "matches": [ { - "score": 50.0, + "license_expression": "boost-1.0", + "spdx_license_expression": "BSL-1.0", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "boost-1.0", - "spdx_license_expression": "BSL-1.0", - "rule_identifier": "boost-1.0_48.RULE", "rule_relevance": 50, + "rule_identifier": "boost-1.0_48.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/boost-1.0_48.RULE", "matched_text": "bsl-1.0" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/dcontainers@0.8.0_alpha19-r1" + "purl": "pkg:apk/dcontainers@0.8.0_alpha19-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-linux-firmware/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-linux-firmware/APKBUILD-expected.json index 65f59643913..5a5a4f992fe 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-linux-firmware/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-linux-firmware/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "linux-firmware", "version": "20210511-r0", @@ -106,5 +106,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/linux-firmware@20210511-r0" + "purl": "pkg:apk/linux-firmware@20210511-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-lua-lustache/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-lua-lustache/APKBUILD-expected.json index 7da9b3aa53d..0eb74f08a60 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-lua-lustache/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-lua-lustache/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "lua-lustache", "version": "1.3.1-r3", @@ -30,17 +30,17 @@ "license_expression_spdx": "MIT", "matches": [ { - "score": 100.0, + "license_expression": "mit", + "spdx_license_expression": "MIT", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-spdx-id", + "score": 100.0, "matched_length": 1, "match_coverage": 100.0, - "matcher": "1-spdx-id", - "license_expression": "mit", - "spdx_license_expression": "MIT", - "rule_identifier": "spdx-license-identifier-mit-1b937028f397e2c5fe4eb6a0abd781ab80f9eeff", "rule_relevance": 100, + "rule_identifier": "spdx-license-identifier-mit-1b937028f397e2c5fe4eb6a0abd781ab80f9eeff", "rule_url": null, "matched_text": "mit" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/lua-lustache@1.3.1-r3" + "purl": "pkg:apk/lua-lustache@1.3.1-r3" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-perl-socket-getaddrinfo/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-perl-socket-getaddrinfo/APKBUILD-expected.json index e24105a0505..fe26501a34b 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-perl-socket-getaddrinfo/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-perl-socket-getaddrinfo/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "perl-socket-getaddrinfo", "version": "0.22-r3", @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/perl-socket-getaddrinfo@0.22-r3" + "purl": "pkg:apk/perl-socket-getaddrinfo@0.22-r3" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-stdx-allocator/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-stdx-allocator/APKBUILD-expected.json index f766c13f4cd..29937186ad0 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-stdx-allocator/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand-stdx-allocator/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "stdx-allocator", "version": "3.1.0_beta2-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSL-1.0", "matches": [ { - "score": 50.0, + "license_expression": "boost-1.0", + "spdx_license_expression": "BSL-1.0", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "boost-1.0", - "spdx_license_expression": "BSL-1.0", - "rule_identifier": "boost-1.0_48.RULE", "rule_relevance": 50, + "rule_identifier": "boost-1.0_48.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/boost-1.0_48.RULE", "matched_text": "bsl-1.0" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/stdx-allocator@3.1.0_beta2-r1" + "purl": "pkg:apk/stdx-allocator@3.1.0_beta2-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand_in_python-py3-cssselect2/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand_in_python-py3-cssselect2/APKBUILD-expected.json index 7a9bb4c4651..d1f1cc83a90 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand_in_python-py3-cssselect2/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/problems/nested_expand_in_python-py3-cssselect2/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "py3-cssselect2", "version": "0.4.1-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "BSD-3-Clause", "matches": [ { - "score": 100.0, + "license_expression": "bsd-new", + "spdx_license_expression": "BSD-3-Clause", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "bsd-new", - "spdx_license_expression": "BSD-3-Clause", - "rule_identifier": "bsd-new_10.RULE", "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": "bsd-3-clause" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/py3-cssselect2@0.4.1-r1" + "purl": "pkg:apk/py3-cssselect2@0.4.1-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/gitlab-release-cli/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/gitlab-release-cli/APKBUILD-expected.json index d477574248d..f175231f7df 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/gitlab-release-cli/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/gitlab-release-cli/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "gitlab-release-cli", "version": "0.3.0-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "MIT", "matches": [ { - "score": 100.0, + "license_expression": "mit", + "spdx_license_expression": "MIT", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-spdx-id", + "score": 100.0, "matched_length": 1, "match_coverage": 100.0, - "matcher": "1-spdx-id", - "license_expression": "mit", - "spdx_license_expression": "MIT", - "rule_identifier": "spdx-license-identifier-mit-1b937028f397e2c5fe4eb6a0abd781ab80f9eeff", "rule_relevance": 100, + "rule_identifier": "spdx-license-identifier-mit-1b937028f397e2c5fe4eb6a0abd781ab80f9eeff", "rule_url": null, "matched_text": "mit" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/gitlab-release-cli@0.3.0-r1" + "purl": "pkg:apk/gitlab-release-cli@0.3.0-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/gtksourceviewmm3/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/gtksourceviewmm3/APKBUILD-expected.json index f6d2d9c0ed7..cd2da864474 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/gtksourceviewmm3/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/gtksourceviewmm3/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "gtksourceviewmm3", "version": "3.21.3-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "LGPL-2.1-or-later", "matches": [ { - "score": 50.0, + "license_expression": "lgpl-2.1-plus", + "spdx_license_expression": "LGPL-2.1-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "lgpl-2.1-plus", - "spdx_license_expression": "LGPL-2.1-or-later", - "rule_identifier": "spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE", "matched_text": "lgpl-2.1-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/gtksourceviewmm3@3.21.3-r0" + "purl": "pkg:apk/gtksourceviewmm3@3.21.3-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/pnmixer/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/pnmixer/APKBUILD-expected.json index bf10a282285..7d0376a11a8 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/pnmixer/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/pnmixer/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "pnmixer", "version": "0.7.2-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-1.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-1.0-plus", + "spdx_license_expression": "GPL-1.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-1.0-plus", - "spdx_license_expression": "GPL-1.0-or-later", - "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "matched_text": "gpl-1.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/pnmixer@0.7.2-r1" + "purl": "pkg:apk/pnmixer@0.7.2-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/ubuntu-archive-keyring/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/ubuntu-archive-keyring/APKBUILD-expected.json index a83c0cd7a40..5019845195a 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/ubuntu-archive-keyring/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/ubuntu-archive-keyring/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ubuntu-archive-keyring", "version": "2016.05.13.1-r1", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-1.0-or-later", "matches": [ { - "score": 50.0, + "license_expression": "gpl-1.0-plus", + "spdx_license_expression": "GPL-1.0-or-later", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 50.0, "matched_length": 5, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-1.0-plus", - "spdx_license_expression": "GPL-1.0-or-later", - "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_relevance": 50, + "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "matched_text": "gpl-1.0-or-later" } @@ -74,5 +74,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/ubuntu-archive-keyring@2016.05.13.1-r1" + "purl": "pkg:apk/ubuntu-archive-keyring@2016.05.13.1-r1" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/unmaintained/buildbot/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/unmaintained/buildbot/APKBUILD-expected.json index 115c8a8e56a..f5a0198a7c6 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/unmaintained/buildbot/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/unmaintained/buildbot/APKBUILD-expected.json @@ -1,5 +1,5 @@ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "buildbot", "version": "1.6.0-r0", @@ -30,17 +30,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 3, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "gpl-2.0_52.RULE", "rule_relevance": 100, + "rule_identifier": "gpl-2.0_52.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_52.RULE", "matched_text": "gpl-2.0" } @@ -90,5 +90,5 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_apkbuild", - "purl": "pkg:alpine/buildbot@1.6.0-r0" + "purl": "pkg:apk/buildbot@1.6.0-r0" } \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/full-installed/installed-expected.json b/tests/packagedcode/data/alpine/full-installed/installed-expected.json index 39d8f9aa16f..900d770235d 100644 --- a/tests/packagedcode/data/alpine/full-installed/installed-expected.json +++ b/tests/packagedcode/data/alpine/full-installed/installed-expected.json @@ -1,6 +1,6 @@ [ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "musl", "version": "1.1.24-r8", @@ -93,10 +93,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/musl@1.1.24-r8?arch=x86_64" + "purl": "pkg:apk/musl@1.1.24-r8?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "busybox", "version": "1.31.1-r16", @@ -234,10 +234,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/busybox@1.31.1-r16?arch=x86_64" + "purl": "pkg:apk/busybox@1.31.1-r16?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-baselayout", "version": "3.2.0-r6", @@ -555,10 +555,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-baselayout@3.2.0-r6?arch=x86_64" + "purl": "pkg:apk/alpine-baselayout@3.2.0-r6?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-keys", "version": "2.2-r0", @@ -813,10 +813,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-keys@2.2-r0?arch=x86_64" + "purl": "pkg:apk/alpine-keys@2.2-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libcrypto1.1", "version": "1.1.1g-r0", @@ -999,10 +999,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libcrypto1.1@1.1.1g-r0?arch=x86_64" + "purl": "pkg:apk/libcrypto1.1@1.1.1g-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libssl1.1", "version": "1.1.1g-r0", @@ -1095,10 +1095,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libssl1.1@1.1.1g-r0?arch=x86_64" + "purl": "pkg:apk/libssl1.1@1.1.1g-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ca-certificates-bundle", "version": "20191127-r2", @@ -1191,10 +1191,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/ca-certificates-bundle@20191127-r2?arch=x86_64" + "purl": "pkg:apk/ca-certificates-bundle@20191127-r2?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libtls-standalone", "version": "2.9.1-r1", @@ -1290,10 +1290,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libtls-standalone@2.9.1-r1?arch=x86_64" + "purl": "pkg:apk/libtls-standalone@2.9.1-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ssl_client", "version": "1.31.1-r16", @@ -1377,10 +1377,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/ssl_client@1.31.1-r16?arch=x86_64" + "purl": "pkg:apk/ssl_client@1.31.1-r16?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "zlib", "version": "1.2.11-r3", @@ -1473,10 +1473,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/zlib@1.2.11-r3?arch=x86_64" + "purl": "pkg:apk/zlib@1.2.11-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "apk-tools", "version": "2.10.5-r1", @@ -1560,10 +1560,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/apk-tools@2.10.5-r1?arch=x86_64" + "purl": "pkg:apk/apk-tools@2.10.5-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "scanelf", "version": "1.2.6-r0", @@ -1647,10 +1647,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/scanelf@1.2.6-r0?arch=x86_64" + "purl": "pkg:apk/scanelf@1.2.6-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "musl-utils", "version": "1.1.24-r8", @@ -1781,10 +1781,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/musl-utils@1.1.24-r8?arch=x86_64" + "purl": "pkg:apk/musl-utils@1.1.24-r8?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libc-utils", "version": "0.7.2-r3", @@ -1869,6 +1869,6 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:apk/libc-utils@0.7.2-r3?arch=x86_64" } ] \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/rootfs/alpine-rootfs.tar.xz-expected.json b/tests/packagedcode/data/alpine/rootfs/alpine-rootfs.tar.xz-expected.json index 840bb413b74..a96349fcb92 100644 --- a/tests/packagedcode/data/alpine/rootfs/alpine-rootfs.tar.xz-expected.json +++ b/tests/packagedcode/data/alpine/rootfs/alpine-rootfs.tar.xz-expected.json @@ -1,7 +1,7 @@ { "packages": [ { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "musl", "version": "1.2.2-r7", @@ -84,17 +84,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/musl@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/musl@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/musl@1.2.2-r7?arch=x86_64" + "purl": "pkg:apk/alpine/musl@1.2.2-r7?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "busybox", "version": "1.34.1-r5", @@ -177,17 +177,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64" + "purl": "pkg:apk/alpine/busybox@1.34.1-r5?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "alpine-baselayout", "version": "3.2.0-r18", @@ -297,17 +297,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64" + "purl": "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "alpine-keys", "version": "2.4-r1", @@ -552,17 +552,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64" + "purl": "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "ca-certificates-bundle", "version": "20211220-r0", @@ -645,17 +645,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" + "purl": "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libcrypto1.1", "version": "1.1.1n-r0", @@ -765,17 +765,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64" + "purl": "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libssl1.1", "version": "1.1.1n-r0", @@ -858,17 +858,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libssl1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libssl1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/libssl1.1@1.1.1n-r0?arch=x86_64" + "purl": "pkg:apk/alpine/libssl1.1@1.1.1n-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libretls", "version": "3.3.4-r3", @@ -951,17 +951,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/libretls@3.3.4-r3?arch=x86_64" + "purl": "pkg:apk/alpine/libretls@3.3.4-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "ssl_client", "version": "1.34.1-r5", @@ -1032,17 +1032,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/ssl_client@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/ssl_client@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/ssl_client@1.34.1-r5?arch=x86_64" + "purl": "pkg:apk/alpine/ssl_client@1.34.1-r5?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "zlib", "version": "1.2.12-r0", @@ -1125,17 +1125,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/zlib@1.2.12-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/zlib@1.2.12-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/zlib@1.2.12-r0?arch=x86_64" + "purl": "pkg:apk/alpine/zlib@1.2.12-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "apk-tools", "version": "2.12.7-r3", @@ -1206,17 +1206,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64" + "purl": "pkg:apk/alpine/apk-tools@2.12.7-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "scanelf", "version": "1.3.3-r0", @@ -1287,17 +1287,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/scanelf@1.3.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/scanelf@1.3.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/scanelf@1.3.3-r0?arch=x86_64" + "purl": "pkg:apk/alpine/scanelf@1.3.3-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "musl-utils", "version": "1.2.2-r7", @@ -1368,17 +1368,17 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64" + "purl": "pkg:apk/alpine/musl-utils@1.2.2-r7?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": "alpine", "name": "libc-utils", "version": "0.7.2-r3", @@ -1449,14 +1449,14 @@ "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null, - "package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "package_uid": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_paths": [ "alpine-rootfs/lib/apk/db/installed" ], "datasource_ids": [ "alpine_installed_db" ], - "purl": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64" } ], "dependencies": [ @@ -1470,7 +1470,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, @@ -1484,7 +1484,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/musl?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, @@ -1498,7 +1498,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/ca-certificates-bundle?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, @@ -1512,7 +1512,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/scanelf?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" }, @@ -1526,7 +1526,7 @@ "resolved_package": {}, "extra_data": {}, "dependency_uid": "pkg:alpine/alpine/musl-utils?uuid=fixed-uid-done-for-testing-5642512d1758", - "for_package_uid": "pkg:alpine/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:apk/alpine/libc-utils@0.7.2-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758", "datafile_path": "alpine-rootfs/lib/apk/db/installed", "datasource_id": "alpine_installed_db" } @@ -1551,7 +1551,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1602,7 +1602,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1611,7 +1611,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1620,7 +1620,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1629,7 +1629,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1638,7 +1638,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1682,7 +1682,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1691,7 +1691,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1700,7 +1700,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1709,7 +1709,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1718,7 +1718,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1734,7 +1734,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1757,7 +1757,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1773,7 +1773,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1782,7 +1782,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1791,7 +1791,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1800,7 +1800,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1809,7 +1809,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1825,7 +1825,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1883,7 +1883,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -1949,7 +1949,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2000,7 +2000,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2016,7 +2016,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2025,7 +2025,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2034,7 +2034,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2043,7 +2043,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2052,7 +2052,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2061,7 +2061,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2070,7 +2070,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2079,7 +2079,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2102,7 +2102,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/ca-certificates-bundle@20211220-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2118,7 +2118,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2127,7 +2127,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2136,7 +2136,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2152,7 +2152,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2168,7 +2168,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -2205,7 +2205,7 @@ "type": "file", "package_data": [ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "musl", "version": "1.2.2-r7", @@ -2298,10 +2298,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/musl@1.2.2-r7?arch=x86_64" + "purl": "pkg:apk/musl@1.2.2-r7?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "busybox", "version": "1.34.1-r5", @@ -2439,10 +2439,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/busybox@1.34.1-r5?arch=x86_64" + "purl": "pkg:apk/busybox@1.34.1-r5?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-baselayout", "version": "3.2.0-r18", @@ -2769,10 +2769,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-baselayout@3.2.0-r18?arch=x86_64" + "purl": "pkg:apk/alpine-baselayout@3.2.0-r18?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-keys", "version": "2.4-r1", @@ -3216,10 +3216,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64" + "purl": "pkg:apk/alpine-keys@2.4-r1?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ca-certificates-bundle", "version": "20211220-r0", @@ -3312,10 +3312,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/ca-certificates-bundle@20211220-r0?arch=x86_64" + "purl": "pkg:apk/ca-certificates-bundle@20211220-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libcrypto1.1", "version": "1.1.1n-r0", @@ -3489,10 +3489,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64" + "purl": "pkg:apk/libcrypto1.1@1.1.1n-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libssl1.1", "version": "1.1.1n-r0", @@ -3585,10 +3585,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libssl1.1@1.1.1n-r0?arch=x86_64" + "purl": "pkg:apk/libssl1.1@1.1.1n-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libretls", "version": "3.3.4-r3", @@ -3692,10 +3692,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libretls@3.3.4-r3?arch=x86_64" + "purl": "pkg:apk/libretls@3.3.4-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ssl_client", "version": "1.34.1-r5", @@ -3779,10 +3779,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/ssl_client@1.34.1-r5?arch=x86_64" + "purl": "pkg:apk/ssl_client@1.34.1-r5?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "zlib", "version": "1.2.12-r0", @@ -3875,10 +3875,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/zlib@1.2.12-r0?arch=x86_64" + "purl": "pkg:apk/zlib@1.2.12-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "apk-tools", "version": "2.12.7-r3", @@ -3992,10 +3992,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/apk-tools@2.12.7-r3?arch=x86_64" + "purl": "pkg:apk/apk-tools@2.12.7-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "scanelf", "version": "1.3.3-r0", @@ -4079,10 +4079,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/scanelf@1.3.3-r0?arch=x86_64" + "purl": "pkg:apk/scanelf@1.3.3-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "musl-utils", "version": "1.2.2-r7", @@ -4213,10 +4213,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/musl-utils@1.2.2-r7?arch=x86_64" + "purl": "pkg:apk/musl-utils@1.2.2-r7?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libc-utils", "version": "0.7.2-r3", @@ -4301,7 +4301,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64" + "purl": "pkg:apk/libc-utils@0.7.2-r3?arch=x86_64" } ], "for_packages": [], @@ -4340,7 +4340,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4349,7 +4349,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4358,7 +4358,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4367,7 +4367,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libssl1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libssl1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4376,7 +4376,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/zlib@1.2.12-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/zlib@1.2.12-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4406,7 +4406,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4485,7 +4485,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/apk-tools@2.12.7-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4494,7 +4494,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4503,7 +4503,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-baselayout@3.2.0-r18?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4547,7 +4547,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4556,7 +4556,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4565,7 +4565,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4574,7 +4574,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/musl-utils@1.2.2-r7?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4583,7 +4583,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/scanelf@1.3.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/scanelf@1.3.3-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4592,7 +4592,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/ssl_client@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/ssl_client@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4615,7 +4615,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4624,7 +4624,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4633,7 +4633,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libcrypto1.1@1.1.1n-r0?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4642,7 +4642,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/libretls@3.3.4-r3?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4721,7 +4721,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4730,7 +4730,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4739,7 +4739,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4748,7 +4748,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4757,7 +4757,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4766,7 +4766,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4775,7 +4775,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4784,7 +4784,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4793,7 +4793,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4802,7 +4802,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4811,7 +4811,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4820,7 +4820,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4829,7 +4829,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4838,7 +4838,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4847,7 +4847,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4856,7 +4856,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4865,7 +4865,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/alpine-keys@2.4-r1?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, @@ -4951,7 +4951,7 @@ "type": "file", "package_data": [], "for_packages": [ - "pkg:alpine/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" + "pkg:apk/alpine/busybox@1.34.1-r5?arch=x86_64&uuid=fixed-uid-done-for-testing-5642512d1758" ], "scan_errors": [] }, diff --git a/tests/packagedcode/data/alpine/single-installed/installed-expected.json b/tests/packagedcode/data/alpine/single-installed/installed-expected.json index f8e6a1fc88b..99e6a703d21 100644 --- a/tests/packagedcode/data/alpine/single-installed/installed-expected.json +++ b/tests/packagedcode/data/alpine/single-installed/installed-expected.json @@ -1,6 +1,6 @@ [ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "busybox", "version": "1.31.1-r9", @@ -41,17 +41,17 @@ "license_expression_spdx": "GPL-2.0-only", "matches": [ { - "score": 100.0, + "license_expression": "gpl-2.0", + "spdx_license_expression": "GPL-2.0-only", + "from_file": null, "start_line": 1, "end_line": 1, - "from_file": null, + "matcher": "1-hash", + "score": 100.0, "matched_length": 4, "match_coverage": 100.0, - "matcher": "1-hash", - "license_expression": "gpl-2.0", - "spdx_license_expression": "GPL-2.0-only", - "rule_identifier": "spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE", "rule_relevance": 100, + "rule_identifier": "spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE", "matched_text": "gpl-2.0-only" } @@ -138,6 +138,6 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/busybox@1.31.1-r9?arch=x86_64" + "purl": "pkg:apk/busybox@1.31.1-r9?arch=x86_64" } ] \ No newline at end of file diff --git a/tests/packagedcode/data/alpine/small-installed/installed-expected.json b/tests/packagedcode/data/alpine/small-installed/installed-expected.json index ad245604036..120f94fe086 100644 --- a/tests/packagedcode/data/alpine/small-installed/installed-expected.json +++ b/tests/packagedcode/data/alpine/small-installed/installed-expected.json @@ -1,6 +1,6 @@ [ { - "type": "alpine", + "type": "apk", "namespace": null, "name": "musl", "version": "1.1.24-r0", @@ -93,10 +93,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/musl@1.1.24-r0?arch=x86_64" + "purl": "pkg:apk/musl@1.1.24-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "busybox", "version": "1.31.1-r9", @@ -234,10 +234,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/busybox@1.31.1-r9?arch=x86_64" + "purl": "pkg:apk/busybox@1.31.1-r9?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-baselayout", "version": "3.2.0-r3", @@ -555,10 +555,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-baselayout@3.2.0-r3?arch=x86_64" + "purl": "pkg:apk/alpine-baselayout@3.2.0-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "alpine-keys", "version": "2.1-r2", @@ -795,10 +795,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/alpine-keys@2.1-r2?arch=x86_64" + "purl": "pkg:apk/alpine-keys@2.1-r2?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libcrypto1.1", "version": "1.1.1d-r3", @@ -981,10 +981,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libcrypto1.1@1.1.1d-r3?arch=x86_64" + "purl": "pkg:apk/libcrypto1.1@1.1.1d-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libssl1.1", "version": "1.1.1d-r3", @@ -1077,10 +1077,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libssl1.1@1.1.1d-r3?arch=x86_64" + "purl": "pkg:apk/libssl1.1@1.1.1d-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ca-certificates-cacert", "version": "20191127-r0", @@ -1164,10 +1164,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/ca-certificates-cacert@20191127-r0?arch=x86_64" + "purl": "pkg:apk/ca-certificates-cacert@20191127-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libtls-standalone", "version": "2.9.1-r0", @@ -1263,10 +1263,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libtls-standalone@2.9.1-r0?arch=x86_64" + "purl": "pkg:apk/libtls-standalone@2.9.1-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "ssl_client", "version": "1.31.1-r9", @@ -1350,10 +1350,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/ssl_client@1.31.1-r9?arch=x86_64" + "purl": "pkg:apk/ssl_client@1.31.1-r9?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "zlib", "version": "1.2.11-r3", @@ -1446,10 +1446,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/zlib@1.2.11-r3?arch=x86_64" + "purl": "pkg:apk/zlib@1.2.11-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "apk-tools", "version": "2.10.4-r3", @@ -1533,10 +1533,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/apk-tools@2.10.4-r3?arch=x86_64" + "purl": "pkg:apk/apk-tools@2.10.4-r3?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "scanelf", "version": "1.2.4-r0", @@ -1620,10 +1620,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/scanelf@1.2.4-r0?arch=x86_64" + "purl": "pkg:apk/scanelf@1.2.4-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "musl-utils", "version": "1.1.24-r0", @@ -1754,10 +1754,10 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/musl-utils@1.1.24-r0?arch=x86_64" + "purl": "pkg:apk/musl-utils@1.1.24-r0?arch=x86_64" }, { - "type": "alpine", + "type": "apk", "namespace": null, "name": "libc-utils", "version": "0.7.2-r0", @@ -1842,6 +1842,6 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "alpine_installed_db", - "purl": "pkg:alpine/libc-utils@0.7.2-r0?arch=x86_64" + "purl": "pkg:apk/libc-utils@0.7.2-r0?arch=x86_64" } ] \ No newline at end of file diff --git a/tests/packagedcode/test_alpine.py b/tests/packagedcode/test_alpine.py index 43cb257b673..98e85339de8 100644 --- a/tests/packagedcode/test_alpine.py +++ b/tests/packagedcode/test_alpine.py @@ -27,7 +27,7 @@ def test_parse_alpine_installed_db_small(self): test_installed = self.get_test_loc('alpine/small-installed/installed') result = [package.to_dict(_detailed=True) for package in alpine.parse_alpine_installed_db( - location=test_installed, datasource_id='alpine_installed_db', package_type='alpine', + location=test_installed, datasource_id='alpine_installed_db', package_type='apk', )] expected = test_installed + '-expected.json' check_result_equals_expected_json(result, expected, regen=REGEN_TEST_FIXTURES) @@ -36,7 +36,7 @@ def test_parse_alpine_installed_db_single(self): test_installed = self.get_test_loc('alpine/single-installed/installed') result = [package.to_dict(_detailed=True) for package in alpine.parse_alpine_installed_db( - location=test_installed, datasource_id='alpine_installed_db', package_type='alpine', + location=test_installed, datasource_id='alpine_installed_db', package_type='apk', )] expected = test_installed + '-expected.json' check_result_equals_expected_json(result, expected, regen=REGEN_TEST_FIXTURES) @@ -45,7 +45,7 @@ def test_parse_alpine_installed_db_full(self): test_installed = self.get_test_loc('alpine/full-installed/installed') result = [package.to_dict(_detailed=True) for package in alpine.parse_alpine_installed_db( - location=test_installed, datasource_id='alpine_installed_db', package_type='alpine', + location=test_installed, datasource_id='alpine_installed_db', package_type='apk', )] expected = test_installed + '-expected.json' check_result_equals_expected_json(result, expected, regen=REGEN_TEST_FIXTURES) From 4c9e044ad32b8ee26686eeb35128e9c78151951f Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Wed, 8 May 2024 18:40:36 +0530 Subject: [PATCH 4/4] Fix namespace assignment from distro ID Signed-off-by: Ayan Sinha Mahapatra --- src/packagedcode/distro.py | 30 ++++++++++------ src/packagedcode/models.py | 2 +- ...-container-layer.tar.xz.scan-expected.json | 6 ++-- tests/packagedcode/data/plugin/help.txt | 34 +++++++++---------- .../bdb-fedora-rootfs.tar.xz-expected.json | 6 ++-- 5 files changed, 44 insertions(+), 34 deletions(-) diff --git a/src/packagedcode/distro.py b/src/packagedcode/distro.py index 7e572948a03..72fa0259594 100644 --- a/src/packagedcode/distro.py +++ b/src/packagedcode/distro.py @@ -27,24 +27,34 @@ class EtcOsReleaseHandler(models.NonAssemblableDatafileHandler): @classmethod def parse(cls, location, package_only=False): distro = Distro.from_os_release_file(location) - distro_identifier = distro.identifier + distro_identifier = None + if distro: + distro_identifier = distro.identifier + + if not distro_identifier: + return + pretty_name = distro.pretty_name and distro.pretty_name.lower() or '' + # TODO: It is misleading to use package data fields + # name and namespace to store distro/os infomration, + # we should consider using extra_data fields instead. + if distro_identifier == 'debian': - namespace = 'debian' + name = 'debian' if 'distroless' in pretty_name: - name = 'distroless' - elif pretty_name.startswith('debian'): - name = 'distroless' + namespace = 'distroless' + else: + namespace = 'debian' elif distro_identifier == 'ubuntu' and distro.id_like == 'debian': - namespace = 'debian' - name = 'ubuntu' + namespace = 'ubuntu' + name = 'debian' - elif distro_identifier.startswith('fedora') or distro.id_like == 'fedora': - namespace = distro_identifier - name = distro.id_like or distro_identifier + elif distro_identifier.startswith('fedora') or distro.id_like == 'fedora': + name = distro_identifier or distro.id_like + namespace = distro.id_like else: # FIXME: this needs to be seriously updated diff --git a/src/packagedcode/models.py b/src/packagedcode/models.py index 28abb1436bd..7a6c5b46358 100644 --- a/src/packagedcode/models.py +++ b/src/packagedcode/models.py @@ -1511,7 +1511,7 @@ def get_distro_identifier_rootfs(cls, root_resource, codebase): # there can be only one distro distro = os_release_res.package_data and os_release_res.package_data[0] if distro: - identifier = distro.get("name") + identifier = distro.get("namespace") break return identifier 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 8edc71fb05c..3d45f98bb69 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 @@ -355,8 +355,8 @@ "package_data": [ { "type": "linux-distro", - "namespace": "debian", - "name": "ubuntu", + "namespace": "ubuntu", + "name": "debian", "version": "22.04", "qualifiers": {}, "subpath": null, @@ -393,7 +393,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "etc_os_release", - "purl": "pkg:linux-distro/debian/ubuntu@22.04" + "purl": "pkg:linux-distro/ubuntu/debian@22.04" } ], "for_packages": [], diff --git a/tests/packagedcode/data/plugin/help.txt b/tests/packagedcode/data/plugin/help.txt index 8fb8389b38f..ea7e10a1007 100755 --- a/tests/packagedcode/data/plugin/help.txt +++ b/tests/packagedcode/data/plugin/help.txt @@ -6,41 +6,41 @@ Package type: about description: AboutCode ABOUT file path_patterns: '*.ABOUT' -------------------------------------------- -Package type: alpine +Package type: android + datasource_id: android_apk + documentation URL: https://en.wikipedia.org/wiki/Apk_(file_format) + primary language: Java + description: Android application package + path_patterns: '*.apk' +-------------------------------------------- +Package type: android_lib + datasource_id: android_aar_library + documentation URL: https://developer.android.com/studio/projects/android-library + primary language: Java + description: Android library archive + path_patterns: '*.aar' +-------------------------------------------- +Package type: apk datasource_id: alpine_apk_archive documentation URL: https://wiki.alpinelinux.org/wiki/Alpine_package_format primary language: None description: Alpine Linux .apk package archive path_patterns: '*.apk' -------------------------------------------- -Package type: alpine +Package type: apk datasource_id: alpine_apkbuild documentation URL: https://wiki.alpinelinux.org/wiki/APKBUILD_Reference primary language: None description: Alpine Linux APKBUILD package script path_patterns: '*APKBUILD' -------------------------------------------- -Package type: alpine +Package type: apk datasource_id: alpine_installed_db documentation URL: None primary language: None description: Alpine Linux installed package database path_patterns: '*lib/apk/db/installed' -------------------------------------------- -Package type: android - datasource_id: android_apk - documentation URL: https://en.wikipedia.org/wiki/Apk_(file_format) - primary language: Java - description: Android application package - path_patterns: '*.apk' --------------------------------------------- -Package type: android_lib - datasource_id: android_aar_library - documentation URL: https://developer.android.com/studio/projects/android-library - primary language: Java - description: Android library archive - path_patterns: '*.aar' --------------------------------------------- Package type: autotools datasource_id: autotools_configure documentation URL: https://www.gnu.org/software/automake/ diff --git a/tests/packagedcode/data/rpm_installed/end-to-end/bdb-fedora-rootfs.tar.xz-expected.json b/tests/packagedcode/data/rpm_installed/end-to-end/bdb-fedora-rootfs.tar.xz-expected.json index c6d7a7a2794..ca43ab07d29 100644 --- a/tests/packagedcode/data/rpm_installed/end-to-end/bdb-fedora-rootfs.tar.xz-expected.json +++ b/tests/packagedcode/data/rpm_installed/end-to-end/bdb-fedora-rootfs.tar.xz-expected.json @@ -203694,8 +203694,8 @@ "package_data": [ { "type": "linux-distro", - "namespace": "fedora-modular", - "name": "fedora", + "namespace": "fedora", + "name": "fedora-modular", "version": "26", "qualifiers": {}, "subpath": null, @@ -203732,7 +203732,7 @@ "repository_download_url": null, "api_data_url": null, "datasource_id": "etc_os_release", - "purl": "pkg:linux-distro/fedora-modular/fedora@26" + "purl": "pkg:linux-distro/fedora/fedora-modular@26" } ], "for_packages": [