From cea8804c4439eff573197080a2221a9da9058602 Mon Sep 17 00:00:00 2001 From: Justin Pierce Date: Wed, 21 Jul 2021 15:04:39 -0400 Subject: [PATCH] Make gen-payload enforce assembly consistency --- doozerlib/assembly.py | 53 +- doozerlib/assembly_inspector.py | 262 + doozerlib/brew.py | 56 +- doozerlib/build_status_detector.py | 9 +- doozerlib/cli/release_gen_assembly.py | 6 +- doozerlib/cli/release_gen_payload.py | 979 +- doozerlib/cli/scan_sources.py | 6 +- doozerlib/distgit.py | 4 +- doozerlib/image.py | 452 +- doozerlib/metadata.py | 16 +- doozerlib/rhcos.py | 225 +- doozerlib/runtime.py | 64 +- doozerlib/util.py | 4 +- tests/cli/test_release_gen_payload.py | 85 - .../47.83.202107261211-0.commitmeta.json | 3805 +++++ .../rhcos1/47.83.202107261211-0.meta.json | 119 + .../47.83.202107261211-0.pkg_builds.yaml | 8819 ++++++++++ .../rhcos1/47.83.202107261211-0.rpm_defs.yaml | 7298 +++++++++ .../build_dicts.yaml | 4670 ++++++ .../container_image_archive_rpms.yaml | 13526 ++++++++++++++++ .../container_image_brew_build_dict.yaml | 114 + .../container_image_list_archives.yaml | 546 + .../container_image_oc_info.json | 188 + tests/test_brew_inspector.py | 98 + tests/test_rhcos.py | 65 +- 25 files changed, 40788 insertions(+), 681 deletions(-) create mode 100644 doozerlib/assembly_inspector.py delete mode 100644 tests/cli/test_release_gen_payload.py create mode 100644 tests/resources/rhcos1/47.83.202107261211-0.commitmeta.json create mode 100644 tests/resources/rhcos1/47.83.202107261211-0.meta.json create mode 100644 tests/resources/rhcos1/47.83.202107261211-0.pkg_builds.yaml create mode 100644 tests/resources/rhcos1/47.83.202107261211-0.rpm_defs.yaml create mode 100644 tests/resources/sriov-operator-must-gather/build_dicts.yaml create mode 100644 tests/resources/sriov-operator-must-gather/container_image_archive_rpms.yaml create mode 100644 tests/resources/sriov-operator-must-gather/container_image_brew_build_dict.yaml create mode 100644 tests/resources/sriov-operator-must-gather/container_image_list_archives.yaml create mode 100644 tests/resources/sriov-operator-must-gather/container_image_oc_info.json create mode 100644 tests/test_brew_inspector.py diff --git a/doozerlib/assembly.py b/doozerlib/assembly.py index fb69428e8..d773818e4 100644 --- a/doozerlib/assembly.py +++ b/doozerlib/assembly.py @@ -7,9 +7,10 @@ class AssemblyTypes(Enum): - STANDARD = 0 # All constraints / checks enforced (e.g. consistent RPMs / siblings) - CUSTOM = 1 # No constraints enforced - CANDIDATE = 2 # Release candidate or feature candidate + STREAM = "stream" # Default assembly type - indicates continuous build and no basis event + STANDARD = "standard" # All constraints / checks enforced (e.g. consistent RPMs / siblings) + CANDIDATE = "candidate" # Indicates releaes or feature candidate + CUSTOM = "custom" # No constraints enforced def merger(a, b): @@ -75,19 +76,24 @@ def _check_recursion(releases_config: Model, assembly: str): def assembly_type(releases_config: Model, assembly: str) -> AssemblyTypes: if not assembly or not isinstance(releases_config, Model): - return AssemblyTypes.STANDARD + return AssemblyTypes.STREAM target_assembly = releases_config.releases[assembly].assembly + + if not target_assembly: + # If the assembly is not defined in releases.yml, it defaults to stream + return AssemblyTypes.STREAM + str_type = target_assembly['type'] - if not str_type or str_type == "standard": - # Assemblies are standard by default + if not str_type: + # Assemblies which are defined in releases.yml default to standard return AssemblyTypes.STANDARD - elif str_type == "custom": - return AssemblyTypes.CUSTOM - elif str_type == "candidate": - return AssemblyTypes.CANDIDATE - else: - raise ValueError(f'Unknown assembly type: {str_type}') + + for assem_type in AssemblyTypes: + if str_type == assem_type.value: + return assem_type + + raise ValueError(f'Unknown assembly type: {str_type}') def assembly_group_config(releases_config: Model, assembly: str, group_config: Model) -> Model: @@ -184,16 +190,19 @@ def assembly_basis_event(releases_config: Model, assembly: str) -> typing.Option return assembly_basis_event(releases_config, target_assembly.basis.assembly) -def assembly_config_finalize(releases_config: Model, assembly: str, rpm_metas, ordered_image_metas): +def assembly_basis(releases_config: Model, assembly: str) -> typing.Optional[Model]: """ - Some metadata cannot be finalized until all metadata is read in by doozer. This method - uses that interpreted metadata set to go through and adjust assembly information - within it. - :param releases_config: The releases.yml Model - :param assembly: The name of the assembly to apply - :param rpm_metas: A list of rpm metadata to update relative to the assembly. - :param ordered_image_metas: A list of image metadata to update relative to the assembly. - :return: N/A. Metas are updated in-place. Only call during runtime.initialize. + :param releases_config: The content of releases.yml in Model form. + :param assembly: The name of the assembly to assess + Returns the basis dict for a given assembly. If the assembly has no basis, + None is returned. """ + if not assembly or not isinstance(releases_config, Model): + return None + _check_recursion(releases_config, assembly) - pass + target_assembly = releases_config.releases[assembly].assembly + if target_assembly.basis: + return target_assembly.basis + + return assembly_basis(releases_config, target_assembly.basis.assembly) diff --git a/doozerlib/assembly_inspector.py b/doozerlib/assembly_inspector.py new file mode 100644 index 000000000..7f32d7cdb --- /dev/null +++ b/doozerlib/assembly_inspector.py @@ -0,0 +1,262 @@ +#!/usr/bin/env python3 + +from typing import List, Dict, Optional + +from koji import ClientSession +from kobo.rpmlib import parse_nvr + +from doozerlib import rhcos, Runtime +from doozerlib import util +from doozerlib.image import ImageMetadata, BrewBuildImageInspector +from doozerlib.rpmcfg import RPMMetadata +from doozerlib.assembly import assembly_rhcos_config, AssemblyTypes + + +class AssemblyInspector: + + def __init__(self, runtime: Runtime, brew_session: ClientSession): + self.runtime = runtime + self.brew_session = brew_session + if runtime.mode != 'both': + raise ValueError('Runtime must be initialized with "both"') + + self.assembly_rhcos_config = assembly_rhcos_config(self.runtime.releases_config, self.runtime.assembly) + self._rpm_build_cache: Dict[int, Dict[str, Optional[Dict]]] = {} # Dict[rhel_ver] -> Dict[distgit_key] -> Optional[BuildDict] + + # If an image component has a latest build, an ImageInspector associated with the image. + self._release_image_inspectors: Dict[str, Optional[BrewBuildImageInspector]] = dict() + for image_meta in runtime.get_for_release_image_metas(): + latest_build_obj = image_meta.get_latest_build(default=None) + if latest_build_obj: + self._release_image_inspectors[image_meta.distgit_key] = BrewBuildImageInspector(self.runtime, latest_build_obj['nvr']) + else: + self._release_image_inspectors[image_meta.distgit_key] = None + + def check_rhcos_consistency(self, rhcos_build: rhcos.RHCOSBuildInspector) -> List[str]: + """ + Analyzes an RHCOS build to check whether the installed packages are consistent with: + 1. package NVRs defined at the group dependency level + 2. package NVRs defiend at the rhcos dependency level + 3. package NVRs of any RPMs built in this assembly/group + :param rhcos_build: The RHCOS build to analyze. + :return: Returns a (potentially empty) list of inconsistencies in the build. + """ + self.runtime.logger.info(f'Checking RHCOS build for consistency: {str(rhcos_build)}...') + + issues: List[str] = [] + desired_packages: Dict[str, str] = dict() # Dict[package_name] -> nvr + assembly_overrides = [] + assembly_overrides.extend(self.runtime.get_group_config().dependencies or []) + assembly_overrides.extend(self.assembly_rhcos_config.dependencies or []) + for package_entry in assembly_overrides: + if 'el8' in package_entry: # TODO: how to make group aware of RHCOS RHEL base? + nvr = package_entry['el8'] + package_name = parse_nvr(nvr)['name'] + desired_packages[package_name] = nvr + + installed_packages = rhcos_build.get_package_build_objects() + for package_name, build_dict in installed_packages: + if package_name in assembly_overrides: + required_nvr = assembly_overrides[package_name] + installed_nvr = build_dict['nvr'] + if installed_nvr != required_nvr: + issues.append(f'Expected {required_nvr} in RHCOS build but found {installed_nvr}') + + for dgk, assembly_rpm_build in self.get_group_rpm_build_dicts(el_ver=rhcos_build.get_rhel_base_version()).items(): + if not assembly_rpm_build: + continue + package_name = assembly_rpm_build['package_name'] + assembly_nvr = assembly_rpm_build['nvr'] + if package_name in installed_packages: + installed_nvr = installed_packages['package']['nvr'] + if assembly_nvr != installed_nvr: + issues.append(f'Expected image to contain assembly RPM build {assembly_nvr} but found {installed_nvr} installed') + + return issues + + def check_group_rpm_package_consistency(self, rpm_meta: RPMMetadata) -> List[str]: + """ + Evaluate the current assembly builds of RPMs in the group and check whether they are consistent with + the assembly definition. + :param rpm_meta: The rpm metadata to evaluate + :return: Returns a (potentially empty) list of reasons the rpm should be rebuilt. + """ + self.runtime.logger.info(f'Checking group RPM for consistency: {rpm_meta.distgit_key}...') + issues: List[str] = [] + + for rpm_meta in self.runtime.rpm_metas(): + dgk = rpm_meta.distgit_key + for el_ver in rpm_meta.determine_rhel_targets(): + brew_build_dict = self.get_group_rpm_build_dicts(el_ver=el_ver)[dgk] + if not brew_build_dict: + issues.append(f'Did not find rhel-{el_ver} build for {dgk}') + continue + + """ + Assess whether the image build has the upstream + source git repo and git commit that may have been declared/ + overridden in an assembly definition. + """ + content_git_url = rpm_meta.config.content.source.git.url + if content_git_url: + # Make sure things are in https form so we can compare + # content_git_url = util.convert_remote_git_to_https(content_git_url) + + # TODO: Download spec file associated with the build and verify SOURCE_GIT_URL + + try: + target_branch = rpm_meta.config.content.source.git.branch.target + if target_branch: + _ = int(target_branch, 16) # parse the name as a git commit + # if we reach here, a git commit hash was declared as the + # upstream source of the rpm package's content. We should verify + # it perfectly matches what we find in the assembly build. + # Each package build gets git commits encoded into the + # release field of the NVR. So the NVR should contain + # the desired commit. + build_nvr = brew_build_dict['nvr'] + if target_branch[:7] not in build_nvr: + issues.append(f'{dgk} build for rhel-{el_ver} did not find git commit {target_branch[:7]} in package RPM NVR {build_nvr}') + except ValueError: + # The meta's target branch a normal branch name + # and not a git commit. When this is the case, + # we don't try to assert anything about the build's + # git commit. + pass + + return issues + + def check_group_image_consistency(self, build_inspector: BrewBuildImageInspector) -> List[str]: + """ + Evaluate the current assembly build and an image in the group and check whether they are consistent with + :param build_inspector: The brew build to check + :return: Returns a (potentially empty) list of reasons the image should be rebuilt. + """ + image_meta = build_inspector.get_image_meta() + self.runtime.logger.info(f'Checking group image for consistency: {image_meta.distgit_key}...') + issues: List[str] = [] + + installed_packages = build_inspector.get_all_installed_package_build_dicts() + + """ + If the assembly defined any RPM package dependencies at the group or image + member level, we want to check to make sure that installed RPMs in the + build image match the override package. + If reading this, keep in mind that a single package/build may create several + RPMs. Both assemblies and this method deal with the package level - not + individual RPMs. + """ + package_overrides: Dict[str, str] = image_meta.get_assembly_rpm_package_dependencies(el_ver=image_meta.branch_el_target()) + if package_overrides: + for package_name, required_nvr in package_overrides: + if package_name in installed_packages: + installed_build_dict: Dict = installed_packages[package_name] + installed_nvr = installed_build_dict['nvr'] + if required_nvr != installed_nvr: + issues.append(f'Expected image to contain assembly override dependencies NVR {required_nvr} but found {installed_nvr} installed') + + """ + If an image contains an RPM from the doozer group, make sure it is the current + RPM for the assembly. + """ + el_ver = build_inspector.get_rhel_base_version() + if el_ver: # We might not find an el_ver for an image (e.g. FROM scratch) + for dgk, assembly_rpm_build in self.get_group_rpm_build_dicts(el_ver).items(): + if not assembly_rpm_build: + # The RPM doesn't claim to build for this image's RHEL base, so ignore it. + continue + package_name = assembly_rpm_build['package_name'] + assembly_nvr = assembly_rpm_build['nvr'] + if package_name in installed_packages: + installed_nvr = installed_packages[package_name]['nvr'] + if installed_nvr != assembly_nvr: + issues.append(f'Expected image to contain assembly RPM build {assembly_nvr} but found {installed_nvr} installed') + + """ + Assess whether the image build has the upstream + source git repo and git commit that may have been declared/ + overridden in an assembly definition. + """ + content_git_url = image_meta.config.content.source.git.url + if content_git_url: + # Make sure things are in https form so we can compare + content_git_url, _ = self.runtime.get_public_upstream(util.convert_remote_git_to_https(content_git_url)) + build_git_url = util.convert_remote_git_to_https(build_inspector.get_source_git_url()) + if content_git_url != build_git_url: + issues.append(f'Expected image build git source from metadata {content_git_url} but found {build_git_url} as the source of the build') + + try: + target_branch = image_meta.config.content.source.git.branch.target + if target_branch: + _ = int(target_branch, 16) # parse the name as a git commit + # if we reach here, a git commit hash was declared as the + # upstream source of the image's content. We should verify + # it perfectly matches what we find in the assembly build. + build_commit = build_inspector.get_source_git_commit() + if target_branch != build_commit: + issues.append(f'Expected image build git commit {target_branch} but {build_commit} was found in the build') + except ValueError: + # The meta's target branch a normal branch name + # and not a git commit. When this is the case, + # we don't try to assert anything about the build's + # git commit. + pass + + return issues + + def get_assembly_name(self): + return self.runtime.assembly + + def get_group_release_images(self) -> Dict[str, Optional[BrewBuildImageInspector]]: + """ + :return: Returns a map of distgit_key -> BrewImageInspector for each image built in this group. The value will be None if no build was found. + """ + return self._release_image_inspectors + + def get_group_rpm_build_dicts(self, el_ver: int) -> Dict[str, Optional[Dict]]: + """ + :param el_ver: The version of RHEL to check for builds of the RPMs + :return: Returns Dict[distgit_key] -> brew_build_dict or None if the RPM does not build for the specified el target. + """ + assembly_rpm_dicts: Dict[str, Optional[Dict]] = dict() + if el_ver not in self._rpm_build_cache: + # Maps of component names to the latest brew build dicts. If there is no latest build, the value will be None + for rpm_meta in self.runtime.rpm_metas(): + if el_ver in rpm_meta.determine_rhel_targets(): + latest_build = rpm_meta.get_latest_build(default=None, el_target=el_ver) + if not latest_build: + raise IOError(f'RPM {rpm_meta.distgit_key} claims to have a rhel-{el_ver} build target, but not build was detected') + assembly_rpm_dicts[rpm_meta.distgit_key] = latest_build + else: + # The RPM does not claim to build for this rhel version, so return None as a value. + assembly_rpm_dicts[rpm_meta.distgit_key] = None + self._rpm_build_cache[el_ver] = assembly_rpm_dicts + + return self._rpm_build_cache[el_ver] + + def get_rhcos_build(self, arch: str, private: bool = False) -> rhcos.RHCOSBuildInspector: + """ + :param arch: The CPU architecture of the build to retrieve. + :param private: If this should be a private build (NOT CURRENTLY SUPPORTED) + :return: Returns an RHCOSBuildInspector for the specified arch. For non-STREAM assemblies, this will be the RHCOS builds + pinned in the assembly definition. For STREAM assemblies, it will be the latest RHCOS build in the latest + in the app.ci imagestream for ART's release/arch (e.g. ocp-s390x:is/4.7-art-latest-s390x). + """ + runtime = self.runtime + brew_arch = util.brew_arch_for_go_arch(arch) + runtime.logger.info(f"Getting latest RHCOS source for {brew_arch}...") + + # See if this assembly has assembly.rhcos.machine-os-content.images populated for this architecture. + assembly_rhcos_arch_pullspec = self.assembly_rhcos_config['machine-os-content'].images[brew_arch] + + if self.runtime.assembly_type != AssemblyTypes.STREAM and not assembly_rhcos_arch_pullspec: + raise Exception(f'Assembly {runtime.assembly} has is not a STREAM but no assembly.rhcos MOSC image data for {brew_arch}; all MOSC image data must be populated for this assembly to be valid') + + version = self.runtime.get_minor_version() + if assembly_rhcos_arch_pullspec: + return rhcos.RHCOSBuildInspector(runtime, assembly_rhcos_arch_pullspec, brew_arch) + else: + _, pullspec = rhcos.latest_machine_os_content(version, brew_arch, private) + if not pullspec: + raise IOError(f"No RHCOS latest found for {version} / {brew_arch}") + return rhcos.RHCOSBuildInspector(runtime, pullspec, brew_arch) diff --git a/doozerlib/brew.py b/doozerlib/brew.py index 3fc996071..65759991d 100644 --- a/doozerlib/brew.py +++ b/doozerlib/brew.py @@ -10,7 +10,7 @@ import traceback from enum import Enum from multiprocessing import Lock -from typing import Dict, Iterable, List, Optional, Tuple +from typing import Dict, Iterable, List, Optional, Tuple, BinaryIO # 3rd party import koji @@ -393,13 +393,20 @@ class KojiWrapper(koji.ClientSession): will return the cached value. """ - koji_wrapper_lock = threading.Lock() - koji_call_counter = 0 # Increments atomically to help search logs for koji api calls - # Used by the KojiWrapper to cache API calls, when a call's args include a KojiWrapperOpts with caching=True. - # The key is either None or a brew event id to which queries are locked. The value is another dict whose - # key is a string respresentation of the method to be invoked and the value is the cached value returned - # from the server. - koji_wrapper_result_cache = {} + """ + If caching should be enabled for all uses of this class. This is generally + not recommended unless you are trying to record API calls for testing purposes. + """ + force_global_caching: bool = False + + + _koji_wrapper_lock = threading.Lock() + _koji_call_counter = 0 # Increments atomically to help search logs for koji api calls + + # Used by the KojiWrapper to cache API calls, when force_global_caching or a call's args include a KojiWrapperOpts with caching=True. + # The key is a string a representation of the method (and all arguments) to be invoked and the value is the cached value returned + # from the server. This cache is shared among all instances of the wrapper. + _koji_wrapper_result_cache = {} # A list of methods which support receiving an event kwarg. See --brew-event CLI argument. methods_with_event = set([ @@ -534,37 +541,38 @@ def __init__(self, koji_session_args, brew_event=None): @classmethod def clear_global_cache(cls): - with cls.koji_wrapper_lock: - cls.koji_wrapper_result_cache.clear() + with cls._koji_wrapper_lock: + cls._koji_wrapper_result_cache.clear() @classmethod def get_cache_size(cls): - with cls.koji_wrapper_lock: - return total_size(cls.koji_wrapper_result_cache) + with cls._koji_wrapper_lock: + return total_size(cls._koji_wrapper_result_cache) @classmethod def get_next_call_id(cls): - global koji_call_counter, koji_wrapper_lock - with cls.koji_wrapper_lock: - cid = cls.koji_call_counter - cls.koji_call_counter = cls.koji_call_counter + 1 + global _koji_call_counter, _koji_wrapper_lock + with cls._koji_wrapper_lock: + cid = cls._koji_call_counter + cls._koji_call_counter = cls._koji_call_counter + 1 return cid + @classmethod + def save_cache(cls, output: BinaryIO): + with KojiWrapper._koji_wrapper_lock: + json.dump(KojiWrapper._koji_wrapper_result_cache, output, indent=2) + def _get_cache_bucket_unsafe(self): """Call while holding lock!""" - cache_bucket = KojiWrapper.koji_wrapper_result_cache.get(self.___brew_event, None) - if cache_bucket is None: - cache_bucket = {} - KojiWrapper.koji_wrapper_result_cache[self.___brew_event] = cache_bucket - return cache_bucket + return KojiWrapper._koji_wrapper_result_cache def _cache_result(self, api_repr, result): - with KojiWrapper.koji_wrapper_lock: + with KojiWrapper._koji_wrapper_lock: cache_bucket = self._get_cache_bucket_unsafe() cache_bucket[api_repr] = result def _get_cache_result(self, api_repr, return_on_miss): - with KojiWrapper.koji_wrapper_lock: + with KojiWrapper._koji_wrapper_lock: cache_bucket = self._get_cache_bucket_unsafe() return cache_bucket.get(api_repr, return_on_miss) @@ -712,7 +720,7 @@ def package_result(result, cache_hit: bool): caching_key = None if use_caching: - # We need a reproducible immutable key from a dict with nest dicts. json.dumps + # We need a reproducible immutable key from a dict with nested dicts. json.dumps # and sorting keys is a deterministic way of achieving this. caching_key = json.dumps({ 'method_name': name, diff --git a/doozerlib/build_status_detector.py b/doozerlib/build_status_detector.py index 5f965e51e..32a2fd650 100644 --- a/doozerlib/build_status_detector.py +++ b/doozerlib/build_status_detector.py @@ -8,8 +8,10 @@ class BuildStatusDetector: - """ a BuildStatusDetector can find builds with embargoed fixes """ + A BuildStatusDetector can find builds with embargoed fixes + """ + def __init__(self, session: ClientSession, logger: Optional[Logger] = None): """ creates a new BuildStatusDetector :param session: a koji client session @@ -92,7 +94,7 @@ def populate_archive_lists(self, suspect_build_ids: Set[int]): """ populate self.archive_lists with any build IDs not already cached :param suspect_build_ids: a list of koji build ids """ - build_ids = list(suspect_build_ids - self.archive_lists.keys()) + build_ids = list(suspect_build_ids - self.archive_lists.keys()) # Only update cache with missing builds if build_ids: self.logger and self.logger.info(f"Fetching image archives for {len(build_ids)} builds...") archive_lists = brew.list_archives_by_builds(build_ids, "image", self.koji_session) # if a build is not an image (e.g. rpm), Brew will return an empty archive list for that build @@ -120,7 +122,7 @@ def rpms_in_embargoed_tag(self, candidate_tag: List[str]) -> Set[int]: cache_lock = Lock() unshipped_candidate_rpms_cache = {} - def find_unshipped_candidate_rpms(self, candidate_tag, event=None): + def find_unshipped_candidate_rpms(self, candidate_tag: str, event: Optional[int] = None): """ find latest RPMs in the candidate tag that have not been shipped yet. i debated whether to consider builds unshipped if not shipped @@ -129,6 +131,7 @@ def find_unshipped_candidate_rpms(self, candidate_tag, event=None): just if it's not using what we're trying to ship new. :param candidate_tag: string tag name to search for candidate builds + :param event: A brew event with which to limit the brew query on latest builds. :return: a list of brew RPMs (the contents of the builds) from unshipped latest builds """ key = (candidate_tag, event) diff --git a/doozerlib/cli/release_gen_assembly.py b/doozerlib/cli/release_gen_assembly.py index 6f2a16776..cdb5061a0 100644 --- a/doozerlib/cli/release_gen_assembly.py +++ b/doozerlib/cli/release_gen_assembly.py @@ -72,9 +72,9 @@ def exit_with_error(msg): if not release_info.references.spec.tags: exit_with_error(f'Could not find tags in nightly {nightly}') - for component_tags in release_info.references.spec.tags: - payload_tag_name = component_tags.name # e.g. "aws-ebs-csi-driver" - payload_tag_pullspec = component_tags['from'].name # quay pullspec + for component_tag in release_info.references.spec.tags: + payload_tag_name = component_tag.name # e.g. "aws-ebs-csi-driver" + payload_tag_pullspec = component_tag['from'].name # quay pullspec if payload_tag_name == 'machine-os-content': mosc_by_arch[brew_cpu_arch] = payload_tag_pullspec diff --git a/doozerlib/cli/release_gen_payload.py b/doozerlib/cli/release_gen_payload.py index 3a6f72dd0..4bd0127c2 100644 --- a/doozerlib/cli/release_gen_payload.py +++ b/doozerlib/cli/release_gen_payload.py @@ -1,19 +1,43 @@ import io import json -from typing import List, Optional, Set, Tuple +from typing import List, Optional, Tuple, Dict, NamedTuple, Iterable, Set import click import yaml -from koji import ClientSession +from kobo.rpmlib import parse_nvr -from doozerlib import (assembly, brew, build_status_detector, exectools, rhcos, - state) +from doozerlib.rhcos import RHCOSBuildInspector from doozerlib.cli import cli, pass_runtime -from doozerlib.exceptions import DoozerFatalError -from doozerlib.image import ImageMetadata -from doozerlib.model import Model +from doozerlib.image import ImageMetadata, BrewBuildImageInspector, ArchiveImageInspector +from doozerlib.assembly_inspector import AssemblyInspector from doozerlib.runtime import Runtime -from doozerlib.util import go_suffix_for_arch, red_print, yellow_print +from doozerlib.util import red_print, go_suffix_for_arch, brew_arch_for_go_arch, isolate_nightly_name_components +from doozerlib.assembly import AssemblyTypes, assembly_basis +from doozerlib import exectools +from doozerlib.model import Model + + +def default_imagestream_base_name(runtime: Runtime) -> str: + version = runtime.get_minor_version() + if runtime.assembly is None or runtime.assembly == 'stream': + return f'{version}-art-latest' + else: + return f'{version}-art-assembly-{runtime.assembly}' + + +def default_imagestream_namespace_base_name() -> str: + return "ocp" + + +def payload_imagestream_name_and_namespace(base_imagestream_name: str, base_namespace: str, brew_arch: str, private: bool) -> Tuple[str, str]: + """ + :return: Returns the imagestream name and namespace to which images for the specified CPU arch and privacy mode should be synced. + """ + arch_suffix = go_suffix_for_arch(brew_arch) + priv_suffix = "-priv" if private else "" + name = f"{base_imagestream_name}{arch_suffix}{priv_suffix}" + namespace = f"{base_namespace}{arch_suffix}{priv_suffix}" + return name, namespace @cli.command("release:gen-payload", short_help="Generate input files for release mirroring") @@ -27,10 +51,10 @@ help="Quay REPOSITORY in ORGANIZATION to mirror into.\ndefault=ocp-v4.0-art-dev") @click.option("--exclude-arch", metavar='ARCH', required=False, multiple=True, help="Architecture (brew nomenclature) to exclude from payload generation") -@click.option("--skip-gc-tagging", default=False, is_flag=True, - help="By default, for a named assembly, images will be tagged to prevent garbage collection") +@click.option('--permit-mismatched-siblings', default=False, is_flag=True, help='Ignore sibling images building from different commits') +@click.option('--permit-invalid-reference-releases', default=False, is_flag=True, help='Ignore if reference nightlies do not reflect current assembly state. Do not use outside of testing.') @pass_runtime -def release_gen_payload(runtime: Runtime, is_name: Optional[str], is_namespace: Optional[str], organization: Optional[str], repository: Optional[str], exclude_arch: Tuple[str, ...], skip_gc_tagging: bool): +def release_gen_payload(runtime: Runtime, is_name: Optional[str], is_namespace: Optional[str], organization: Optional[str], repository: Optional[str], exclude_arch: Tuple[str, ...], permit_mismatched_siblings: bool, permit_invalid_reference_releases: bool): """Generates two sets of input files for `oc` commands to mirror content and update image streams. Files are generated for each arch defined in ocp-build-data for a version, as well as a final file for @@ -88,410 +112,386 @@ def release_gen_payload(runtime: Runtime, is_name: Optional[str], is_namespace: and in more detail in state.yaml. The release-controller, per ART-2195, will read and propagate/expose this annotation in its display of the release image. """ - runtime.initialize(clone_distgits=False) + runtime.initialize(mode='both', clone_distgits=False, clone_source=False, prevent_cloning=True) + logger = runtime.logger brew_session = runtime.build_retrying_koji_client() - if not skip_gc_tagging: - brew_session.gssapi_login() - base_target = SyncTarget( # where we will mirror and record the tags - orgrepo=f"{organization}/{repository}", - istream_name=is_name if is_name else default_is_base_name(runtime), - istream_namespace=is_namespace if is_namespace else default_is_base_namespace() - ) - if runtime.assembly and runtime.assembly != 'stream' and 'art-latest' in base_target.istream_name: - raise ValueError('The art-latest imagestreams should not be used for non-stream assemblies') + base_imagestream_name: str = is_name if is_name else default_imagestream_base_name(runtime) + base_istream_namespace: str = is_namespace if is_namespace else default_imagestream_namespace_base_name() - gen = PayloadGenerator(runtime, brew_session, base_target, exclude_arch, skip_gc_tagging=skip_gc_tagging) - latest_builds, invalid_name_items, images_missing_builds, mismatched_siblings, non_release_items = gen.load_latest_builds() - gen.write_mirror_destinations(latest_builds, mismatched_siblings) + if runtime.assembly and runtime.assembly != 'stream' and 'art-latest' in base_imagestream_name: + raise ValueError('The art-latest imagestreams should not be used for an assembly other than "stream"') - if non_release_items: - yellow_print("Images skipped due to non_release tag:") - for img in sorted(non_release_items): - click.echo(" {}".format(img)) + logger.info(f'Collecting latest information associated with the assembly: {runtime.assembly}') + assembly_inspector = AssemblyInspector(runtime, brew_session) + logger.info(f'Checking for mismatched siblings...') + mismatched_siblings = PayloadGenerator.find_mismatched_siblings(assembly_inspector.get_group_release_images().values()) - if invalid_name_items: - yellow_print("Images skipped due to invalid naming:") - for img in sorted(invalid_name_items): - click.echo(" {}".format(img)) + # A list of strings that denote inconsistencies across all payloads generated + assembly_wide_inconsistencies: List[str] = list() - if images_missing_builds: - yellow_print("No builds found for:") - for img in sorted(images_missing_builds, key=lambda img: img.image_name_short): - click.echo(" {}".format(img.image_name_short)) + if runtime.assembly != 'test' and mismatched_siblings and runtime.assembly_type in (AssemblyTypes.STREAM, AssemblyTypes.STANDARD): + msg = f'At least one set of image siblings were built from the same repo but different commits ({mismatched_siblings}). This is not permitted for {runtime.assembly_type} assemblies' + if permit_mismatched_siblings: + red_print(msg) + assembly_wide_inconsistencies.append(f"Mismatched siblings: {mismatched_siblings}") + else: + raise ValueError(msg) + + report = dict() + report['non_release_images'] = [image_meta.distgit_key for image_meta in runtime.get_non_release_image_metas()] + report['release_images'] = [image_meta.distgit_key for image_meta in runtime.get_for_release_image_metas()] + report['mismatched_siblings'] = [build_image_inspector.get_nvr() for build_image_inspector in mismatched_siblings] + report['missing_image_builds'] = [dgk for (dgk, ii) in assembly_inspector.get_group_release_images().items() if ii is None] # A list of metas where the assembly did not find a build + inconsistencies_report: Dict[str, List[str]] = dict() + report['assembly_inconsistencies'] = inconsistencies_report + + if runtime.assembly_type is AssemblyTypes.STREAM: + # Only nightlies have the concept of private and public payloads + privacy_modes = [False, True] + else: + privacy_modes = [False] - if mismatched_siblings: - yellow_print("Images skipped due to siblings mismatch:") - for img in sorted(mismatched_siblings): - click.echo(" {}".format(img)) + # Structure to record rhcos builds we use so that they can be analyzed for inconsistencies + targeted_rhcos_builds: Dict[bool, List[RHCOSBuildInspector]] = { + False: [], + True: [] + } + """ + We will be using the shared build status detector in runtime for these images. Warm up its cache. + """ + build_ids: Set[int] = set() + for bbii in assembly_inspector.get_group_release_images().values(): + if bbii: + build_ids.add(bbii.get_brew_build_id()) + with runtime.shared_build_status_detector() as bsd: + bsd.populate_archive_lists(build_ids) + bsd.find_shipped_builds(build_ids) -class SyncTarget(object): - def __init__(self, orgrepo=None, istream_name=None, istream_namespace=None): - self.orgrepo = orgrepo - self.istream_name = istream_name - self.istream_namespace = istream_namespace + """ + Make sure that RPMs belonging to this assembly/group are consistent with the assembly definition. + """ + rpm_meta_inconsistencies: Dict[str, List[str]] = dict() + for rpm_meta in runtime.rpm_metas(): + issues = assembly_inspector.check_group_rpm_package_consistency(rpm_meta) + if issues: + rpm_meta_inconsistencies.get(rpm_meta.distgit_key, []).extend(issues) + image_meta_inconsistencies: Dict[str, List[str]] = dict() -class BuildRecord(object): - def __init__(self, image=None, build=None, archives=None, private=False): - self.image = image - self.build = build - self.archives = archives - self.private = private + """ + If this is a stream assembly, images which are not using the latest builds should not reach + the release controller. + """ + if runtime.assembly == 'stream': + for dgk, build_inspector in assembly_inspector.get_group_release_images().items(): + if build_inspector: + non_latest_rpm_nvrs = build_inspector.find_non_latest_rpms() + if non_latest_rpm_nvrs: + # This indicates an issue with scan-sources + dgk = build_inspector.get_image_meta().distgit_key + image_meta_inconsistencies.get(dgk, []).append(f'Found outdated RPMs installed in {build_inspector.get_nvr()}: {non_latest_rpm_nvrs}') + + """ + Make sure image build selected by this assembly/group are consistent with the assembly definition. + """ + for dgk, bbii in assembly_inspector.get_group_release_images().items(): + if bbii: + issues = assembly_inspector.check_group_image_consistency(bbii) + if issues: + image_meta_inconsistencies.get(dgk, []).extend(issues) + + if image_meta_inconsistencies or rpm_meta_inconsistencies: + rebuilds_required = { + 'images': image_meta_inconsistencies, + 'rpms': rpm_meta_inconsistencies, + } + red_print(f'Unable to proceed. Builds selected by this assembly/group and not compliant with the assembly definition: {assembly_inspector.get_assembly_name()}') + print(yaml.dump(rebuilds_required, default_flow_style=False, indent=2)) + exit(1) + + for arch in runtime.arches: + if arch in exclude_arch: + logger.info(f'Excluding payload files architecture: {arch}') + continue + + # Whether private or public, the assembly's canonical payload content is the same. + entries: Dict[str, PayloadGenerator.PayloadEntry] = PayloadGenerator.find_payload_entries(assembly_inspector, arch, f'quay.io/{organization}/{repository}') # Key of this dict is release payload tag name + + for tag, payload_entry in entries.items(): + if payload_entry.image_meta: + # We already cached inconsistencies for each build; look them up if there are any. + payload_entry.inconsistencies.extend(image_meta_inconsistencies.get(payload_entry.image_meta.distgit_key, [])) + elif payload_entry.rhcos_build: + payload_entry.inconsistencies.extend(assembly_inspector.check_rhcos_consistency(payload_entry.rhcos_build)) + if runtime.assembly == 'stream': + # For stream alone, we want to enforce that the very latest RPMs are installed. + non_latest_rpm_nvrs = payload_entry.rhcos_build.find_non_latest_rpms() + if non_latest_rpm_nvrs: + # Raise an error, because this indicates an issue with config:scan-sources. + raise IOError(f'Found outdated RPMs installed in {payload_entry.rhcos_build}: {non_latest_rpm_nvrs}; this will likely self correct once the next RHCOS build takes place.') + else: + raise IOError(f'Unsupported PayloadEntry: {payload_entry}') + # Report any inconsistencies to in the final yaml output + if payload_entry.inconsistencies: + inconsistencies_report[tag] = payload_entry.inconsistencies + + # Save the default SRC=DEST input to a file for syncing by 'oc image mirror'. Why is + # there no '-priv'? The true images for the assembly are what we are syncing - + # it is what we update in the imagestream that defines whether the image will be + # part of a public release. + with io.open(f"src_dest.{arch}", "w+", encoding="utf-8") as out_file: + for payload_entry in entries.values(): + if not payload_entry.archive_inspector: + # Nothing to mirror (e.g. machine-os-content) + continue + out_file.write(f"{payload_entry.archive_inspector.get_archive_pullspec()}={payload_entry.dest_pullspec}\n") + + for private_mode in privacy_modes: + logger.info(f'Building payload files for architecture: {arch}; private: {private_mode}') + + file_suffix = arch + '-priv' if private_mode else arch + with io.open(f"image_stream.{file_suffix}.yaml", "w+", encoding="utf-8") as out_file: + istags: List[Dict] = [] + for payload_tag_name, payload_entry in entries.items(): + if payload_entry.build_inspector and payload_entry.build_inspector.is_under_embargo() and private_mode is False: + # Don't send this istag update to the public release controller + continue + istags.append(PayloadGenerator.build_payload_istag(payload_tag_name, payload_entry)) + + imagestream_name, imagestream_namespace = payload_imagestream_name_and_namespace( + base_imagestream_name, + base_istream_namespace, + arch, private_mode) + + istream_spec = PayloadGenerator.build_payload_imagestream(imagestream_name, imagestream_namespace, istags, assembly_wide_inconsistencies) + yaml.safe_dump(istream_spec, out_file, indent=2, default_flow_style=False) + + # Now make sure that all of the RHCOS builds contain consistent RPMs + for private_mode in privacy_modes: + rhcos_builds = targeted_rhcos_builds[private_mode] + rhcos_inconsistencies: Dict[str, List[str]] = PayloadGenerator.find_rhcos_build_rpm_inconsistencies(rhcos_builds) + if rhcos_inconsistencies: + red_print(f'Found RHCOS inconsistencies in builds {targeted_rhcos_builds}: {rhcos_inconsistencies}') + raise IOError(f'Found RHCOS inconsistencies in builds') + + # If the assembly claims to have reference nightlies, assert that our payload + # matches them exactly. + nightly_match_issues = PayloadGenerator.check_nightlies_consistency(assembly_inspector) + if nightly_match_issues: + msg = 'Nightlies in reference-releases did not match constructed payload:\n' + yaml.dump(nightly_match_issues) + if permit_invalid_reference_releases: + red_print(msg) + else: + # Artist must remove nightly references or fix the assembly definition. + raise IOError(msg) + + print(yaml.dump(report, default_flow_style=False, indent=2)) class PayloadGenerator: - def __init__(self, runtime: Runtime, brew_session: ClientSession, base_target: SyncTarget, exclude_arches: Optional[List[str]] = None, skip_gc_tagging: bool = False): - self.runtime = runtime - self.brew_session = brew_session - self.base_target = base_target - self.exclude_arches = exclude_arches or [] - self.state = runtime.state[runtime.command] = dict(state.TEMPLATE_IMAGE) - self.bs_detector = build_status_detector.BuildStatusDetector(brew_session, runtime.logger) - self.skip_gc_tagging = skip_gc_tagging - - def load_latest_builds(self): - images = list(self.runtime.image_metas()) - self.state['total_images'] = len(images) - - self.runtime.logger.info("Fetching latest image builds from Brew...") - payload_images, invalid_name_items = self._get_payload_images(images) - release_payload_images, non_release_items = self._get_payload_and_non_release_images(payload_images) - self.state['payload_images'] = len(release_payload_images) - - latest_builds, images_missing_builds = self._get_latest_builds(release_payload_images) - self.runtime.logger.info("Determining if image builds have embargoed contents...") - self._designate_privacy(latest_builds, images) - - mismatched_siblings = self._find_mismatched_siblings(latest_builds) - if mismatched_siblings and self.runtime.assembly_type == assembly.AssemblyTypes.CUSTOM: - self.runtime.logger.warning(f'There are mismatched siblings in this assembly, but it is "custom"; ignoring: {mismatched_siblings}') - mismatched_siblings = set() - - return latest_builds, invalid_name_items, images_missing_builds, mismatched_siblings, non_release_items - - def _get_payload_and_non_release_images(self, images): - payload_images = [] - non_release_items = [] - for image in images: - if image.for_release: - payload_images.append(image) - continue - non_release_items.append(image.image_name_short) - red_print(f"NOT adding to IS (non_release: true): {image.image_name_short}") - - return payload_images, non_release_items - - def _get_payload_images(self, images: List[ImageMetadata]) -> Tuple[List[ImageMetadata], List[ImageMetadata]]: - # Iterates through a list of image metas and finds those destined for - # the release payload. Images which are marked for the payload but not named - # appropriately will be captured in a separate list. - # :param images: The list of metas to scan - # :return: Returns a tuple containing: (list of images for payload, list of incorrectly named images) - - payload_images = [] - invalid_name_items = [] - for image in images: - if image.is_payload: - """ - note to self: is only for `ose-` prefixed images - Yes, Get with the naming system or get out of town - """ - if image.image_name_short.startswith("ose-"): - payload_images.append(image) - continue - invalid_name_items.append(image.image_name_short) - red_print(f"NOT adding to IS (does not meet name/version conventions): {image.image_name_short}") + class PayloadEntry(NamedTuple): - return payload_images, invalid_name_items + # The destination pullspec + dest_pullspec: str - def _get_latest_builds(self, payload_images: List[ImageMetadata]) -> Tuple[List[BuildRecord], List[ImageMetadata]]: """ - Find latest brew build (at event, if given) of each payload image. - - If assemblies are disabled, it will return the latest tagged brew build with the candidate brew tag. - If assemblies are enabled, it will return the latest tagged brew build in the given assembly. - If no such build, it will fall back to the latest build in "stream" assembly. + If the entry is for an image in this doozer group, these values will be set. + """ + # The image metadata which associated with the payload + image_meta: Optional[ImageMetadata] = None + # An inspector associated with the overall brew build (manifest list) found for the release + build_inspector: Optional[BrewBuildImageInspector] = None + # The brew build archive (arch specific image) that should be tagged into the payload + archive_inspector: Optional[ArchiveImageInspector] = None - :param payload_images: a list of image metadata for payload images - :return: list of build records, list of images missing builds """ - brew_latest_builds = [] - for image_meta in payload_images: - latest_build: ImageMetadata = image_meta.get_latest_build() - if self.runtime.assembly_basis_event and not self.skip_gc_tagging: - # If we are preparing an assembly with a basis event, let's start getting - # serious and tag these images so they don't get garbage collected. - build_nvr = latest_build['nvr'] - tags = {tag['name'] for tag in self.brew_session.listTags(build=build_nvr)} - if image_meta.hotfix_brew_tag() not in tags: - self.runtime.logger.info(f'Tagging {image_meta.get_component_name()} build {build_nvr} with {image_meta.hotfix_brew_tag()} to prevent garbage collection') - self.brew_session.tagBuild(image_meta.hotfix_brew_tag(), build_nvr) - - brew_latest_builds.append(latest_build) - - # look up the archives for each image (to get the RPMs that went into them) - brew_build_ids = [b["id"] if b else 0 for b in brew_latest_builds] - archives_list = brew.list_archives_by_builds(brew_build_ids, "image", self.brew_session) - - # at this point payload_images, brew_latest_builds, and archives_list should be matching lists; - # combine them into dict build records. - latest_builds, missing_images = [], [] - for image, build, archives in zip(payload_images, brew_latest_builds, archives_list): - if build and archives: - latest_builds.append(BuildRecord(image, build, archives)) - else: - missing_images.append(image) - state.record_image_fail(self.state, image, f"Unable to find build for: {image.image_name_short}", self.runtime.logger) + If the entry is for machine-os-content, this value will be set + """ + rhcos_build: Optional[RHCOSBuildInspector] = None - self.state["builds_missing"] = len(missing_images) - self.state["builds_found"] = len(latest_builds) - return latest_builds, missing_images + # Append any inconsistencies found for the entry + inconsistencies: List[str] = list() - def _designate_privacy(self, latest_builds, images): + @staticmethod + def find_mismatched_siblings(build_image_inspectors: Iterable[Optional[BrewBuildImageInspector]]) -> List[BrewBuildImageInspector]: """ - For a list of build records, determine if they have private contents. If - so, then set "private" to True for that build record. This is done for a - whole set of builds since we have to look up parents and we would like to - cache those lookups. + Sibling images are those built from the same repository. We need to throw an error + if there are sibling built from different commits. + :return: Returns a list of ImageMetadata which had conflicting upstream commits """ - if not self.runtime.group_config.public_upstreams: - # when public_upstreams are not configured, we assume there is no private content. - return - - if self.runtime.assembly_basis_event: - # If an assembly has a basis event, its content is not going to go out - # to a release controller. Nothing we write is going to be publicly - # available. - return - - # store RPM archives to BuildStatusDetector cache to limit Brew queries - for r in latest_builds: - self.bs_detector.archive_lists[r.build["id"]] = r.archives - - # determine if each image build is embargoed (or otherwise "private") - embargoed_build_ids = self.bs_detector.find_embargoed_builds( - [r.build for r in latest_builds], - {image.candidate_brew_tag() for image in images} - ) - for r in latest_builds: - if r.build["id"] in embargoed_build_ids: - r.private = True - - def write_mirror_destinations(self, latest_builds, mismatched_siblings): - self.runtime.logger.info("Creating mirroring lists...") - - # returns map[(brew_arch, private)] -> map[image_name] -> { version: release: image_src: digest: build_record: } - mirror_src_for_arch_and_name = self._get_mirror_sources(latest_builds, mismatched_siblings) - - # we need to evaluate rhcos inconsistencies across architectures (separate builds) - rhcos_source_for_priv_arch = {False: {}, True: {}} # map[private][brew_arch] -> source - for brew_arch, private in mirror_src_for_arch_and_name.keys(): - rhcos_source_for_priv_arch[private][brew_arch] = self._latest_mosc_source(brew_arch, private) - rhcos_inconsistencies = { # map[private] -> map[annotation] -> description - private: self._find_rhcos_build_inconsistencies(rhcos_source_for_priv_arch[private]) for private in (True, False) - } + class RepoBuildRecord(NamedTuple): + build_image_inspector: BrewBuildImageInspector + source_git_commit: str - for dest, source_for_name in mirror_src_for_arch_and_name.items(): - brew_arch, private = dest + # Maps SOURCE_GIT_URL -> RepoBuildRecord(SOURCE_GIT_COMMIT, DISTGIT_KEY, NVR). Where the Tuple is the first build + # encountered claiming it is sourced from the SOURCE_GIT_URL + repo_builds: Dict[str, RepoBuildRecord] = dict() - if self.runtime.assembly_basis_event and private: - self.runtime.logger.info(f"Skipping private mirroring list / imagestream for asssembly: {self.runtime.assembly}") + mismatched_siblings: List[BrewBuildImageInspector] = [] + for build_image_inspector in build_image_inspectors: + + if not build_image_inspector: + # No build for this component at present. continue - dest = f"{brew_arch}{'-priv' if private else ''}" - - # Save the default SRC=DEST input to a file for syncing by 'oc image mirror' - with io.open(f"src_dest.{dest}", "w+", encoding="utf-8") as out_file: - for source in source_for_name.values(): - mirror_dest = self._build_dest_name(source, self.base_target.orgrepo) - out_file.write(f"{source['image_src']}={mirror_dest}\n") - - # build the local tag target from the base - name, namespace = is_name_and_space( - self.base_target.istream_name, - self.base_target.istream_namespace, - brew_arch, private) - target = SyncTarget(self.base_target.orgrepo, name, namespace) - x86_source_for_name = mirror_src_for_arch_and_name[('x86_64', private)] - istream_spec = self._get_istream_spec( - brew_arch, private, target, - source_for_name, x86_source_for_name, - rhcos_source_for_priv_arch[private][brew_arch], rhcos_inconsistencies[private] - ) - with io.open(f"image_stream.{dest}.yaml", "w+", encoding="utf-8") as out_file: - yaml.safe_dump(istream_spec, out_file, indent=2, default_flow_style=False) + source_url = build_image_inspector.get_source_git_url() + source_git_commit = build_image_inspector.get_source_git_commit() + if not source_url or not source_git_commit: + # This is true for distgit only components. + continue - def _find_rhcos_build_inconsistencies(self, rhcos_source_for_arch): - inconsistencies = {} + potential_conflict: RepoBuildRecord = repo_builds.get(source_url, None) + if potential_conflict: + # Another component has build from this repo before. Make + # sure it built from the same commit. + if potential_conflict.source_git_commit != source_git_commit: + mismatched_siblings.append(potential_conflict.build_image_inspector) + mismatched_siblings.append(build_image_inspector) + red_print(f"The following NVRs are siblings but built from different commits: {potential_conflict.build_image_inspector.get_nvr()} and {build_image_inspector.get_nvr()}") + else: + # No conflict, so this is our first encounter for this repo; add it to our tracking dict. + repo_builds[source_url] = RepoBuildRecord(build_image_inspector=build_image_inspector, source_git_commit=source_git_commit) - # gather a list of all rpms used in every arch of rhcos build - nvrs_for_rpm = {} - for brew_arch, source in rhcos_source_for_arch.items(): - if not source: # sometimes could be missing e.g. browser outage; just note that here - annotation = f"Could not retrieve RHCOS for {brew_arch}" - inconsistencies[annotation] = annotation # not much more to explain - continue - for rpm in source['archive']['rpms']: - nvrs_for_rpm.setdefault(rpm['name'], set()).add(rpm['nvr']) - for name, nvrs in nvrs_for_rpm.items(): - if len(nvrs) > 1: - annotation = f"Multiple versions of RPM {name} used" - description = f"RPM {name} has multiple versions across arches: {list(nvrs)}" - inconsistencies[annotation] = description + return mismatched_siblings - return inconsistencies + @staticmethod + def find_rhcos_build_rpm_inconsistencies(rhcos_builds: List[RHCOSBuildInspector]) -> Dict[str, List[str]]: + """ + Looks through a set of RHCOS builds and finds if any of those builds contains a package version that + is inconsistent with the same package in another RHCOS build. + :return: Returns Dict[inconsistent_rpm_name] -> [inconsistent_nvrs, ...]. The Dictionary will be empty + if there are no inconsistencies detected. + """ + rpm_uses: Dict[str, Set[str]] = {} + + for rhcos_build in rhcos_builds: + for nvr in rhcos_build.get_rpm_nvrs(): + rpm_name = parse_nvr(nvr)['name'] + if rpm_name not in rpm_uses: + rpm_uses[rpm_name] = set() + rpm_uses[rpm_name].add(nvr) - def _get_mirror_sources(self, latest_builds, mismatched_siblings): + # Report back rpm name keys which were associated with more than one NVR in the set of RHCOS builds. + return {rpm_name: nvr_list for rpm_name, nvr_list in rpm_uses.items() if len(nvr_list) > 1} + + @staticmethod + def get_mirroring_destination(archive_inspector: ArchiveImageInspector, dest_repo: str) -> str: """ - Determine the image sources to mirror to each arch-private-specific imagestream, - excluding mismatched siblings; also record success/failure per state. + :param archive_inspector: The archive to analyze for mirroring. + :param dest_repo: A pullspec to mirror to, except for the tag. This include registry, organization, and repo. + :return: Returns the external (quay) image location to which this image should be mirrored in order + to be included in an nightly release payload. These tags are meant to leak no information + to users watching the quay repo. The image must have a tag or it will be garbage collected. + """ + tag = archive_inspector.get_archive_digest().replace(":", "-") # sha256:abcdef -> sha256-abcdef + return f"{dest_repo}:{tag}" - :return: map[(brew_arch, private)] -> map[image_name] -> { version: release: image_src: digest: build_record: } + @staticmethod + def find_payload_entries(assembly_inspector: AssemblyInspector, arch: str, dest_repo: str) -> Dict[str, PayloadEntry]: """ - mirroring = {} - for record in latest_builds: - image = record.image - error = None - if image.distgit_key in mismatched_siblings: - error = "Siblings built from different commits" - else: - # The tag that will be used in the imagestreams - payload_name = image.config.get("payload_name") - if payload_name: - tag_name = payload_name - else: - tag_name = image.image_name_short[4:] if image.image_name_short.startswith("ose-") else image.image_name_short # it _should_ but... to be safe - for archive in record.archives: - brew_arch = archive["arch"] - if brew_arch in self.exclude_arches: - continue - pullspecs = archive["extra"]["docker"]["repositories"] - if not pullspecs or ":" not in pullspecs[-1]: # in case of no pullspecs or invalid format - error = f"Unable to find pullspecs for: {image.image_name_short}" - red_print(error) - state.record_image_fail(self.state, image, error, self.runtime.logger) - continue - digest = archive["extra"]['docker']['digests']['application/vnd.docker.distribution.manifest.v2+json'] - if not digest.startswith("sha256:"): # It should start with sha256: for now. Let's raise an error if this changes. - raise ValueError(f"Received unrecognized digest {digest} for image {pullspecs[-1]}") - - mirroring_value = dict( - version=record.build["version"], - release=record.build["release"], - image_src=pullspecs[-1], - digest=digest, - build_record=record, - archive=archive, - ) - - if record.private: # exclude embargoed images from the ocp[-arch] imagestreams - yellow_print(f"Omitting embargoed image {pullspecs[-1]}") - else: - mirroring_list = mirroring.setdefault((brew_arch, False), {}) - if tag_name not in mirroring_list or payload_name: - # if multiple images in arch have the same tag, only explicit payload_name overwrites (https://issues.redhat.com/browse/ART-2823 - self.runtime.logger.info(f"Adding {brew_arch} image {pullspecs[-1]} to the public mirroring list with imagestream tag {tag_name}...") - mirroring_list[tag_name] = mirroring_value - - if self.runtime.group_config.public_upstreams: - # when public_upstreams are configured, both embargoed and non-embargoed images should be included in the ocp[-arch]-priv imagestreams - mirroring_list = mirroring.setdefault((brew_arch, True), {}) - if tag_name not in mirroring_list or payload_name: - # if multiple images in arch have the same tag, only explicit payload_name overwrites (https://issues.redhat.com/browse/ART-2823 - self.runtime.logger.info(f"Adding {brew_arch} image {pullspecs[-1]} to the private mirroring list with imagestream tag {tag_name}...") - mirroring_list[tag_name] = mirroring_value - - # per build, record in the state whether we can successfully mirror it - if error: - red_print(error) - state.record_image_fail(self.state, image, error, self.runtime.logger) - else: - state.record_image_success(self.state, image) + Returns a list of images which should be included in the architecture specific release payload. + This includes images for our group's image metadata as well as machine-os-content. + :param assembly_inspector: An analyzer for the assembly to generate entries for. + :param arch: The brew architecture name to create the list for. + :param dest_repo: The registry/org/repo into which the image should be mirrored. + :return: Map[payload_tag_name] -> PayloadEntry. + """ + members: Dict[str, Optional[PayloadGenerator.PayloadEntry]] = dict() # Maps release payload tag name to the PayloadEntry for the image. + for payload_tag, archive_inspector in PayloadGenerator.get_group_payload_tag_mapping(assembly_inspector, arch).items(): + if not archive_inspector: + # There is no build for this payload tag for this CPU arch. This + # will be filled in later in this method for the final list. + members[payload_tag] = None + continue - return mirroring + members[payload_tag] = PayloadGenerator.PayloadEntry( + image_meta=archive_inspector.get_image_meta(), + build_inspector=archive_inspector.get_brew_build_inspector(), + archive_inspector=archive_inspector, + dest_pullspec=PayloadGenerator.get_mirroring_destination(archive_inspector, dest_repo) + ) - @staticmethod - def _build_dest_name(source, orgrepo): - tag = source["digest"].replace(":", "-") # sha256:abcdef -> sha256-abcdef - return f"quay.io/{orgrepo}:{tag}" - - def _get_istream_spec(self, brew_arch, private, target, source_for_name, x86_source_for_name, - rhcos_source, rhcos_inconsistencies): - # Write tag specs for the image stream. The name of each tag - # spec does not include the 'ose-' prefix. This keeps them - # consistent between OKD and OCP. - - # Template Base Image Stream object. - tag_list = [] - istream_spec = { - 'kind': 'ImageStream', - 'apiVersion': 'image.openshift.io/v1', - 'metadata': { - 'name': target.istream_name, - 'namespace': target.istream_namespace, - }, - 'spec': { - 'tags': tag_list, - } - } + # members now contains a complete map of payload tag keys, but some values may be None. This is an + # indication that the architecture did not have a build of one of our group images. + # The tricky bit is that all architecture specific release payloads contain the same set of tags + # or 'oc adm release new' will have trouble assembling it. i.e. an imagestream tag 'X' may not be + # necessary on s390x, bit we need to populate that tag with something. - for tag_name, source in source_for_name.items(): - tag_list.append(self._get_istag_spec(tag_name, source, target)) + # To do this, we replace missing images with the 'pod' image for the architecture. This should + # be available for every CPU architecture. As such, we must find pod to proceed. - # add in rhcos tag - if rhcos_source: # missing rhcos should not prevent syncing everything else - mosc_istag = self._get_mosc_istag_spec(rhcos_source, rhcos_inconsistencies) - tag_list.append(mosc_istag) + pod_entry = members.get('pod', None) + if not pod_entry: + raise IOError(f'Unable to find pod image archive for architecture: {arch}; unable to construct payload') - tag_list.extend(self._extra_dummy_tags(brew_arch, private, source_for_name, x86_source_for_name, target)) + final_members: Dict[str, PayloadGenerator.PayloadEntry] = dict() + for tag_name, entry in members.items(): + if entry: + final_members[tag_name] = entry + else: + final_members[tag_name] = pod_entry - return istream_spec + rhcos_build: RHCOSBuildInspector = assembly_inspector.get_rhcos_build(arch) + members['machine-os-content'] = PayloadGenerator.PayloadEntry( + dest_pullspec=rhcos_build.get_image_pullspec(), + rhcos_build=rhcos_build, + ) - def _get_istag_spec(self, tag_name, source, target): - record = source['build_record'] - inconsistencies = self._find_rpm_inconsistencies(source['archive'], record.image.candidate_brew_tag()) - if inconsistencies: # format {annotation: description} - inc_state = self.state.setdefault('inconsistencies', {}).setdefault(tag_name, []) - # de-duplicate -- most will be repeated for each arch - inc_state.extend([val for val in inconsistencies.values() if val not in inc_state]) + # Final members should have all tags populated. + return final_members + @staticmethod + def build_payload_istag(payload_tag_name: str, payload_entry: PayloadEntry) -> Dict: + """ + :param payload_tag_name: The name of the payload tag for which to create an istag. + :param payload_entry: The payload entry to serialize into an imagestreamtag. + :return: Returns a imagestreamtag dict for a release payload imagestream. + """ return { - 'annotations': self._inconsistency_annotation(inconsistencies.keys()), - 'name': tag_name, + 'annotations': PayloadGenerator._build_inconsistency_annotation(payload_entry.inconsistencies), + 'name': payload_tag_name, 'from': { 'kind': 'DockerImage', - 'name': self._build_dest_name(source, target.orgrepo), + 'name': payload_entry.dest_pullspec, } } - def _find_rpm_inconsistencies(self, archive, candidate_tag): - # returns a dict describing latest candidate rpms that are mismatched with build contents + @staticmethod + def build_payload_imagestream(imagestream_name: str, imagestream_namespace: str, payload_istags: Iterable[Dict], assembly_wide_inconsistencies: Iterable[str]) -> Dict: + """ + Builds a definition for a release payload imagestream from a set of payload istags. + :param imagestream_name: The name of the imagstream to generate. + :param imagestream_namespace: The nemspace in which the imagestream should be created. + :param payload_istags: A list of istags generated by build_payload_istag. + :param assembly_wide_inconsistencies: Any inconsistency information to embed in the imagestream. + :return: Returns a definition for an imagestream for the release payload. + """ - # N.B. the "rpms" installed in an image archive are individual RPMs, not brew rpm package builds. - # we compare against the individual RPMs from latest candidate rpm package builds. - candidate_rpms = { - # the RPMs are collected by name mainly to de-duplicate (same RPM, multiple arches) - rpm['name']: rpm for rpm in - self.bs_detector.find_unshipped_candidate_rpms(candidate_tag, self.runtime.brew_event) + istream_obj = { + 'kind': 'ImageStream', + 'apiVersion': 'image.openshift.io/v1', + 'metadata': { + 'name': imagestream_name, + 'namespace': imagestream_namespace, + 'annotations': PayloadGenerator._build_inconsistency_annotation(assembly_wide_inconsistencies) + }, + 'spec': { + 'tags': list(payload_istags), + } } - inconsistencies = {} - archive_rpms = {rpm['name']: rpm for rpm in archive['rpms']} - # we expect only a few unshipped candidates most of the the time, so we'll just search for those. - for name, rpm in candidate_rpms.items(): - archive_rpm = archive_rpms.get(name) - if archive_rpm and rpm['nvr'] != archive_rpm['nvr']: - inconsistencies[f"Contains outdated RPM {rpm['name']}"] = ( - f"RPM {archive_rpm['nvr']} is installed in image build {archive['build_id']} but" - f" {rpm['nvr']} from package build {rpm['build_id']} is latest candidate" - ) - - return inconsistencies # {annotation: description} + return istream_obj - def _inconsistency_annotation(self, inconsistencies): + @staticmethod + def _build_inconsistency_annotation(inconsistencies: Iterable[str]): + """ + :param inconsistencies: A list of strings to report as inconsistencies within an annotation. + :return: Returns a dict containing an inconsistency annotation out of the specified str. + Returns emtpy {} if there are no inconsistencies in the parameter. + """ # given a list of strings, build the annotation for inconsistencies if not inconsistencies: return {} @@ -502,155 +502,130 @@ def _inconsistency_annotation(self, inconsistencies): inconsistencies[5:] = ["(...and more)"] return {"release.openshift.io/inconsistency": json.dumps(inconsistencies)} - def _extra_dummy_tags(self, brew_arch, private, source_for_name, x86_source_for_name, target, stand_in_tag="pod"): + @staticmethod + def get_group_payload_tag_mapping(assembly_inspector: AssemblyInspector, arch: str) -> Dict[str, Optional[ArchiveImageInspector]]: """ - For non-x86 arches, not all images are built (e.g. kuryr), but they may - be mentioned in CVO image references. Thus, make sure there is a tag for - every tag we find in x86_64 and provide a dummy image to stand in if needed. - - :return: a list of tag specs for the payload images not built in this arch. + Each payload tag name used to map exactly to one release imagemeta. With the advent of '-alt' images, + we need some logic to determine which images map to which payload tags for a given architecture. + :return: Returns a map[payload_tag_name] -> ArchiveImageInspector containing an image for the payload. The value may be + None if there is no arch specific build for the tag. This does not include machine-os-content since that + is not a member of the group. """ - tag_list = [] - if stand_in_tag in source_for_name: # stand_in_tag image serves as the dummy image for the replacement - extra_tags = x86_source_for_name.keys() - source_for_name.keys() - for tag_name in extra_tags: - yellow_print('Unable to find tag {} for arch {} ; substituting {} image'.format(tag_name, brew_arch, stand_in_tag)) - tag_list.append({ - 'name': tag_name, - 'from': { - 'kind': 'DockerImage', - 'name': self._build_dest_name(source_for_name[stand_in_tag], target.orgrepo) - } - }) - elif self.runtime.group_config.public_upstreams and not private: - # If stand_in_tag is embargoed, it is expected that stand_in_tag is missing in any non *-priv imagestreams. - self.runtime.logger.warning(f"Unable to find {stand_in_tag} tag from {brew_arch} imagestream. Is {stand_in_tag} image embargoed or out of sync with siblings?") - else: - # if CVE embargoes supporting is disabled or the stand_in_tag image is also - # missing in *-priv namespaces, an error will be raised. - raise DoozerFatalError(f"A dummy image is required for arch {brew_arch}, but {stand_in_tag} image is not available to stand in") - - return tag_list - - def _latest_mosc_source(self, brew_arch, private): - image_stream_suffix = f"{brew_arch}{'-priv' if private else ''}" - runtime = self.runtime - runtime.logger.info(f"Getting latest RHCOS source for {image_stream_suffix}...") - - assembly_rhcos_config = assembly.assembly_rhcos_config(runtime.releases_config, runtime.assembly) - # See if this assembly has assembly.rhcos.machine-os-content.images populated for this architecture. - assembly_rhcos_arch_pullspec = assembly_rhcos_config['machine-os-content'].images[brew_arch] - if self.runtime.assembly_basis_event and not assembly_rhcos_arch_pullspec: - raise Exception(f'Assembly {runtime.assembly} has a basis event but no assembly.rhcos MOSC image data for {brew_arch}; all MOSC image data must be populated for this assembly to be valid') - - try: - - version = self.runtime.get_minor_version() - - if assembly_rhcos_arch_pullspec: - pullspec = assembly_rhcos_arch_pullspec - image_info_str, _ = exectools.cmd_assert(f'oc image info -o json {pullspec}') - image_info = Model(dict_to_model=json.loads(image_info_str)) - build_id = image_info.config.config.Labels.version - if not build_id: - raise Exception(f'Unable to determine MOSC build_id from: {pullspec}. Retrieved image info: {image_info_str}') - else: - build_id, pullspec = rhcos.latest_machine_os_content(version, brew_arch, private) - if not pullspec: - raise Exception(f"No RHCOS found for {version}") - - commitmeta = rhcos.rhcos_build_meta(build_id, version, brew_arch, private, meta_type="commitmeta") - rpm_list = commitmeta.get("rpmostree.rpmdb.pkglist") - if not rpm_list: - raise Exception(f"no pkglist in {commitmeta}") - - except Exception as ex: - problem = f"{image_stream_suffix}: {ex}" - red_print(f"error finding RHCOS {problem}") - # record when there is a problem; as each arch is a separate build, make an array - self.state.setdefault("images", {}).setdefault("machine-os-content", []).append(problem) - return None - - # create fake brew image archive to be analyzed later for rpm inconsistencies - archive = dict( - build_id=f"({brew_arch}){build_id}", - rpms=[dict(name=r[0], epoch=r[1], nvr=f"{r[0]}-{r[2]}-{r[3]}") for r in rpm_list], - # nothing else should be needed - if we need more, will have to fake it here - ) + brew_arch = brew_arch_for_go_arch(arch) # Make certain this is brew arch nomenclature + members: Dict[str, Optional[ArchiveImageInspector]] = dict() # Maps release payload tag name to the archive which should populate it + for dgk, build_inspector in assembly_inspector.get_group_release_images().items(): + + if build_inspector is None: + # There was no build for this image found associated with the assembly. + # In this case, don't put the tag_name into the imagestream. This is not good, + # so be verbose. + red_print(f'Unable to find build for {dgk} for {assembly_inspector.get_assembly_name()}') + continue - return dict( - archive=archive, - image_src=pullspec, - # nothing else should be needed - if we need more, will have to fake it here - ) + image_meta: ImageMetadata = assembly_inspector.runtime.image_map[dgk] - def _get_mosc_istag_spec(self, source, inconsistencies): - inc = dict(inconsistencies) # make a copy so original is not altered - inc.update(self._find_rpm_inconsistencies(source['archive'], rhcos.rhcos_content_tag(self.runtime))) - if inc: # format {annotation: description} - inc_state = self.state.setdefault('inconsistencies', {}).setdefault('machine-os-content', []) - inc_state.extend([desc for desc in inc.values() if desc not in inc_state]) + if not image_meta.is_payload: + # Nothing to for images not in the payload + continue - return { - 'annotations': self._inconsistency_annotation(inc.keys()), - 'name': "machine-os-content", - 'from': { - 'kind': 'DockerImage', - # unlike other images, m-os-c originates in quay, does not need mirroring - 'name': source['image_src'], - } - } + if arch not in image_meta.get_arches(): + # If this image is not meant for this architecture + continue - def _find_mismatched_siblings(self, builds) -> Set: - """ Sibling images are those built from the same repository. We need to throw an error if there are sibling built from different commit. - """ - # First, loop over all builds and store their source repos and commits to a dict - repo_commit_nvrs = {} # key is source repo url, value is another dict that key is commit hash and value is a set of nvrs. - # Second, build a dict with keys are NVRs and values are the ImageMetadata objects. ImageMetadatas are used for logging state. - nvr_images = {} - - for record in builds: - # source repo url and commit hash are stored in image's environment variables. - ar = record.archives[0] # the build is a manifest list, let's look at the first architecture - envs = ar["extra"]["docker"]["config"]["config"].get("Env", []) - source_repo_entry = list(filter(lambda env: env.startswith("SOURCE_GIT_URL="), envs)) - source_commit_entry = list(filter(lambda env: env.startswith("SOURCE_GIT_COMMIT="), envs)) - if not source_repo_entry or not source_commit_entry: - continue # this image doesn't have required environment variables. is it a dist-git only image? - source_repo = source_repo_entry[0][source_repo_entry[0].find("=") + 1:] # SOURCE_GIT_URL=https://example.com => https://example.com - source_commit = source_commit_entry[0][source_commit_entry[0].find("=") + 1:] # SOURCE_GIT_COMMIT=abc => abc - nvrs = repo_commit_nvrs.setdefault(source_repo, {}).setdefault(source_commit, set()) - nvrs.add(record.build["nvr"]) - nvr_images[record.build["nvr"]] = record.image - - # Finally, look at the dict and print an error if one repo has 2 or more commits - mismatched_siblings = set() - for repo, commit_nvrs in repo_commit_nvrs.items(): - if len(commit_nvrs) >= 2: - red_print("The following NVRs are siblings but built from different commits:") - for commit, nvrs in commit_nvrs.items(): - for nvr in nvrs: - image = nvr_images[nvr] - mismatched_siblings.add(image.distgit_key) - red_print(f"{nvr}\t{image.distgit_key}\t{repo}\t{commit}") - return mismatched_siblings + tag_name, explicit = image_meta.get_payload_tag_info() # The tag that will be used in the imagestreams and whether it was explicitly declared. + if tag_name in members and not explicit: + # If we have already found an entry, there is a precedence we honor for + # "-alt" images. Specifically, if a imagemeta declares its payload tag + # name explicitly, it will take precedence over any other entries + # https://issues.redhat.com/browse/ART-2823 + # This was tag not explicitly declared, so ignore the duplicate image. + continue -def default_is_base_name(runtime: Runtime): - version = runtime.get_minor_version() - if runtime.assembly is None or runtime.assembly == 'stream': - return f'{version}-art-latest' - else: - return f'{version}-art-assembly-{runtime.assembly}' + archive_inspector = build_inspector.get_image_archive_inspector(brew_arch) + if not archive_inspector: + # This is no build for this CPU architecture for this build. Don't worry yet, + # it may be carried by an -alt image or not at all for non-x86 arches. + members[tag_name] = None + continue -def default_is_base_namespace(): - return "ocp" + members[tag_name] = archive_inspector + return members -def is_name_and_space(base_name, base_namespace, brew_arch, private): - arch_suffix = go_suffix_for_arch(brew_arch) - priv_suffix = "-priv" if private else "" - name = f"{base_name}{arch_suffix}{priv_suffix}" - namespace = f"{base_namespace}{arch_suffix}{priv_suffix}" - return name, namespace + @staticmethod + def _check_nightly_consistency(assembly_inspector: AssemblyInspector, nightly: str, arch: str) -> List[str]: + runtime = assembly_inspector.runtime + + def terminal_issue(msg: str): + return [msg] + + issues: List[str] + runtime.logger.info(f'Processing nightly: {nightly}') + major_minor, brew_cpu_arch, priv = isolate_nightly_name_components(nightly) + + if major_minor != runtime.get_minor_version(): + return terminal_issue(f'Specified nightly {nightly} does not match group major.minor') + + rc_suffix = go_suffix_for_arch(brew_cpu_arch, priv) + + retries: int = 3 + release_json_str = '' + rc = -1 + pullspec = f'registry.ci.openshift.org/ocp{rc_suffix}/release{rc_suffix}:{nightly}' + while retries > 0: + rc, release_json_str, err = exectools.cmd_gather(f'oc adm release info {pullspec} -o=json') + if rc == 0: + runtime.logger.warn(f'Error accessing nightly release info for {pullspec}: {err}') + break + retries -= 1 + + if rc != 0: + return terminal_issue(f'Unable to gather nightly release info details: {pullspec}; garbage collected?') + + release_info = Model(dict_to_model=json.loads(release_json_str)) + if not release_info.references.spec.tags: + return terminal_issue(f'Could not find tags in nightly {nightly}') + + issues: List[str] = list() + payload_entries: Dict[str, PayloadGenerator.PayloadEntry] = PayloadGenerator.find_payload_entries(assembly_inspector, arch, '') + for component_tag in release_info.references.spec.tags: # For each tag in the imagestream + payload_tag_name: str = component_tag.name # e.g. "aws-ebs-csi-driver" + payload_tag_pullspec: str = component_tag['from'].name # quay pullspec + if '@' not in payload_tag_pullspec: + # This speaks to an invalid nightly, so raise and exception + raise IOError(f'Expected pullspec in {nightly}:{payload_tag_name} to be sha digest but found invalid: {payload_tag_pullspec}') + + pullspec_sha = payload_tag_pullspec.rsplit('@', 1)[-1] + entry = payload_entries.get(payload_tag_name, None) + + if not entry: + raise IOError(f'Did not find {nightly} payload tag {payload_tag_name} in computed assembly payload') + + if entry.archive_inspector: + if entry.archive_inspector.get_archive_digest() != pullspec_sha: + issues.append(f'{nightly} contains {payload_tag_name} sha {pullspec_sha} but assembly computed archive: {entry.archive_inspector.get_archive_id()} and {entry.archive_inspector.get_archive_pullspec()}') + elif entry.rhcos_build: + if entry.rhcos_build.get_machine_os_content_digest() != pullspec_sha: + issues.append(f'{nightly} contains {payload_tag_name} sha {pullspec_sha} but assembly computed rhcos: {entry.rhcos_build} and {entry.rhcos_build.get_machine_os_content_digest()}') + else: + raise IOError(f'Unsupported payload entry {entry}') + + return issues + + @staticmethod + def check_nightlies_consistency(assembly_inspector: AssemblyInspector) -> List[str]: + """ + If this assembly has reference-releases, check whether the current images selected by the + assembly are an exact match for the nightly contents. + """ + basis = assembly_basis(assembly_inspector.runtime.get_releases_config(), assembly_inspector.runtime.assembly) + if not basis or not basis.reference_releases: + return [] + + issues: List[str] = [] + for arch, nightly in basis.reference_releases.primitive().items(): + issues.extend(PayloadGenerator._check_nightly_consistency(assembly_inspector, nightly, arch)) + + return issues diff --git a/doozerlib/cli/scan_sources.py b/doozerlib/cli/scan_sources.py index 70e69ef95..e9c693804 100644 --- a/doozerlib/cli/scan_sources.py +++ b/doozerlib/cli/scan_sources.py @@ -258,9 +258,9 @@ def _detect_rhcos_status(runtime, kubeconfig) -> list: def _tagged_mosc_id(kubeconfig, version, arch, private) -> str: """determine what the most recently tagged machine-os-content is in given imagestream""" - base_name = rgp.default_is_base_name(version) - base_namespace = rgp.default_is_base_namespace() - name, namespace = rgp.is_name_and_space(base_name, base_namespace, arch, private) + base_name = rgp.default_imagestream_base_name(version) + base_namespace = rgp.default_imagestream_namespace_base_name() + name, namespace = rgp.payload_imagestream_name_and_namespace(base_name, base_namespace, arch, private) stdout, _ = exectools.cmd_assert( f"oc --kubeconfig '{kubeconfig}' --namespace '{namespace}' get istag '{name}:machine-os-content'" " --template '{{.image.dockerImageMetadata.Config.Labels.version}}'", diff --git a/doozerlib/distgit.py b/doozerlib/distgit.py index 01e81e772..9585a1938 100644 --- a/doozerlib/distgit.py +++ b/doozerlib/distgit.py @@ -1552,8 +1552,8 @@ def update_distgit_dir(self, version, release, prev_release=None, force_yum_upda parent_build_info = build_model.extra.image.parent_image_builds[tag_pullspec] if parent_build_info is Missing: raise IOError(f'Unable to resolve parent {target_parent_name} in {latest_build} for {assembly_msg}; tried {tag_pullspec}') - parent_build_nvr = parse_nvr(parent_build_info.nvr) - # Hang in there.. this is a long dance. Now that we know the NVR, we can constuct + parent_build_nvr = parse_nvr(parent_build_info._nvr) + # Hang in there.. this is a long dance. Now that we know the NVR, we can construct # a truly unique pullspec. if '@' in tag_pullspec: unique_pullspec = tag_pullspec.rsplit('@', 1)[0] # remove the sha diff --git a/doozerlib/image.py b/doozerlib/image.py index 81af477e1..c0d0d3935 100644 --- a/doozerlib/image.py +++ b/doozerlib/image.py @@ -3,14 +3,16 @@ import hashlib import json import random -from typing import Any, Dict, Optional, Tuple +from typing import Any, Dict, Optional, Tuple, Union, List +from kobo.rpmlib import parse_nvr -from doozerlib import brew, exectools, util +from doozerlib import brew, exectools from doozerlib.distgit import pull_image from doozerlib.metadata import Metadata, RebuildHint, RebuildHintCode from doozerlib.model import Missing, Model from doozerlib.pushd import Dir from doozerlib import coverity +from doozerlib.util import brew_arch_for_go_arch, isolate_el_version_in_release, go_arch_for_brew_arch class ImageMetadata(Metadata): @@ -28,6 +30,30 @@ def __init__(self, runtime, data_obj: Dict, commitish: Optional[str] = None, clo if clone_source: runtime.resolve_source(self) + def get_assembly_rpm_package_dependencies(self, el_ver: int) -> Dict[str, str]: + """ + An assembly can define RPMs which should be installed into a given member + image. Those dependencies can be specified at either the individual member + (higher priority) or at the group level. This method computes a + Dict[package_name] -> nvr for any package that should be installed due to + these overrides. + :param el_ver: Which version of RHEL to check + :return: Returns Dict[package_name] -> nvr for any assembly induced overrides. + """ + aggregate: Dict[str, str] = dict() # Map package_name -> nvr + eltag = f'el{el_ver}' + group_deps = self.runtime.get_group_config().dependencies.rpms or [] + member_deps = self.config.dependencies.rpms or [] + full = [] + full.extend(group_deps) + full.extend(member_deps) # Will will process things such that late entries override early + for rpm_entry in full: + if eltag in rpm_entry: # This entry has something for the requested RHEL version + nvr = rpm_entry[eltag] + package_name = parse_nvr(nvr)['name'] + aggregate[package_name] = nvr + return aggregate + def is_ancestor(self, image): """ :param image: A Metadata object or a distgit_key to check. @@ -95,6 +121,24 @@ def is_payload(self): def for_release(self): return self.config.get('for_release', True) + def get_payload_tag_info(self) -> Tuple[str, bool]: + """ + If this image is destined for the OpenShift release payload, it will have a tag name + associated within it within the release payload's originating imagestream. + :return: Returns the tag name to use for this image in an + OpenShift release imagestream and whether the payload name was explicitly included in the + image metadata. See https://issues.redhat.com/browse/ART-2823 . i.e. (tag_name, explicitly_declared) + """ + if not self.is_payload: + raise ValueError('Attempted to derive payload name for non-payload image: ' + self.distgit_key) + + payload_name = self.config.get("payload_name") + if payload_name: + return payload_name, True + else: + payload_name = self.image_name_short[4:] if self.image_name_short.startswith("ose-") else self.image_name_short # it _should_ but... to be safe + return payload_name, False + def get_brew_image_name_short(self): # Get image name in the Brew pullspec. e.g. openshift3/ose-ansible --> openshift3-ose-ansible return self.image_name.replace("/", "-") @@ -213,7 +257,7 @@ def get_additional_push_names(self, additional_registries): # Mapping of brew pullspec => most recent brew build dict. builder_image_builds = dict() - def does_image_need_change(self, changing_rpm_packages=[], buildroot_tag=None, newest_image_event_ts=None, oldest_image_event_ts=None) -> Tuple[Metadata, RebuildHint]: + def does_image_need_change(self, changing_rpm_packages=None, buildroot_tag=None, newest_image_event_ts=None, oldest_image_event_ts=None) -> Tuple[Metadata, RebuildHint]: """ Answers the question of whether the latest built image needs to be rebuilt based on the packages (and therefore RPMs) it is dependent on might have changed in tags @@ -226,6 +270,9 @@ def does_image_need_change(self, changing_rpm_packages=[], buildroot_tag=None, n :return: (meta, RebuildHint). """ + if not changing_rpm_packages: + changing_rpm_packages = [] + dgk = self.distgit_key runtime = self.runtime @@ -523,3 +570,402 @@ def is_image_older_than_package_build_tagging(image_meta, image_build_event_id, return RebuildHint(RebuildHintCode.PACKAGE_CHANGE, f'Package {package_name} has been retagged by potentially relevant tags since image build: {intersection_set}') return RebuildHint(RebuildHintCode.BUILD_IS_UP_TO_DATE, 'No package change detected') + + +class ArchiveImageInspector: + """ + Represents and returns information about an archive image associated with a brew build. + """ + + def __init__(self, runtime, archive: Dict, brew_build_inspector: 'BrewBuildImageInspector' =None): + """ + :param runtime: The brew build inspector associated with the build that created this archive. + :param archive: The raw archive dict from brew. + :param brew_build_inspector: If the BrewBuildImageInspector is known, pass it in. + """ + self.runtime = runtime + self._archive = archive + self._cache = {} + self.brew_build_inspector = brew_build_inspector + + if self.brew_build_inspector: + assert(self.brew_build_inspector.get_brew_build_id() == self.get_brew_build_id()) + + def image_arch(self) -> str: + """ + Returns the CPU architecture (brew build nomenclature) for which this archive was created. + """ + return self._archive['extra']['image']['arch'] + + def get_archive_id(self) -> int: + """ + :return: Returns this archive's unique brew ID. + """ + return self._archive['id'] + + def get_image_envs(self) -> Dict[str, str]: + """ + :return: Returns a dictionary of environment variables set for this image. + """ + env_list: List[str] = self._archive['extra']['docker']['config']['config']['Env'] + envs_dict: Dict[str, Optional[str]] = dict() + for env_entry in env_list: + if '=' in env_entry: + components = env_entry.split('=', 1) + envs_dict[components[0]] = components[1] + else: + # Something odd about entry, so include it by don't try to parse + envs_dict[env_entry] = None + return envs_dict + + def get_image_labels(self) -> Dict[str, str]: + """ + :return: Returns a dictionary of labels set for this image. + """ + return dict(self._archive['extra']['docker']['config']['config']['Labels']) + + def get_archive_dict(self) -> Dict: + """ + :return: Returns the raw brew archive object associated with this object. + listArchives output: https://gist.github.com/jupierce/a28a53e4057b550b3c8e5d6a8ac5198c. This method returns a single entry. + """ + return self._archive + + def get_brew_build_id(self) -> int: + """ + :return: Returns the brew build id for the build which created this archive. + """ + return self._archive['build_id'] + + def get_brew_build_inspector(self): + """ + :return: Returns a brew build inspector for the build which created this archive. + """ + if not self.brew_build_inspector: + self.brew_build_inspector = BrewBuildImageInspector(self.runtime, self.get_brew_build_id()) + return self.brew_build_inspector + + def get_image_meta(self) -> ImageMetadata: + """ + :return: Returns the imagemeta associated with this archive's component if there is one. None if no imagemeta represents it. + """ + return self.get_brew_build_inspector().get_image_meta() + + def get_installed_rpm_dicts(self) -> List[Dict]: + """ + :return: Returns listRPMs for this archive + (e.g. https://gist.github.com/jupierce/a8798858104dcf6dfa4bd1d6dd99d2d8) + IMPORTANT: these are different from brew + build records; use get_installed_build_dicts for those. + """ + cn = 'get_installed_rpms' + if cn not in self._cache: + with self.runtime.pooled_koji_client_session() as koji_api: + rpm_entries = koji_api.listRPMs(imageID=self.get_archive_id()) + self._cache[cn] = rpm_entries + return self._cache[cn] + + def get_installed_package_build_dicts(self) -> Dict[str, Dict]: + """ + :return: Returns a Dict containing records for package builds corresponding to + RPMs used by this archive. A single package can build multiple RPMs. + Dict[package_name] -> raw brew build dict for package. + """ + cn = 'get_installed_package_build_dicts' + + if cn not in self._cache: + aggregate: Dict[str, Dict] = dict() + with self.runtime.pooled_koji_client_session() as koji_api: + # Example results of listing RPMs in an given imageID: + # https://gist.github.com/jupierce/a8798858104dcf6dfa4bd1d6dd99d2d8 + for rpm_entry in self.get_installed_rpm_dicts(): + rpm_build_id = rpm_entry['build_id'] + # Now retrieve records for the package build which created this RPM. Turn caching + # on as the archives (and other images being analyzed) likely reference the + # exact same builds. + package_build = koji_api.getBuild(rpm_build_id, brew.KojiWrapperOpts(caching=True)) + package_name = package_build['package_name'] + aggregate[package_name] = package_build + + self._cache[cn] = aggregate + + return self._cache[cn] + + def get_archive_pullspec(self): + """ + :return: Returns an internal pullspec for a specific archive image. + e.g. 'registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-openshift-controller-manager:rhaos-4.6-rhel-8-containers-candidate-53809-20210722091236-x86_64' + """ + return self._archive['extra']['docker']['repositories'][0] + + def get_archive_digest(self): + """ + :return Returns the archive image's sha digest (e.g. 'sha256:1f3ebef02669eca018dbfd2c5a65575a21e4920ebe6a5328029a5000127aaa4b') + """ + digest = self._archive["extra"]['docker']['digests']['application/vnd.docker.distribution.manifest.v2+json'] + if not digest.startswith("sha256:"): # It should start with sha256: for now. Let's raise an error if this changes. + raise ValueError(f"Received unrecognized digest {digest} for archive {self.get_archive_id()}") + return digest + + +class BrewBuildImageInspector: + """ + Provides an API for common queries we perform against brew built images. + """ + + def __init__(self, runtime, pullspec_or_build_id_or_nvr: Union[str, int]): + """ + :param runtime: The koji client session to use. + :param pullspec_or_build_id_or_nvr: A pullspec to the brew image (it is fine if this is a manifest list OR a single archive image), a brew build id, or an NVR. + """ + self.runtime = runtime + + with self.runtime.pooled_koji_client_session() as koji_api: + self._nvr: Optional[str] = None # Will be resolved to the NVR for the image/manifest list + self._brew_build_obj: Optional[Dict] = None # Will be populated with a brew build dict for the NVR + + self._cache = dict() + + if '/' not in str(pullspec_or_build_id_or_nvr): + # Treat the parameter as an NVR or build_id. + self._brew_build_obj = koji_api.getBuild(pullspec_or_build_id_or_nvr, strict=True) + self._nvr = self._brew_build_obj['nvr'] + else: + # Treat as a full pullspec + self._build_pullspec = pullspec_or_build_id_or_nvr # This will be reset to the official brew pullspec, but use it for now + image_info = self.get_image_info() # We need to find the brew build, so extract image info + image_labels = image_info['config']['config']['Labels'] + self._nvr = image_labels['com.redhat.component'] + '-' + image_labels['version'] + '-' + image_labels['release'] + self._brew_build_obj = koji_api.getBuild(self._nvr, strict=True) + + self._build_pullspec = self._brew_build_obj['extra']['image']['index']['pull'][0] + self._brew_build_id = self._brew_build_obj['id'] + + def get_brew_build_id(self): + return self._brew_build_id + + def get_nvr(self): + return self._nvr + + def __str__(self): + return f'BrewBuild:{self.get_brew_build_id()}:{self.get_nvr()}' + + def __repr__(self): + return f'BrewBuild:{self.get_brew_build_id()}:{self.get_nvr()}' + + def get_image_info(self, arch='amd64') -> Dict: + """ + :return Returns the parsed output of oc image info for the specified arch. + """ + go_arch = go_arch_for_brew_arch(arch) # Ensure it is a go arch + cn = f'get_image_info-{go_arch}' + if cn not in self._cache: + image_raw_str, _ = exectools.cmd_assert(f'oc image info --filter-by-os={go_arch} -o=json {self._build_pullspec}', retries=3) + self._cache[cn] = json.loads(image_raw_str) + return self._cache[cn] + + def get_labels(self, arch='amd64') -> Dict[str, str]: + """ + :return: Returns a dictionary of labels associated with the image. If the image is a manifest list, + these will be the amd64 labels. + """ + return self.get_image_archive_inspector(arch).get_image_labels() + + def get_env(self, arch='amd64') -> Dict[str, str]: + """ + :param arch: The image architecture to check. + :return: Returns a dictionary of environment variables set for the image. + """ + return self.get_image_archive_inspector(arch).get_image_envs() + + def get_component_name(self) -> str: + return self.get_labels()['com.redhat.component'] + + def get_image_meta(self) -> Optional[ImageMetadata]: + """ + :return: Returns the ImageMetadata object associated with this component. Returns None if the component is not in ocp-build-data. + """ + return self.runtime.component_map.get(self.get_component_name(), None) + + def get_version(self) -> str: + """ + :return: Returns the 'version' field of this image's NVR. + """ + return self._brew_build_obj['version'] + + def get_release(self) -> str: + """ + :return: Returns the 'release' field of this image's NVR. + """ + return self._brew_build_obj['release'] + + def get_rhel_base_version(self) -> Optional[int]: + """ + Determines whether this image is based on RHEL 8, 9, ... May return None if no + RPMS are installed (e.g. FROM scratch) + """ + # OS metadata has changed a bit over time (i.e. there may be newer/cleaner ways + # to determine this), but one thing that seems backwards compatible + # is finding 'el' information in RPM list. + for brew_dict in self.get_all_installed_rpm_dicts(): + nvr = brew_dict['nvr'] + el_ver = isolate_el_version_in_release(nvr) + if el_ver: + return el_ver + + raise None + + def get_source_git_url(self) -> Optional[str]: + """ + :return: Returns SOURCE_GIT_URL from the image environment. This is a URL for the + public source a customer should be able to find the source of the component. + If the component does not have a ART-style SOURCE_GIT_URL, None is returned. + """ + return self.get_env().get('SOURCE_GIT_URL', None) + + def get_source_git_commit(self) -> Optional[str]: + """ + :return: Returns SOURCE_GIT_COMMIT from the image environment. This is a URL for the + public source a customer should be able to find the source of the component. + If the component does not have a ART-style SOURCE_GIT_COMMIT, None is returned. + """ + return self.get_env().get('SOURCE_GIT_COMMIT', None) + + def get_arch_archives(self) -> Dict[str, ArchiveImageInspector]: + """ + :return: Returns a map of architectures -> brew archive Dict within this brew build. + """ + return {a.image_arch(): a for a in self.get_image_archive_inspectors()} + + def get_build_pullspec(self): + """ + :return: Returns an internal pullspec for the overall build. Usually this would be a manifest list with architecture specific archives. + To get achive pullspecs, use get_archive_pullspec. + """ + return self._build_pullspec + + def get_all_archive_dicts(self) -> List[Dict]: + """ + :return: Returns all archives associated with the build. This includes entries for + things like cachito. + Example listArchives output: https://gist.github.com/jupierce/a28a53e4057b550b3c8e5d6a8ac5198c + """ + cn = 'get_all_archives' # cache entry name + if cn not in self._cache: + with self.runtime.pooled_koji_client_session() as koji_api: + self._cache[cn] = koji_api.listArchives(self._brew_build_id) + return self._cache[cn] + + def get_image_archive_dicts(self) -> List[Dict]: + """ + :return: Returns only raw brew archives for images within the build. + """ + return list(filter(lambda a: a['btype'] == 'image', self.get_all_archive_dicts())) + + def get_image_archive_inspectors(self) -> List[ArchiveImageInspector]: + """ + Example listArchives output: https://gist.github.com/jupierce/a28a53e4057b550b3c8e5d6a8ac5198c + :return: Returns only image archives from the build. + """ + cn = 'get_image_archives' + if cn not in self._cache: + image_archive_dicts = self.get_image_archive_dicts() + inspectors = [ArchiveImageInspector(self.runtime, archive, brew_build_inspector=self) for archive in image_archive_dicts] + self._cache[cn] = inspectors + + return self._cache[cn] + + def get_all_installed_rpm_dicts(self) -> List[Dict]: + """ + :return: Returns an aggregate set of all brew rpm definitions + for RPMs installed on ALL architectures + of this image build. IMPORTANT: these are different from brew + build records; use get_installed_build_dicts for those. + """ + cn = 'get_all_installed_rpm_dicts' + if cn not in self._cache: + dedupe: Dict[str, Dict] = dict() # Maps nvr to rpm definition. This is because most archives will have similar RPMS installed. + for archive_inspector in self.get_image_archive_inspectors(): + for rpm_dict in archive_inspector.get_installed_rpm_dicts(): + dedupe[rpm_dict['nvr']] = rpm_dict + self._cache[cn] = list(dedupe.values()) + return self._cache[cn] + + def get_all_installed_package_build_dicts(self) -> Dict[str, Dict]: + """ + :return: Returns an aggregate set of all brew build dicts for + packages installed on ALL architectures of this image build. This + code assumes that all image archives install the same package NVR + if they install it. + """ + cn = 'get_all_installed_package_build_dicts' + if cn not in self._cache: + dedupe: Dict[str, Dict] = dict() # Maps nvr to build dict. This is because most archives will have the similar packages installed. + for archive_inspector in self.get_image_archive_inspectors(): + dedupe.update(archive_inspector.get_installed_package_build_dicts()) + self._cache[cn] = dedupe + + return self._cache[cn] + + def get_image_archive_inspector(self, arch: str) -> Optional[ArchiveImageInspector]: + """ + Example listArchives output: https://gist.github.com/jupierce/a28a53e4057b550b3c8e5d6a8ac5198c + :return: Returns the archive inspector for the specified arch OR None if the build does not possess one. + """ + arch = brew_arch_for_go_arch(arch) # Make sure this is a brew arch + found = filter(lambda ai: ai.image_arch() == arch, self.get_image_archive_inspectors()) + if not found: + return None + return list(found)[0] + + def is_under_embargo(self) -> bool: + """ + :return: Returns whether this image build contains currently embargoed content. + """ + if not self.runtime.group_config.public_upstreams: + # when public_upstreams are not configured, we assume there is no private content. + return False + + cn = 'is_private' + if cn not in self._cache: + with self.runtime.shared_build_status_detector() as bs_detector: + # determine if the image build is embargoed (or otherwise "private") + self._cache[cn] = len(bs_detector.find_embargoed_builds([self._brew_build_obj], [self.get_image_meta().candidate_brew_tag()])) > 0 + + return self._cache[cn] + + def find_non_latest_rpms(self) -> List[str]: + """ + If the packages installed in this image overlap packages in the candidate tag, + return NVRs of the latest candidate builds that are not also installed in this image. + This indicates that the image has not picked up the latest from candidate. + + Note that this is completely normal for non-STREAM assemblies. In fact, it is + normal for any assembly other than the assembly used for nightlies. In the age of + a thorough config:scan-sources, if this method returns anything, scan-sources is + likely broken. + + :return: Returns a list of NVRs from the "latest" state of the specified candidate tag + if same the package installed into this archive is not the same NVR. + """ + + candidate_brew_tag = self.runtime.get_default_candidate_brew_tag() + + # N.B. the "rpms" installed in an image archive are individual RPMs, not brew rpm package builds. + # we compare against the individual RPMs from latest candidate rpm package builds. + with self.runtime.shared_build_status_detector() as bs_detector: + candidate_rpms = { + # the RPMs are collected by name mainly to de-duplicate (same RPM, multiple arches) + rpm['name']: rpm for rpm in + bs_detector.find_unshipped_candidate_rpms(candidate_brew_tag, self.runtime.brew_event) + } + + old_nvrs = [] + archive_rpms = {rpm['name']: rpm for rpm in self.get_all_installed_rpm_dicts()} + # we expect only a few unshipped candidates most of the the time, so we'll just search for those. + for name, rpm in candidate_rpms.items(): + archive_rpm = archive_rpms.get(name) + if archive_rpm and rpm['nvr'] != archive_rpm['nvr']: + old_nvrs.append(archive_rpm['nvr']) + + return old_nvrs diff --git a/doozerlib/metadata.py b/doozerlib/metadata.py index f5c62363f..20a5efc12 100644 --- a/doozerlib/metadata.py +++ b/doozerlib/metadata.py @@ -19,6 +19,7 @@ from . import exectools from . import logutil from .brew import BuildStates +from .util import isolate_el_version_in_brew_tag from .model import Model, Missing from doozerlib.assembly import assembly_metadata_config, assembly_basis_event @@ -151,6 +152,19 @@ def determine_targets(self) -> List[str]: targets = [self._default_brew_target()] return targets + def determine_rhel_targets(self) -> List[int]: + """ + For each build target for the component, return the rhel version it is for. For example, + if an RPM builds for both rhel-7 and rhel-8 targets, return [7,8] + """ + el_targets: List[int] = [] + for target in self.determine_targets(): + el_ver = isolate_el_version_in_brew_tag(target) + if not el_ver: + raise IOError(f'Unable to determine RHEL version from build target {target} in {self.distgit_key}') + el_targets.append(el_ver) + return el_targets + def save(self): self.data_obj.data = self.config.primitive() self.data_obj.save() @@ -437,7 +451,7 @@ def latest_build_list(pattern_suffix): # included in the "-i" doozer argument). We need it to find the pinned NVR # to place in its Dockerfile. # Pinning also informs gen-payload when attempting to assemble a release. - is_nvr = isd.nvr + is_nvr = isd._nvr if not is_nvr: raise ValueError(f'Did not find nvr field in pinned Image component {self.distgit_key}') diff --git a/doozerlib/rhcos.py b/doozerlib/rhcos.py index 0bac44ed5..6bf5894c5 100644 --- a/doozerlib/rhcos.py +++ b/doozerlib/rhcos.py @@ -1,13 +1,18 @@ from __future__ import absolute_import, print_function, unicode_literals + import json +from typing import Dict, List, Tuple, Optional + from tenacity import retry, stop_after_attempt, wait_fixed from urllib import request -from doozerlib.util import brew_suffix_for_arch +from doozerlib.util import brew_suffix_for_arch, isolate_el_version_in_release +from doozerlib import exectools +from doozerlib.model import Model RHCOS_BASE_URL = "https://releases-rhcos-art.cloud.privileged.psi.redhat.com/storage/releases" -def rhcos_release_url(version, brew_arch="x86_64", private=False): +def rhcos_release_url(version, brew_arch="x86_64", private=False) -> str: """ base url for a release stream in the release browser (AWS bucket). @@ -20,13 +25,26 @@ def rhcos_release_url(version, brew_arch="x86_64", private=False): return f"{RHCOS_BASE_URL}/rhcos-{version}{brew_suffix_for_arch(brew_arch)}" -# this is hard to test with retries, so wrap testable method @retry(reraise=True, stop=stop_after_attempt(10), wait=wait_fixed(3)) -def latest_rhcos_build_id(version, brew_arch="x86_64", private=False): +def latest_rhcos_build_id(version: str, brew_arch: str = "x86_64", private: bool = False) -> Optional[str]: + """ + :param version: The version number of the RHCOS stream (e.g. '4.6' would translate to 'rhcos-4.6' stream). + :param brew_arch: The CPU architecture for the build. + :param private: Whether we are looking for a private or public build. NOT CURRENTLY SUPPORTED. + :return: Returns the build id for the latest RHCOS build for the specific CPU arch. Return None if not found. + """ + # this is hard to test with retries, so wrap testable method return _latest_rhcos_build_id(version, brew_arch, private) -def _latest_rhcos_build_id(version, brew_arch="x86_64", private=False): +def _latest_rhcos_build_id(version: str, brew_arch: str = "x86_64", private: bool = False) -> Optional[str]: + """ + :param version: The version number of the RHCOS stream (e.g. '4.6' would translate to 'rhcos-4.6' stream). + :param brew_arch: The CPU architecture for the build. + :param private: Whether we are looking for a private or public build. NOT CURRENTLY SUPPORTED. + :return: Returns the build id for the latest RHCOS build for the specific CPU arch from the RHCOS release browser. + Return None if not found. + """ # returns the build id string or None (or raise exception) # (may want to return "schema-version" also if this ever gets more complex) with request.urlopen(f"{rhcos_release_url(version, brew_arch, private)}/builds.json") as req: @@ -38,18 +56,18 @@ def _latest_rhcos_build_id(version, brew_arch="x86_64", private=False): return build if isinstance(build, str) else build["id"] -# this is hard to test with retries, so wrap testable method @retry(reraise=True, stop=stop_after_attempt(10), wait=wait_fixed(3)) -def rhcos_build_meta(build_id, version, brew_arch="x86_64", private=False, meta_type="meta"): - return _rhcos_build_meta(build_id, version, brew_arch, private, meta_type) - - -def _rhcos_build_meta(build_id, version, brew_arch="x86_64", private=False, meta_type="meta"): +def rhcos_build_meta(build_id: str, version: str, brew_arch: str = "x86_64", private: bool = False, meta_type: str = "meta") -> Dict: """ - rhcos metadata for an id in the given stream from the release browser. - meta_type is "meta" for the build record or "commitmeta" for its ostree content. + Queries the RHCOS release browser to return metadata about the specified RHCOS build. + :param build_id: The RHCOS build_id to check (e.g. 410.81.20200520.0) + :param version: The major.minor of the RHCOS stream the build is associated with (e.g. '4.6') + :param brew_arch: The CPU architecture for the build (uses brew naming convention) + :param private: Whether this is a private build (NOT CURRENTLY SUPPORTED) + :param meta_type: The data to retrieve. "commitmeta" (aka OS Metadata - ostree content) or "meta" (aka Build Metadata / Build record). + :return: Returns a Dict containing the parsed requested metadata. See the RHCOS release browser for examples: https://releases-rhcos-art.cloud.privileged.psi.redhat.com/ - @return a "meta" build record e.g.: + Example 'meta.json': https://releases-rhcos-art.cloud.privileged.psi.redhat.com/storage/releases/rhcos-4.1/410.81.20200520.0/meta.json { "buildid": "410.81.20200520.0", @@ -61,6 +79,14 @@ def _rhcos_build_meta(build_id, version, brew_arch="x86_64", private=False, meta ... } """ + # this is hard to test with retries, so wrap testable method + return _rhcos_build_meta(build_id, version, brew_arch, private, meta_type) + + +def _rhcos_build_meta(build_id: str, version: str, brew_arch: str = "x86_64", private: bool = False, meta_type: str = "meta") -> Dict: + """ + See public API rhcos_build_meta for details. + """ url = f"{rhcos_release_url(version, brew_arch, private)}/{build_id}/" # before 4.3 the arch was not included in the path vtuple = tuple(int(f) for f in version.split(".")) @@ -69,16 +95,177 @@ def _rhcos_build_meta(build_id, version, brew_arch="x86_64", private=False, meta return json.loads(req.read().decode()) -def latest_machine_os_content(version, brew_arch="x86_64", private=False): - # returns the id and machine-os-content pullspec for the latest rhcos build in a stream +def latest_machine_os_content(version: str, brew_arch: str = "x86_64", private: bool = False) -> Tuple[Optional[str], Optional[str]]: + """ + :param version: The major.minor of the RHCOS stream the build is associated with (e.g. '4.6') + :param brew_arch: The CPU architecture for the build (uses brew naming convention) + :param private: Whether this is a private build (NOT CURRENTLY SUPPORTED) + :return: Returns (rhcos build id, image pullspec) or (None, None) if not found. + """ build_id = latest_rhcos_build_id(version, brew_arch, private) if build_id is None: - return (None, None) + return None, None m_os_c = rhcos_build_meta(build_id, version, brew_arch, private)['oscontainer'] return build_id, m_os_c['image'] + "@" + m_os_c['digest'] -def rhcos_content_tag(runtime): - # return the tag for packages we expect RHCOS to be built from +def rhcos_content_tag(runtime) -> str: + """ + :return: Return the tag for packages we expect RHCOS to be built from. + """ base = runtime.group_config.branch.replace("-rhel-7", "-rhel-8") return f"{base}-candidate" + + +class RHCOSBuildInspector: + + def __init__(self, runtime, pullspec_or_build_id: str, brew_arch: str): + self.runtime = runtime + self.brew_arch = brew_arch + + if pullspec_or_build_id[0].isdigit(): + self.build_id = pullspec_or_build_id + else: + pullspec = pullspec_or_build_id + image_info_str, _ = exectools.cmd_assert(f'oc image info -o json {pullspec}', retries=3) + image_info = Model(dict_to_model=json.loads(image_info_str)) + self.build_id = image_info.config.config.Labels.version + if not self.build_id: + raise Exception(f'Unable to determine MOSC build_id from: {pullspec}. Retrieved image info: {image_info_str}') + + # The first two digits of the RHCOS build are the major.minor of the rhcos stream name + self.stream_version = self.build_id[0] + '.' + self.build_id[1] # e.g. 43.82.202102081639.0 -> "4.3" + + self._build_meta = rhcos_build_meta(self.build_id, self.stream_version, self.brew_arch, meta_type='meta') + self._os_commitmeta = rhcos_build_meta(self.build_id, self.stream_version, self.brew_arch, meta_type='commitmeta') + + def __str__(self): + return f'RHCOSBuild:{self.brew_arch}:{self.build_id}' + + def get_os_metadata(self) -> Dict: + """ + :return: Returns a dict representing the RHCOS build's OS metadata (aka commitmeta.json) + """ + return self._os_commitmeta + + def get_build_metadata(self) -> Dict: + """ + :return: Returns a dict representing the RHCOS build's metadata (aka meta.json) + """ + return self._build_meta + + def get_os_metadata_rpm_list(self) -> List[List]: + """ + :return: Returns the raw RPM entries from the OS metadata. Example entry: ['NetworkManager', '1', '1.14.0', '14.el8', 'x86_64' ] + """ + entries = self.get_os_metadata()['rpmostree.rpmdb.pkglist'] + if not entries: + raise Exception(f"no pkglist in OS Metadata for build {self.build_id}") + return entries + + def get_rpm_nvrs(self) -> List[str]: + """ + :return: Returns a list of RPM nvrs that are installed in this build according to OS metadata. + Note that these are RPMs and not package brew builds. You cannot use koji.getBuild on + these NVRs. + """ + rpm_nvrs: List[str] = list() + for rpm_entry in self.get_os_metadata_rpm_list(): + # Example entry ['NetworkManager', '1', '1.14.0', '14.el8', 'x86_64' ] + # rpm_entry[1] is epoch. + rpm_nvrs.append(f'{rpm_entry[0]}-{rpm_entry[2]}-{rpm_entry[3]}') + + return rpm_nvrs + + def get_rpm_nvras(self) -> List[str]: + """ + :return: Returns a list of nvras that are installed in this build according to OS metadata. + Note that these are RPMs and not package brew builds. You cannot use koji.getBuild on + these NVRAs. + """ + rpm_nvras: List[str] = list() + for rpm_entry in self.get_os_metadata_rpm_list(): + # Example entry ['NetworkManager', '1', '1.14.0', '14.el8', 'x86_64' ] + # rpm_entry[1] is epoch. + rpm_nvras.append(f'{rpm_entry[0]}-{rpm_entry[2]}-{rpm_entry[3]}.{rpm_entry[4]}') + + return rpm_nvras + + def get_package_build_objects(self) -> Dict[str, Dict]: + """ + :return: Returns a Dict containing records for package builds corresponding to + RPMs used by this RHCOS build. + Maps package_name -> brew build dict for package. + """ + + aggregate: Dict[str, Dict] = dict() + with self.runtime.pooled_koji_client_session() as koji_api: + for nvra in self.get_rpm_nvras(): + rpm_def = koji_api.getRPM(nvra, strict=True) + package_build = koji_api.getBuild(rpm_def['build_id'], strict=True) + package_name = package_build['package_name'] + aggregate[package_name] = package_build + + return aggregate + + def get_image_pullspec(self) -> str: + build_meta = self.get_build_metadata() + m_os_c = build_meta['oscontainer'] + return m_os_c['image'] + "@" + m_os_c['digest'] + + def get_rhel_base_version(self) -> int: + """ + Determines whether this RHCOS is based on RHEL 8, 9, ... + """ + # OS metadata has changed a bit over time (i.e. there may be newer/cleaner ways + # to determine this), but one thing that seems backwards compatible + # is finding 'el' information in RPM list. + for nvr in self.get_rpm_nvrs(): + el_ver = isolate_el_version_in_release(nvr) + if el_ver: + return el_ver + + raise IOError(f'Unable to determine RHEL version base for rhcos {self.build_id}') + + def get_machine_os_content_digest(self) -> str: + """ + Returns the image digest for the oscontainer image associated with this build. + This is the sha of the machine-os-content which should be published out on quay. + """ + return self._build_meta['oscontainer']['digest'] + + def find_non_latest_rpms(self) -> List[str]: + """ + If the packages installed in this image overlap packages in the candidate tag, + return NVRs of the latest candidate builds that are not also installed in this image. + This indicates that the image has not picked up the latest from candidate. + + Note that this is completely normal for non-STREAM assemblies. In fact, it is + normal for any assembly other than the assembly used for nightlies. In the age of + a thorough config:scan-sources, if this method returns anything, scan-sources is + likely broken. + + :return: Returns a list of NVRs from the "latest" state of the specified candidate tag + if same the package installed into this archive is not the same NVR. + """ + + candidate_brew_tag = self.runtime.get_default_candidate_brew_tag() + + # N.B. the "rpms" installed in an image archive are individual RPMs, not brew rpm package builds. + # we compare against the individual RPMs from latest candidate rpm package builds. + with self.runtime.shared_build_status_detector() as bs_detector: + candidate_rpms: Dict[str, Dict] = { + # the RPMs are collected by name mainly to de-duplicate (same RPM, multiple arches) + rpm['name']: rpm for rpm in + bs_detector.find_unshipped_candidate_rpms(candidate_brew_tag, self.runtime.brew_event) + } + + old_nvrs = [] + installed_package_builds: Dict[str, Dict] = self.get_package_build_objects() # Maps package name to build dict. + # we expect only a few unshipped candidates most of the the time, so we'll just search for those. + for name, rpm in candidate_rpms.items(): + build_dict = installed_package_builds.get(name) + if build_dict and rpm != build_dict['nvr']: + old_nvrs.append(build_dict['nvr']) + + return old_nvrs diff --git a/doozerlib/runtime.py b/doozerlib/runtime.py index 05e94a2d5..97cc56223 100644 --- a/doozerlib/runtime.py +++ b/doozerlib/runtime.py @@ -44,7 +44,8 @@ from doozerlib import constants from doozerlib import util from doozerlib import brew -from doozerlib.assembly import assembly_group_config, assembly_config_finalize, assembly_basis_event, assembly_type, AssemblyTypes +from doozerlib.assembly import assembly_group_config, assembly_basis_event, assembly_type, AssemblyTypes +from doozerlib.build_status_detector import BuildStatusDetector # Values corresponds to schema for group.yml: freeze_automation. When # 'yes', doozer itself will inhibit build/rebase related activity @@ -118,11 +119,6 @@ def wrapper(args): ]) -# ============================================================================ -# Runtime object definition -# ============================================================================ - - class Runtime(object): # Use any time it is necessary to synchronize feedback from multiple threads. mutex = RLock() @@ -130,6 +126,9 @@ class Runtime(object): # Serialize access to the shared koji session koji_lock = RLock() + # Build status detector lock + bs_lock = RLock() + # Serialize access to the console, and record log log_lock = Lock() @@ -152,6 +151,7 @@ def __init__(self, **kwargs): self.assembly_type = None self.releases_config = None self.assembly = 'test' + self._build_status_detector = None self.stream: List[str] = [] # Click option. A list of image stream overrides from the command line. self.stream_overrides: Dict[str, str] = {} # Dict of stream name -> pullspec from command line. @@ -196,6 +196,9 @@ def __init__(self, **kwargs): # Map of dist-git repo name -> RPMMetadata object. Populated when group is set. self.rpm_map: Dict[str, RPMMetadata] = {} + # Maps component name to the Image or RPM Metadata responsible for the component + self.component_map: Dict[str, Union[ImageMetadata, RPMMetadata]] = dict() + # Map of source code repo aliases (e.g. "ose") to a tuple representing the source resolution cache. # See registry_repo. self.source_resolutions = {} @@ -316,6 +319,8 @@ def initialize(self, mode='images', clone_distgits=True, click.echo("Flags --quiet and --verbose are mutually exclusive") exit(1) + self.mode = mode + # We could mark these as required and the click library would do this for us, # but this seems to prevent getting help from the various commands (unless you # specify the required parameters). This can probably be solved more cleanly, but TODO @@ -573,6 +578,7 @@ def filter_disabled(n, d): for i in image_data.values(): metadata = ImageMetadata(self, i, self.upstream_commitish_overrides.get(i.key), clone_source=clone_source, prevent_cloning=prevent_cloning) self.image_map[metadata.distgit_key] = metadata + self.component_map[metadata.get_component_name()] = metadata if not self.image_map: self.logger.warning("No image metadata directories found for given options within: {}".format(self.group_dir)) @@ -594,6 +600,7 @@ def filter_disabled(n, d): clone_source = True metadata = RPMMetadata(self, r, self.upstream_commitish_overrides.get(r.key), clone_source=clone_source, prevent_cloning=prevent_cloning) self.rpm_map[metadata.distgit_key] = metadata + self.component_map[metadata.get_component_name()] = metadata if not self.rpm_map: self.logger.warning("No rpm metadata directories found for given options within: {}".format(self.group_dir)) @@ -621,8 +628,6 @@ def filter_disabled(n, d): self.assembly_type = assembly_type(self.get_releases_config(), self.assembly) - assembly_config_finalize(self.get_releases_config(), self.assembly, self.rpm_metas(), self.ordered_image_metas()) - if not self.brew_event: with self.shared_koji_client_session() as koji_session: # If brew event is not set as part of the assembly and not specified on the command line, @@ -698,12 +703,24 @@ def shared_koji_client_session(self): manager giving your thread exclusive access. The lock is reentrant, so don't worry about call a method that acquires the same lock while you hold it. Honors doozer --brew-event. + Do not rerun gssapi_login on this client. We've observed client instability when this happens. """ with self.koji_lock: if self._koji_client_session is None: self._koji_client_session = self.build_retrying_koji_client() + self._koji_client_session.gssapi_login() yield self._koji_client_session + @contextmanager + def shared_build_status_detector(self) -> 'BuildStatusDetector': + """ + Yields a shared build status detector within context. + """ + with self.bs_lock: + if self._build_status_detector is None: + self._build_status_detector = BuildStatusDetector(self.build_retrying_koji_client(), self.logger) + yield self._build_status_detector + @contextmanager def pooled_koji_client_session(self): """ @@ -818,6 +835,37 @@ def rpm_metas(self) -> List[RPMMetadata]: def all_metas(self) -> List[Union[ImageMetadata, RPMMetadata]]: return self.image_metas() + self.rpm_metas() + def get_payload_image_metas(self) -> List[ImageMetadata]: + """ + :return: Returns a list of ImageMetadata that are destined for the OCP release payload. Payload images must + follow the correct naming convention or an exception will be thrown. + """ + payload_images = [] + for image_meta in self.image_metas(): + if image_meta.is_payload: + """ + note to self: is only for `ose-` prefixed images + Yes, Get with the naming system or get out of town + """ + if not image_meta.image_name_short.startswith("ose-"): + raise ValueError(f"{image_meta.distgit_key} does not conform to payload naming convention with image name: {image_meta.image_name_short}") + + payload_images.append(image_meta) + + return payload_images + + def get_for_release_image_metas(self) -> List[ImageMetadata]: + """ + :return: Returns a list of ImageMetada which are configured to be released by errata. + """ + return filter(lambda meta: meta.for_release, self.image_metas()) + + def get_non_release_image_metas(self) -> List[ImageMetadata]: + """ + :return: Returns a list of ImageMetada which are not meant to be released by errata. + """ + return filter(lambda meta: not meta.for_release, self.image_metas()) + def register_source_alias(self, alias, path): self.logger.info("Registering source alias %s: %s" % (alias, path)) path = os.path.abspath(path) diff --git a/doozerlib/util.py b/doozerlib/util.py index b5c74c916..82027654c 100644 --- a/doozerlib/util.py +++ b/doozerlib/util.py @@ -10,7 +10,7 @@ from os.path import abspath from pathlib import Path from sys import getsizeof, stderr -from typing import Dict, Iterable, List, Optional, Tuple +from typing import Dict, Iterable, List, Optional, Tuple, NamedTuple import click import yaml @@ -378,7 +378,7 @@ def split_el_suffix_in_release(release: str) -> Tuple[str, Optional[str]]: is None if there .el### is not detected. """ - el_suffix_match = re.match(r'(.*)\.(el\d+)(?:\.+|$)', release) + el_suffix_match = re.match(r'(.*)\.(el\d+)(?:[._].*|$)', release) if el_suffix_match: prefix = el_suffix_match.group(1) el_suffix = el_suffix_match.group(2) diff --git a/tests/cli/test_release_gen_payload.py b/tests/cli/test_release_gen_payload.py deleted file mode 100644 index d55e9364d..000000000 --- a/tests/cli/test_release_gen_payload.py +++ /dev/null @@ -1,85 +0,0 @@ -import mock -from doozerlib.model import Model -from doozerlib.image import ImageMetadata -import json -from unittest import TestCase -from unittest.mock import MagicMock, patch - -from doozerlib.cli import release_gen_payload as rgp -import doozerlib.runtime - - -def _fake_generator(): - runtime = MagicMock(doozerlib.runtime) - runtime.command = "dummy" - runtime.state = {} - runtime.logger = MagicMock() - runtime.brew_event = None - return rgp.PayloadGenerator( - runtime, - brew_session=MagicMock(), - base_target=rgp.SyncTarget(), - ) - - -class TestReleaseGenPayloadCli(TestCase): - - def test_get_istag_spec(self): - gen = _fake_generator() - tag_name = "cvo-tag" - pullspec = "dummy-pullspec" - record = rgp.BuildRecord(image=MagicMock(), archives=None) - record.image.candidate_brew_tag.return_value = "tag-candidate" - inconsistencies = {"foo is old": "should be foo-new"} - expected = { - 'annotations': {'release.openshift.io/inconsistency': '["foo is old"]'}, - 'name': tag_name, - 'from': { - 'kind': 'DockerImage', - 'name': pullspec - } - } - with patch.object(gen, "_find_rpm_inconsistencies") as find_inc, \ - patch.object(gen, "_build_dest_name") as bdest: - find_inc.return_value = inconsistencies - bdest.return_value = pullspec - source = dict(build_record=record, archive=None) - actual = gen._get_istag_spec(tag_name, source, gen.base_target) - self.assertEqual(actual, expected) - self.assertEqual({tag_name: ["should be foo-new"]}, gen.state["inconsistencies"]) - - def test_find_rpm_inconsistencies(self): - archive = dict( - build_id=1, - rpms=[ - dict(name="foo", nvr="foo-1.2-1"), - dict(name="bar", nvr="bar-3.4-1"), - ], - ) - gen = _fake_generator() - with patch.object(gen.bs_detector, "find_unshipped_candidate_rpms") as func_rpms: - func_rpms.return_value = [ - dict(name="foo", nvr="foo-1.2-1", build_id=2), - dict(name="bar", nvr="bar-3.4-42", build_id=3), - ] - expected = { - "Contains outdated RPM bar": - "RPM bar-3.4-1 is installed in image build 1 but bar-3.4-42 from package build 3 is latest candidate" - } - actual = gen._find_rpm_inconsistencies(archive, "tag-candidate") - self.assertEqual(actual, expected) - - def test_inconsistency_annotation(self): - entries = ["a", "b", "c", "d", "e"] - expected = json.dumps(entries) - actual = list(_fake_generator()._inconsistency_annotation(entries).values())[0] - self.assertEqual(actual, expected) - - entries.append("f") - annotation = list(_fake_generator()._inconsistency_annotation(entries).values())[0] - self.assertIn("(...and more)", annotation) - - entries = [] - expected = {} - actual = _fake_generator()._inconsistency_annotation(entries) - self.assertEqual(actual, expected) diff --git a/tests/resources/rhcos1/47.83.202107261211-0.commitmeta.json b/tests/resources/rhcos1/47.83.202107261211-0.commitmeta.json new file mode 100644 index 000000000..827c4dfc9 --- /dev/null +++ b/tests/resources/rhcos1/47.83.202107261211-0.commitmeta.json @@ -0,0 +1,3805 @@ +{ + "coreos-assembler.config-gitrev" : "v3.1-1271-g5bfbd563962484067a4f47c26c96def706976511", + "coreos-assembler.config-dirty" : "false", + "rpmostree.advisories" : [ + [ + "RHSA-2019:3706", + 1, + 2, + [ + "lua-libs-5.3.4-11.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1670019", + "CVE-2019-6706 lua: use-after-free in lua_upvaluejoin in lapi.c resulting in denial of service" + ] + ] + } + ], + [ + "RHSA-2021:0150", + 1, + 3, + [ + "dnsmasq-2.79-13.el8_3.1.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1881875", + "CVE-2020-25681 dnsmasq: heap-based buffer overflow in sort_rrset() when DNSSEC is enabled" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1882014", + "CVE-2020-25682 dnsmasq: buffer overflow in extract_name() due to missing length check when DNSSEC is enabled" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1882018", + "CVE-2020-25683 dnsmasq: heap-based buffer overflow with large memcpy in get_rdata() when DNSSEC is enabled" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1889686", + "CVE-2020-25684 dnsmasq: loose address/port check in reply_query() makes forging replies easier for an off-path attacker" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1889688", + "CVE-2020-25685 dnsmasq: loose query name check in reply_query() makes forging replies easier for an off-path attacker" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1890125", + "CVE-2020-25686 dnsmasq: multiple queries forwarded for the same name makes forging replies easier for an off-path attacker" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1891568", + "CVE-2020-25687 dnsmasq: heap-based buffer overflow with large memcpy in sort_rrset() when DNSSEC is enabled" + ] + ] + } + ], + [ + "RHSA-2020:4490", + 1, + 2, + [ + "gnupg2-2.2.20-2.el8.s390x", + "gnupg2-smime-2.2.20-2.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1726146", + "CVE-2019-13050 GnuPG: interaction between the sks-keyserver code and GnuPG allows for a Certificate Spamming Attack which leads to persistent DoS" + ] + ] + } + ], + [ + "RHSA-2020:4482", + 1, + 2, + [ + "libgcrypt-1.8.5-4.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1764018", + "CVE-2019-13627 libgcrypt: ECDSA timing attack allowing private key leak" + ] + ] + } + ], + [ + "RHSA-2021:1197", + 1, + 3, + [ + "libldb-2.1.3-3.el8_3.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1941402", + "CVE-2021-20277 samba: Out of bounds read in AD DC LDAP server" + ] + ] + } + ], + [ + "RHSA-2020:0902", + 1, + 3, + [ + "libicu-60.3-2.el8_1.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1807349", + "CVE-2020-10531 ICU: Integer overflow in UnicodeString::doAppend()" + ] + ] + } + ], + [ + "RHSA-2020:4469", + 1, + 1, + [ + "cups-libs-1:2.2.6-38.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1823964", + "CVE-2020-3898 cups: heap based buffer overflow in libcups's ppdFindOption() in ppd-mark.c" + ] + ] + } + ], + [ + "RHSA-2020:4442", + 1, + 2, + [ + "sqlite-libs-3.26.0-11.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1708301", + "CVE-2019-5018 sqlite: Use-after-free in window function leading to remote code execution" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1768986", + "CVE-2019-16168 sqlite: Division by zero in whereLoopAddBtreeIndex in sqlite3.c" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1791313", + "CVE-2019-20218 sqlite: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1801181", + "CVE-2020-6405 sqlite: Out-of-bounds read in SELECT with ON/USING clause" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1809315", + "CVE-2020-9327 sqlite: NULL pointer dereference and segmentation fault because of generated column optimizations" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1841562", + "CVE-2020-13630 sqlite: Use-after-free in fts3EvalNextRow in ext/fts3/fts3.c" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1841568", + "CVE-2020-13631 sqlite: Virtual table can be renamed into the name of one of its shadow tables" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1841574", + "CVE-2020-13632 sqlite: NULL pointer dereference in ext/fts3/fts3_snippet.c via a crafted matchinfo() query" + ] + ] + } + ], + [ + "RHSA-2020:4453", + 1, + 2, + [ + "vim-minimal-2:8.0.1763-15.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1842658", + "CVE-2019-20807 vim: users can execute arbitrary OS commands via scripting interfaces in the rvim restricted mode" + ] + ] + } + ], + [ + "RHSA-2020:4827", + 1, + 2, + [ + "oniguruma-6.8.2-2.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1728965", + "CVE-2019-13225 oniguruma: NULL pointer dereference in match_at() in regexec.c" + ] + ] + } + ], + [ + "RHSA-2021:0218", + 1, + 3, + [ + "sudo-1.8.29-6.el8_3.1.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1917684", + "CVE-2021-3156 sudo: Heap buffer overflow in argument parsing" + ] + ] + } + ], + [ + "RHSA-2020:4547", + 1, + 1, + [ + "libpcap-14:1.9.1-4.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1760618", + "CVE-2019-15165 libpcap: Resource exhaustion during PHB header length validation" + ] + ] + } + ], + [ + "RHSA-2020:4539", + 1, + 2, + [ + "pcre2-10.32-2.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1735494", + "CVE-2019-20454 pcre: Out of bounds read in JIT mode when \\X is used in non-UTF mode" + ] + ] + } + ], + [ + "RHSA-2021:0670", + 1, + 3, + [ + "bind-export-libs-32:9.11.20-5.el8_3.1.s390x", + "bind-libs-lite-32:9.11.20-5.el8_3.1.s390x", + "python3-bind-32:9.11.20-5.el8_3.1.noarch", + "bind-utils-32:9.11.20-5.el8_3.1.s390x", + "bind-license-32:9.11.20-5.el8_3.1.noarch", + "bind-libs-32:9.11.20-5.el8_3.1.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1928486", + "CVE-2020-8625 bind: Buffer overflow in the SPNEGO implementation affecting GSSAPI security policy negotiation" + ] + ] + } + ], + [ + "RHSA-2020:4432", + 1, + 2, + [ + "platform-python-pip-9.0.3-18.el8.noarch", + "python3-pip-wheel-9.0.3-18.el8.noarch" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1868135", + "CVE-2019-20916 python-pip: directory traversal in _download_http_url() function in src/pip/_internal/download.py" + ] + ] + } + ], + [ + "RHSA-2020:4497", + 1, + 2, + [ + "cyrus-sasl-lib-2.1.27-5.el8.s390x", + "cyrus-sasl-gssapi-2.1.27-5.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1791854", + "CVE-2019-19906 cyrus-sasl: denial of service in _sasl_add_string function" + ] + ] + } + ], + [ + "RHSA-2020:4443", + 1, + 2, + [ + "bsdtar-3.3.2-9.el8.s390x", + "libarchive-3.3.2-9.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1801635", + "CVE-2019-19221 libarchive: out-of-bounds read in archive_wstring_append_from_mbs in archive_string.c" + ] + ] + } + ], + [ + "RHSA-2020:2755", + 1, + 3, + [ + "libnghttp2-1.33.0-3.el8_2.1.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1844929", + "CVE-2020-11080 nghttp2: overly large SETTINGS frames can lead to DoS" + ] + ] + } + ], + [ + "RHSA-2020:4542", + 1, + 2, + [ + "cryptsetup-reencrypt-2.3.3-2.el8.s390x", + "cryptsetup-2.3.3-2.el8.s390x", + "cryptsetup-libs-2.3.3-2.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1874712", + "CVE-2020-14382 cryptsetup: Out-of-bounds write when validating segments" + ] + ] + } + ], + [ + "RHSA-2021:1024", + 1, + 3, + [ + "openssl-1:1.1.1g-15.el8_3.s390x", + "openssl-libs-1:1.1.1g-15.el8_3.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1941547", + "CVE-2021-3450 openssl: CA certificate check bypass with X509_V_FLAG_X509_STRICT" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1941554", + "CVE-2021-3449 openssl: NULL pointer dereference in signature_algorithms processing" + ] + ] + } + ], + [ + "RHSA-2020:4545", + 1, + 2, + [ + "libssh-0.9.4-2.el8.s390x", + "libssh-config-0.9.4-2.el8.noarch" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1772523", + "CVE-2019-14889 libssh: unsanitized location in scp could lead to unwanted command execution" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1801998", + "CVE-2020-1730 libssh: denial of service when handling AES-CTR (or DES) ciphers" + ] + ] + } + ], + [ + "RHSA-2020:5479", + 1, + 3, + [ + "linux-firmware-20200619-101.git3890db36.el8_3.noarch" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1893914", + "CVE-2020-12321 hardware: buffer overflow in bluetooth firmware" + ] + ] + } + ], + [ + "RHSA-2021:1206", + 1, + 3, + [ + "gnutls-3.6.14-8.el8_3.s390x", + "nettle-3.4.1-4.el8_3.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "CVE-2021-20305 nettle: Out of bounds memory access in signature verification" + ] + ] + } + ], + [ + "RHSA-2020:4479", + 1, + 2, + [ + "libxml2-2.9.7-8.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1788856", + "CVE-2019-19956 libxml2: memory leak in xmlParseBalancedChunkMemoryRecover in parser.c" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1799734", + "CVE-2019-20388 libxml2: memory leak in xmlSchemaPreRun in xmlschemas.c" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1799786", + "CVE-2020-7595 libxml2: infinite loop in xmlStringLenDecodeEntities in some end-of-file situations" + ] + ] + } + ], + [ + "RHSA-2020:4433", + 1, + 2, + [ + "python3-libs-3.6.8-31.el8.s390x", + "platform-python-3.6.8-31.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1763229", + "CVE-2019-16935 python: XSS vulnerability in the documentation XML-RPC server in server_title field" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1809065", + "CVE-2020-8492 python: wrong backtracking in urllib.request.AbstractBasicAuthHandler allows for a ReDoS" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1854926", + "CVE-2020-14422 python: DoS via inefficiency in IPv{4,6}Interface classes" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1856481", + "CVE-2019-20907 python: infinite loop in the tarfile module via crafted TAR archive" + ] + ] + } + ], + [ + "RHSA-2020:1766", + 1, + 2, + [ + "mozjs60-60.9.0-4.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1661555", + "CVE-2018-20337 LibRaw: stack-based buffer overflow in the parse_makernote function of dcraw_common.cpp" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1672825", + "CVE-2019-3825 gdm: lock screen bypass when timed login is enabled" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1728562", + "CVE-2019-12447 gvfs: mishandling of file ownership in daemon/gvfsbackendadmin.c" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1728564", + "CVE-2019-12448 gvfs: race condition in daemon/gvfsbackendadmin.c due to admin backend not implementing query_info_on_read/write" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1728567", + "CVE-2019-12449 gvfs: mishandling of file's user and group ownership in daemon/gvfsbackendadmin.c due to unavailability of root privileges" + ] + ] + } + ], + [ + "RHSA-2020:4508", + 1, + 2, + [ + "libsolv-0.7.11-1.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1797072", + "CVE-2019-20387 libsolv: out-of-bounds read in repodata_schema2id in repodata.c" + ] + ] + } + ], + [ + "RHSA-2020:4484", + 1, + 2, + [ + "expat-2.2.5-4.el8.s390x" + ], + { + "cve_references" : [ + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1723723", + "CVE-2018-20843 expat: large number of colons in input makes parser consume high amount of resources, leading to DoS" + ], + [ + "https://bugzilla.redhat.com/show_bug.cgi?id=1752592", + "CVE-2019-15903 expat: heap-based buffer over-read via crafted XML input" + ] + ] + } + ] + ], + "rpmostree.inputhash" : "af519780458814872775f2f1a10440bddf3b782eb18a43c446a2a297cd1f1233", + "coreos-assembler.basearch" : "s390x", + "rpmostree.rpmdb.pkglist" : [ + [ + "NetworkManager", + "1", + "1.26.0", + "14.1.rhaos4.7.el8", + "s390x" + ], + [ + "NetworkManager-libnm", + "1", + "1.26.0", + "14.1.rhaos4.7.el8", + "s390x" + ], + [ + "NetworkManager-ovs", + "1", + "1.26.0", + "14.1.rhaos4.7.el8", + "s390x" + ], + [ + "NetworkManager-team", + "1", + "1.26.0", + "14.1.rhaos4.7.el8", + "s390x" + ], + [ + "NetworkManager-tui", + "1", + "1.26.0", + "14.1.rhaos4.7.el8", + "s390x" + ], + [ + "acl", + "0", + "2.2.53", + "1.el8", + "s390x" + ], + [ + "adcli", + "0", + "0.8.2", + "7.el8", + "s390x" + ], + [ + "afterburn", + "0", + "4.6.0", + "1.rhaos4.7.el8", + "s390x" + ], + [ + "attr", + "0", + "2.4.48", + "3.el8", + "s390x" + ], + [ + "audit", + "0", + "3.0", + "0.17.20191104git1c2f876.el8", + "s390x" + ], + [ + "audit-libs", + "0", + "3.0", + "0.17.20191104git1c2f876.el8", + "s390x" + ], + [ + "authselect", + "0", + "1.2.1", + "2.el8", + "s390x" + ], + [ + "authselect-libs", + "0", + "1.2.1", + "2.el8", + "s390x" + ], + [ + "avahi-libs", + "0", + "0.7", + "19.el8", + "s390x" + ], + [ + "basesystem", + "0", + "11", + "5.el8", + "noarch" + ], + [ + "bash", + "0", + "4.4.19", + "14.el8_3", + "s390x" + ], + [ + "bash-completion", + "1", + "2.7", + "5.el8", + "noarch" + ], + [ + "bind-export-libs", + "32", + "9.11.20", + "5.el8_3.1", + "s390x" + ], + [ + "bind-libs", + "32", + "9.11.20", + "5.el8_3.1", + "s390x" + ], + [ + "bind-libs-lite", + "32", + "9.11.20", + "5.el8_3.1", + "s390x" + ], + [ + "bind-license", + "32", + "9.11.20", + "5.el8_3.1", + "noarch" + ], + [ + "bind-utils", + "32", + "9.11.20", + "5.el8_3.1", + "s390x" + ], + [ + "brotli", + "0", + "1.0.6", + "2.el8", + "s390x" + ], + [ + "bsdtar", + "0", + "3.3.2", + "9.el8", + "s390x" + ], + [ + "bubblewrap", + "0", + "0.4.0", + "1.el8", + "s390x" + ], + [ + "bzip2", + "0", + "1.0.6", + "26.el8", + "s390x" + ], + [ + "bzip2-libs", + "0", + "1.0.6", + "26.el8", + "s390x" + ], + [ + "c-ares", + "0", + "1.13.0", + "5.el8", + "s390x" + ], + [ + "ca-certificates", + "0", + "2020.2.41", + "80.0.el8_2", + "noarch" + ], + [ + "checkpolicy", + "0", + "2.9", + "1.el8", + "s390x" + ], + [ + "chkconfig", + "0", + "1.13", + "2.el8", + "s390x" + ], + [ + "chrony", + "0", + "3.5", + "1.el8", + "s390x" + ], + [ + "cifs-utils", + "0", + "6.8", + "3.el8", + "s390x" + ], + [ + "clevis", + "0", + "15", + "1.el8", + "s390x" + ], + [ + "clevis-dracut", + "0", + "15", + "1.el8", + "s390x" + ], + [ + "clevis-luks", + "0", + "15", + "1.el8", + "s390x" + ], + [ + "clevis-systemd", + "0", + "15", + "1.el8", + "s390x" + ], + [ + "cloud-utils-growpart", + "0", + "0.31", + "1.el8", + "noarch" + ], + [ + "compat-openssl10", + "1", + "1.0.2o", + "3.el8", + "s390x" + ], + [ + "conmon", + "2", + "2.0.21", + "2.rhaos4.6.el8", + "s390x" + ], + [ + "console-login-helper-messages", + "0", + "0.20.3", + "1.rhaos4.7.el8", + "noarch" + ], + [ + "console-login-helper-messages-issuegen", + "0", + "0.20.3", + "1.rhaos4.7.el8", + "noarch" + ], + [ + "console-login-helper-messages-profile", + "0", + "0.20.3", + "1.rhaos4.7.el8", + "noarch" + ], + [ + "container-selinux", + "2", + "2.155.0", + "1.module+el8.3.1+9857+68fb1526", + "noarch" + ], + [ + "containernetworking-plugins", + "0", + "0.9.0", + "1.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "containers-common", + "1", + "1.2.0", + "9.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "coreos-installer", + "0", + "0.8.0", + "3.rhaos4.7.el8", + "s390x" + ], + [ + "coreos-installer-bootinfra", + "0", + "0.8.0", + "3.rhaos4.7.el8", + "s390x" + ], + [ + "coreutils", + "0", + "8.30", + "8.el8", + "s390x" + ], + [ + "coreutils-common", + "0", + "8.30", + "8.el8", + "s390x" + ], + [ + "cpio", + "0", + "2.12", + "8.el8", + "s390x" + ], + [ + "cracklib", + "0", + "2.9.6", + "15.el8", + "s390x" + ], + [ + "cracklib-dicts", + "0", + "2.9.6", + "15.el8", + "s390x" + ], + [ + "cri-o", + "0", + "1.20.4", + "5.rhaos4.7.gitea842fa.el8", + "s390x" + ], + [ + "cri-tools", + "0", + "1.20.0", + "2.el8", + "s390x" + ], + [ + "criu", + "0", + "3.15", + "1.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "crun", + "0", + "0.16", + "2.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "crypto-policies", + "0", + "20210209", + "1.gitbfb6bed.el8_3", + "noarch" + ], + [ + "crypto-policies-scripts", + "0", + "20210209", + "1.gitbfb6bed.el8_3", + "noarch" + ], + [ + "cryptsetup", + "0", + "2.3.3", + "2.el8", + "s390x" + ], + [ + "cryptsetup-libs", + "0", + "2.3.3", + "2.el8", + "s390x" + ], + [ + "cryptsetup-reencrypt", + "0", + "2.3.3", + "2.el8", + "s390x" + ], + [ + "cups-libs", + "1", + "2.2.6", + "38.el8", + "s390x" + ], + [ + "curl", + "0", + "7.61.1", + "14.el8_3.1", + "s390x" + ], + [ + "cyrus-sasl-gssapi", + "0", + "2.1.27", + "5.el8", + "s390x" + ], + [ + "cyrus-sasl-lib", + "0", + "2.1.27", + "5.el8", + "s390x" + ], + [ + "dbus", + "1", + "1.12.8", + "12.el8_3", + "s390x" + ], + [ + "dbus-common", + "1", + "1.12.8", + "12.el8_3", + "noarch" + ], + [ + "dbus-daemon", + "1", + "1.12.8", + "12.el8_3", + "s390x" + ], + [ + "dbus-libs", + "1", + "1.12.8", + "12.el8_3", + "s390x" + ], + [ + "dbus-tools", + "1", + "1.12.8", + "12.el8_3", + "s390x" + ], + [ + "device-mapper", + "8", + "1.02.171", + "5.el8_3.2", + "s390x" + ], + [ + "device-mapper-event", + "8", + "1.02.171", + "5.el8_3.2", + "s390x" + ], + [ + "device-mapper-event-libs", + "8", + "1.02.171", + "5.el8_3.2", + "s390x" + ], + [ + "device-mapper-libs", + "8", + "1.02.171", + "5.el8_3.2", + "s390x" + ], + [ + "device-mapper-multipath", + "0", + "0.8.4", + "5.el8", + "s390x" + ], + [ + "device-mapper-multipath-libs", + "0", + "0.8.4", + "5.el8", + "s390x" + ], + [ + "device-mapper-persistent-data", + "0", + "0.8.5", + "4.el8", + "s390x" + ], + [ + "dhcp-client", + "12", + "4.3.6", + "41.el8_3.1", + "s390x" + ], + [ + "dhcp-common", + "12", + "4.3.6", + "41.el8_3.1", + "noarch" + ], + [ + "dhcp-libs", + "12", + "4.3.6", + "41.el8_3.1", + "s390x" + ], + [ + "diffutils", + "0", + "3.6", + "6.el8", + "s390x" + ], + [ + "dnsmasq", + "0", + "2.79", + "13.el8_3.1", + "s390x" + ], + [ + "dosfstools", + "0", + "4.1", + "6.el8", + "s390x" + ], + [ + "dracut", + "0", + "049", + "95.git20200804.el8_3.4", + "s390x" + ], + [ + "dracut-network", + "0", + "049", + "95.git20200804.el8_3.4", + "s390x" + ], + [ + "dracut-squash", + "0", + "049", + "95.git20200804.el8_3.4", + "s390x" + ], + [ + "e2fsprogs", + "0", + "1.45.6", + "1.el8", + "s390x" + ], + [ + "e2fsprogs-libs", + "0", + "1.45.6", + "1.el8", + "s390x" + ], + [ + "elfutils-debuginfod-client", + "0", + "0.180", + "1.el8", + "s390x" + ], + [ + "elfutils-default-yama-scope", + "0", + "0.180", + "1.el8", + "noarch" + ], + [ + "elfutils-libelf", + "0", + "0.180", + "1.el8", + "s390x" + ], + [ + "elfutils-libs", + "0", + "0.180", + "1.el8", + "s390x" + ], + [ + "ethtool", + "2", + "5.0", + "2.el8", + "s390x" + ], + [ + "expat", + "0", + "2.2.5", + "4.el8", + "s390x" + ], + [ + "file-libs", + "0", + "5.33", + "16.el8_3.1", + "s390x" + ], + [ + "filesystem", + "0", + "3.8", + "3.el8", + "s390x" + ], + [ + "findutils", + "1", + "4.6.0", + "20.el8", + "s390x" + ], + [ + "firewalld-filesystem", + "0", + "0.8.2", + "2.el8", + "noarch" + ], + [ + "fuse", + "0", + "2.9.7", + "12.el8", + "s390x" + ], + [ + "fuse-common", + "0", + "3.2.1", + "12.el8", + "s390x" + ], + [ + "fuse-libs", + "0", + "2.9.7", + "12.el8", + "s390x" + ], + [ + "fuse-overlayfs", + "0", + "1.3.0", + "2.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "fuse3", + "0", + "3.2.1", + "12.el8", + "s390x" + ], + [ + "fuse3-libs", + "0", + "3.2.1", + "12.el8", + "s390x" + ], + [ + "gawk", + "0", + "4.2.1", + "1.el8", + "s390x" + ], + [ + "gdbm", + "1", + "1.18", + "1.el8", + "s390x" + ], + [ + "gdbm-libs", + "1", + "1.18", + "1.el8", + "s390x" + ], + [ + "gdisk", + "0", + "1.0.3", + "6.el8", + "s390x" + ], + [ + "geolite2-city", + "0", + "20180605", + "1.el8", + "noarch" + ], + [ + "geolite2-country", + "0", + "20180605", + "1.el8", + "noarch" + ], + [ + "git-core", + "0", + "2.27.0", + "1.el8", + "s390x" + ], + [ + "glib2", + "0", + "2.56.4", + "8.el8_3.1", + "s390x" + ], + [ + "glibc", + "0", + "2.28", + "127.el8_3.2", + "s390x" + ], + [ + "glibc-all-langpacks", + "0", + "2.28", + "127.el8_3.2", + "s390x" + ], + [ + "glibc-common", + "0", + "2.28", + "127.el8_3.2", + "s390x" + ], + [ + "glusterfs", + "0", + "6.0", + "37.2.el8", + "s390x" + ], + [ + "glusterfs-client-xlators", + "0", + "6.0", + "37.2.el8", + "s390x" + ], + [ + "glusterfs-fuse", + "0", + "6.0", + "37.2.el8", + "s390x" + ], + [ + "glusterfs-libs", + "0", + "6.0", + "37.2.el8", + "s390x" + ], + [ + "gmp", + "1", + "6.1.2", + "10.el8", + "s390x" + ], + [ + "gnupg2", + "0", + "2.2.20", + "2.el8", + "s390x" + ], + [ + "gnupg2-smime", + "0", + "2.2.20", + "2.el8", + "s390x" + ], + [ + "gnutls", + "0", + "3.6.14", + "8.el8_3", + "s390x" + ], + [ + "gpgme", + "0", + "1.13.1", + "3.el8", + "s390x" + ], + [ + "grep", + "0", + "3.1", + "6.el8", + "s390x" + ], + [ + "groff-base", + "0", + "1.22.3", + "18.el8", + "s390x" + ], + [ + "gssproxy", + "0", + "0.8.0", + "16.el8", + "s390x" + ], + [ + "gzip", + "0", + "1.9", + "9.el8", + "s390x" + ], + [ + "hardlink", + "1", + "1.3", + "6.el8", + "s390x" + ], + [ + "hostname", + "0", + "3.20", + "6.el8", + "s390x" + ], + [ + "hwdata", + "0", + "0.314", + "8.6.el8", + "noarch" + ], + [ + "ignition", + "0", + "2.9.0", + "3.rhaos4.7.git1d56dc8.el8", + "s390x" + ], + [ + "info", + "0", + "6.5", + "6.el8", + "s390x" + ], + [ + "initscripts", + "0", + "10.00.9", + "1.el8", + "s390x" + ], + [ + "ipcalc", + "0", + "0.2.4", + "4.el8", + "s390x" + ], + [ + "iproute", + "0", + "5.3.0", + "5.el8", + "s390x" + ], + [ + "iptables", + "0", + "1.8.4", + "15.el8_3.3", + "s390x" + ], + [ + "iptables-libs", + "0", + "1.8.4", + "15.el8_3.3", + "s390x" + ], + [ + "iputils", + "0", + "20180629", + "2.el8", + "s390x" + ], + [ + "iscsi-initiator-utils", + "0", + "6.2.0.878", + "5.gitd791ce0.el8", + "s390x" + ], + [ + "iscsi-initiator-utils-iscsiuio", + "0", + "6.2.0.878", + "5.gitd791ce0.el8", + "s390x" + ], + [ + "isns-utils-libs", + "0", + "0.99", + "1.el8", + "s390x" + ], + [ + "jansson", + "0", + "2.11", + "3.el8", + "s390x" + ], + [ + "jose", + "0", + "10", + "2.el8", + "s390x" + ], + [ + "jq", + "0", + "1.6", + "2.el8", + "s390x" + ], + [ + "json-c", + "0", + "0.13.1", + "0.2.el8", + "s390x" + ], + [ + "json-glib", + "0", + "1.4.4", + "1.el8", + "s390x" + ], + [ + "kbd", + "0", + "2.0.4", + "10.el8", + "s390x" + ], + [ + "kbd-legacy", + "0", + "2.0.4", + "10.el8", + "noarch" + ], + [ + "kbd-misc", + "0", + "2.0.4", + "10.el8", + "noarch" + ], + [ + "kernel", + "0", + "4.18.0", + "240.23.2.el8_3", + "s390x" + ], + [ + "kernel-core", + "0", + "4.18.0", + "240.23.2.el8_3", + "s390x" + ], + [ + "kernel-modules", + "0", + "4.18.0", + "240.23.2.el8_3", + "s390x" + ], + [ + "kernel-modules-extra", + "0", + "4.18.0", + "240.23.2.el8_3", + "s390x" + ], + [ + "kexec-tools", + "0", + "2.0.20", + "34.el8_3.2", + "s390x" + ], + [ + "keyutils", + "0", + "1.5.10", + "6.el8", + "s390x" + ], + [ + "keyutils-libs", + "0", + "1.5.10", + "6.el8", + "s390x" + ], + [ + "kmod", + "0", + "25", + "16.el8_3.1", + "s390x" + ], + [ + "kmod-libs", + "0", + "25", + "16.el8_3.1", + "s390x" + ], + [ + "kpartx", + "0", + "0.8.4", + "5.el8", + "s390x" + ], + [ + "krb5-libs", + "0", + "1.18.2", + "5.el8", + "s390x" + ], + [ + "less", + "0", + "530", + "1.el8", + "s390x" + ], + [ + "libacl", + "0", + "2.2.53", + "1.el8", + "s390x" + ], + [ + "libaio", + "0", + "0.3.112", + "1.el8", + "s390x" + ], + [ + "libarchive", + "0", + "3.3.2", + "9.el8", + "s390x" + ], + [ + "libassuan", + "0", + "2.5.1", + "3.el8", + "s390x" + ], + [ + "libatomic", + "0", + "8.3.1", + "5.1.el8", + "s390x" + ], + [ + "libattr", + "0", + "2.4.48", + "3.el8", + "s390x" + ], + [ + "libbasicobjects", + "0", + "0.1.1", + "39.el8", + "s390x" + ], + [ + "libblkid", + "0", + "2.32.1", + "24.el8", + "s390x" + ], + [ + "libcap", + "0", + "2.26", + "4.el8", + "s390x" + ], + [ + "libcap-ng", + "0", + "0.7.9", + "5.el8", + "s390x" + ], + [ + "libcollection", + "0", + "0.7.0", + "39.el8", + "s390x" + ], + [ + "libcom_err", + "0", + "1.45.6", + "1.el8", + "s390x" + ], + [ + "libcurl", + "0", + "7.61.1", + "14.el8_3.1", + "s390x" + ], + [ + "libdaemon", + "0", + "0.14", + "15.el8", + "s390x" + ], + [ + "libdb", + "0", + "5.3.28", + "39.el8", + "s390x" + ], + [ + "libdb-utils", + "0", + "5.3.28", + "39.el8", + "s390x" + ], + [ + "libdhash", + "0", + "0.5.0", + "39.el8", + "s390x" + ], + [ + "libedit", + "0", + "3.1", + "23.20170329cvs.el8", + "s390x" + ], + [ + "libevent", + "0", + "2.1.8", + "5.el8", + "s390x" + ], + [ + "libfdisk", + "0", + "2.32.1", + "24.el8", + "s390x" + ], + [ + "libffi", + "0", + "3.1", + "22.el8", + "s390x" + ], + [ + "libgcc", + "0", + "8.3.1", + "5.1.el8", + "s390x" + ], + [ + "libgcrypt", + "0", + "1.8.5", + "4.el8", + "s390x" + ], + [ + "libgpg-error", + "0", + "1.31", + "1.el8", + "s390x" + ], + [ + "libicu", + "0", + "60.3", + "2.el8_1", + "s390x" + ], + [ + "libidn2", + "0", + "2.2.0", + "1.el8", + "s390x" + ], + [ + "libini_config", + "0", + "1.3.1", + "39.el8", + "s390x" + ], + [ + "libipa_hbac", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "libjose", + "0", + "10", + "2.el8", + "s390x" + ], + [ + "libkcapi", + "0", + "1.2.0", + "2.el8", + "s390x" + ], + [ + "libkcapi-hmaccalc", + "0", + "1.2.0", + "2.el8", + "s390x" + ], + [ + "libksba", + "0", + "1.3.5", + "7.el8", + "s390x" + ], + [ + "libldb", + "0", + "2.1.3", + "3.el8_3", + "s390x" + ], + [ + "libluksmeta", + "0", + "9", + "4.el8", + "s390x" + ], + [ + "libmaxminddb", + "0", + "1.2.0", + "10.el8", + "s390x" + ], + [ + "libmetalink", + "0", + "0.1.3", + "7.el8", + "s390x" + ], + [ + "libmicrohttpd", + "1", + "0.9.59", + "2.el8", + "s390x" + ], + [ + "libmnl", + "0", + "1.0.4", + "6.el8", + "s390x" + ], + [ + "libmodulemd", + "0", + "2.9.4", + "2.el8", + "s390x" + ], + [ + "libmount", + "0", + "2.32.1", + "24.el8", + "s390x" + ], + [ + "libndp", + "0", + "1.7", + "3.el8", + "s390x" + ], + [ + "libnet", + "0", + "1.1.6", + "15.el8", + "s390x" + ], + [ + "libnetfilter_conntrack", + "0", + "1.0.6", + "5.el8", + "s390x" + ], + [ + "libnfnetlink", + "0", + "1.0.1", + "13.el8", + "s390x" + ], + [ + "libnfsidmap", + "1", + "2.3.3", + "35.el8", + "s390x" + ], + [ + "libnftnl", + "0", + "1.1.5", + "4.el8", + "s390x" + ], + [ + "libnghttp2", + "0", + "1.33.0", + "3.el8_2.1", + "s390x" + ], + [ + "libnl3", + "0", + "3.5.0", + "1.el8", + "s390x" + ], + [ + "libnl3-cli", + "0", + "3.5.0", + "1.el8", + "s390x" + ], + [ + "libnsl2", + "0", + "1.2.0", + "2.20180605git4a062cf.el8", + "s390x" + ], + [ + "libpath_utils", + "0", + "0.2.1", + "39.el8", + "s390x" + ], + [ + "libpcap", + "14", + "1.9.1", + "4.el8", + "s390x" + ], + [ + "libpkgconf", + "0", + "1.4.2", + "1.el8", + "s390x" + ], + [ + "libpsl", + "0", + "0.20.2", + "6.el8", + "s390x" + ], + [ + "libpwquality", + "0", + "1.4.0", + "9.el8", + "s390x" + ], + [ + "libref_array", + "0", + "0.1.5", + "39.el8", + "s390x" + ], + [ + "librepo", + "0", + "1.12.0", + "2.el8", + "s390x" + ], + [ + "libreport-filesystem", + "0", + "2.9.5", + "15.el8", + "s390x" + ], + [ + "libseccomp", + "0", + "2.4.3", + "1.el8", + "s390x" + ], + [ + "libsecret", + "0", + "0.18.6", + "1.el8", + "s390x" + ], + [ + "libselinux", + "0", + "2.9", + "4.el8_3", + "s390x" + ], + [ + "libselinux-utils", + "0", + "2.9", + "4.el8_3", + "s390x" + ], + [ + "libsemanage", + "0", + "2.9", + "3.el8", + "s390x" + ], + [ + "libsepol", + "0", + "2.9", + "1.el8", + "s390x" + ], + [ + "libsigsegv", + "0", + "2.11", + "5.el8", + "s390x" + ], + [ + "libslirp", + "0", + "4.3.1", + "1.module+el8.3.1+9803+64eb0fd6", + "s390x" + ], + [ + "libsmartcols", + "0", + "2.32.1", + "24.el8", + "s390x" + ], + [ + "libsmbclient", + "0", + "4.12.3", + "14.el8_3", + "s390x" + ], + [ + "libsolv", + "0", + "0.7.11", + "1.el8", + "s390x" + ], + [ + "libss", + "0", + "1.45.6", + "1.el8", + "s390x" + ], + [ + "libssh", + "0", + "0.9.4", + "2.el8", + "s390x" + ], + [ + "libssh-config", + "0", + "0.9.4", + "2.el8", + "noarch" + ], + [ + "libsss_autofs", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "libsss_certmap", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "libsss_idmap", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "libsss_nss_idmap", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "libsss_sudo", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "libstdc++", + "0", + "8.3.1", + "5.1.el8", + "s390x" + ], + [ + "libsysfs", + "0", + "2.1.0", + "24.el8", + "s390x" + ], + [ + "libtalloc", + "0", + "2.3.1", + "2.el8", + "s390x" + ], + [ + "libtasn1", + "0", + "4.13", + "3.el8", + "s390x" + ], + [ + "libtdb", + "0", + "1.4.3", + "1.el8", + "s390x" + ], + [ + "libteam", + "0", + "1.31", + "2.el8", + "s390x" + ], + [ + "libtevent", + "0", + "0.10.2", + "2.el8", + "s390x" + ], + [ + "libtirpc", + "0", + "1.1.4", + "4.el8", + "s390x" + ], + [ + "libunistring", + "0", + "0.9.9", + "3.el8", + "s390x" + ], + [ + "libusbx", + "0", + "1.0.23", + "4.el8", + "s390x" + ], + [ + "libuser", + "0", + "0.62", + "23.el8", + "s390x" + ], + [ + "libutempter", + "0", + "1.1.6", + "14.el8", + "s390x" + ], + [ + "libuuid", + "0", + "2.32.1", + "24.el8", + "s390x" + ], + [ + "libvarlink", + "0", + "18", + "3.el8", + "s390x" + ], + [ + "libverto", + "0", + "0.3.0", + "5.el8", + "s390x" + ], + [ + "libverto-libevent", + "0", + "0.3.0", + "5.el8", + "s390x" + ], + [ + "libwbclient", + "0", + "4.12.3", + "14.el8_3", + "s390x" + ], + [ + "libxcrypt", + "0", + "4.1.1", + "4.el8", + "s390x" + ], + [ + "libxkbcommon", + "0", + "0.9.1", + "1.el8", + "s390x" + ], + [ + "libxml2", + "0", + "2.9.7", + "8.el8", + "s390x" + ], + [ + "libyaml", + "0", + "0.1.7", + "5.el8", + "s390x" + ], + [ + "libzstd", + "0", + "1.4.4", + "1.el8", + "s390x" + ], + [ + "linux-firmware", + "0", + "20200619", + "101.git3890db36.el8_3", + "noarch" + ], + [ + "logrotate", + "0", + "3.14.0", + "4.el8", + "s390x" + ], + [ + "lua-libs", + "0", + "5.3.4", + "11.el8", + "s390x" + ], + [ + "luksmeta", + "0", + "9", + "4.el8", + "s390x" + ], + [ + "lvm2", + "8", + "2.03.09", + "5.el8_3.2", + "s390x" + ], + [ + "lvm2-libs", + "8", + "2.03.09", + "5.el8_3.2", + "s390x" + ], + [ + "lz4-libs", + "0", + "1.8.3", + "2.el8", + "s390x" + ], + [ + "lzo", + "0", + "2.08", + "14.el8", + "s390x" + ], + [ + "make", + "1", + "4.2.1", + "10.el8", + "s390x" + ], + [ + "mdadm", + "0", + "4.1", + "14.el8", + "s390x" + ], + [ + "memstrack", + "0", + "0.1.11", + "1.el8", + "s390x" + ], + [ + "mozjs60", + "0", + "60.9.0", + "4.el8", + "s390x" + ], + [ + "mpfr", + "0", + "3.1.6", + "1.el8", + "s390x" + ], + [ + "nano", + "0", + "2.9.8", + "1.el8", + "s390x" + ], + [ + "ncurses", + "0", + "6.1", + "7.20180224.el8", + "s390x" + ], + [ + "ncurses-base", + "0", + "6.1", + "7.20180224.el8", + "noarch" + ], + [ + "ncurses-libs", + "0", + "6.1", + "7.20180224.el8", + "s390x" + ], + [ + "net-tools", + "0", + "2.0", + "0.52.20160912git.el8", + "s390x" + ], + [ + "nettle", + "0", + "3.4.1", + "4.el8_3", + "s390x" + ], + [ + "newt", + "0", + "0.52.20", + "11.el8", + "s390x" + ], + [ + "nfs-utils", + "1", + "2.3.3", + "35.el8", + "s390x" + ], + [ + "nftables", + "1", + "0.9.3", + "16.el8", + "s390x" + ], + [ + "nmap-ncat", + "2", + "7.70", + "5.el8", + "s390x" + ], + [ + "npth", + "0", + "1.5", + "4.el8", + "s390x" + ], + [ + "nss-altfiles", + "0", + "2.18.1", + "12.el8", + "s390x" + ], + [ + "oniguruma", + "0", + "6.8.2", + "2.el8", + "s390x" + ], + [ + "openldap", + "0", + "2.4.46", + "15.el8", + "s390x" + ], + [ + "openshift-clients", + "0", + "4.7.0", + "202107070256.p0.git.8b4b094.assembly.stream.el8", + "s390x" + ], + [ + "openshift-hyperkube", + "0", + "4.7.0", + "202107132131.p0.git.558d959.assembly.stream.el8", + "s390x" + ], + [ + "openssh", + "0", + "8.0p1", + "5.el8", + "s390x" + ], + [ + "openssh-clients", + "0", + "8.0p1", + "5.el8", + "s390x" + ], + [ + "openssh-server", + "0", + "8.0p1", + "5.el8", + "s390x" + ], + [ + "openssl", + "1", + "1.1.1g", + "15.el8_3", + "s390x" + ], + [ + "openssl-libs", + "1", + "1.1.1g", + "15.el8_3", + "s390x" + ], + [ + "openssl-pkcs11", + "0", + "0.4.10", + "2.el8", + "s390x" + ], + [ + "openvswitch-selinux-extra-policy", + "0", + "1.0", + "28.el8fdp", + "noarch" + ], + [ + "openvswitch2.13", + "0", + "2.13.0", + "114.el8fdp", + "s390x" + ], + [ + "ostree", + "0", + "2020.7", + "1.el8_3", + "s390x" + ], + [ + "ostree-libs", + "0", + "2020.7", + "1.el8_3", + "s390x" + ], + [ + "p11-kit", + "0", + "0.23.14", + "5.el8_0", + "s390x" + ], + [ + "p11-kit-trust", + "0", + "0.23.14", + "5.el8_0", + "s390x" + ], + [ + "pam", + "0", + "1.3.1", + "11.el8", + "s390x" + ], + [ + "passwd", + "0", + "0.80", + "3.el8", + "s390x" + ], + [ + "pciutils", + "0", + "3.6.4", + "2.el8", + "s390x" + ], + [ + "pciutils-libs", + "0", + "3.6.4", + "2.el8", + "s390x" + ], + [ + "pcre", + "0", + "8.42", + "4.el8", + "s390x" + ], + [ + "pcre2", + "0", + "10.32", + "2.el8", + "s390x" + ], + [ + "perl-Carp", + "0", + "1.50", + "439.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Data-Dumper", + "0", + "2.174", + "440.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-Digest", + "0", + "1.17", + "396.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Digest-MD5", + "0", + "2.55", + "397.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-Encode", + "4", + "3.01", + "439.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-Errno", + "0", + "1.30", + "451.module+el8.3.0+6961+31ca2e7a", + "s390x" + ], + [ + "perl-Exporter", + "0", + "5.73", + "440.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-File-Path", + "0", + "2.16", + "439.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-File-Temp", + "1", + "0.230.900", + "439.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Getopt-Long", + "1", + "2.51", + "1.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-HTTP-Tiny", + "0", + "0.076", + "439.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-IO", + "0", + "1.40", + "451.module+el8.3.0+6961+31ca2e7a", + "s390x" + ], + [ + "perl-IO-Socket-IP", + "0", + "0.39", + "6.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-IO-Socket-SSL", + "0", + "2.066", + "4.module+el8.3.0+6452+449fe210", + "noarch" + ], + [ + "perl-MIME-Base64", + "0", + "3.15", + "1001.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-Mozilla-CA", + "0", + "20160104", + "7.module+el8.3.0+6498+fb59cb73", + "noarch" + ], + [ + "perl-Net-SSLeay", + "0", + "1.88", + "1.module+el8.3.0+6452+449fe210", + "s390x" + ], + [ + "perl-PathTools", + "0", + "3.78", + "439.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-Pod-Escapes", + "1", + "1.07", + "396.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Pod-Perldoc", + "0", + "3.28.01", + "442.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Pod-Simple", + "1", + "3.40", + "1.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Pod-Usage", + "4", + "1.69", + "396.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Scalar-List-Utils", + "3", + "1.53", + "439.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-Socket", + "4", + "2.029", + "4.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-Storable", + "1", + "3.15", + "442.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-Term-ANSIColor", + "0", + "4.06", + "397.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Term-Cap", + "0", + "1.17", + "396.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Text-ParseWords", + "0", + "3.30", + "396.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Text-Tabs+Wrap", + "0", + "2013.0523", + "396.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Time-Local", + "1", + "1.280", + "2.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-URI", + "0", + "1.76", + "5.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-Unicode-Normalize", + "0", + "1.26", + "439.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-constant", + "0", + "1.33", + "1001.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-interpreter", + "4", + "5.30.1", + "451.module+el8.3.0+6961+31ca2e7a", + "s390x" + ], + [ + "perl-libnet", + "0", + "3.11", + "4.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-libs", + "4", + "5.30.1", + "451.module+el8.3.0+6961+31ca2e7a", + "s390x" + ], + [ + "perl-macros", + "4", + "5.30.1", + "451.module+el8.3.0+6961+31ca2e7a", + "s390x" + ], + [ + "perl-parent", + "1", + "0.237", + "2.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-podlators", + "1", + "4.12", + "2.module+el8.3.0+6718+7f269185", + "noarch" + ], + [ + "perl-threads", + "1", + "2.22", + "439.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "perl-threads-shared", + "0", + "1.60", + "440.module+el8.3.0+6718+7f269185", + "s390x" + ], + [ + "pigz", + "0", + "2.4", + "4.el8", + "s390x" + ], + [ + "pinentry", + "0", + "1.1.0", + "2.el8", + "s390x" + ], + [ + "pkgconf", + "0", + "1.4.2", + "1.el8", + "s390x" + ], + [ + "pkgconf-m4", + "0", + "1.4.2", + "1.el8", + "noarch" + ], + [ + "pkgconf-pkg-config", + "0", + "1.4.2", + "1.el8", + "s390x" + ], + [ + "platform-python", + "0", + "3.6.8", + "31.el8", + "s390x" + ], + [ + "platform-python-pip", + "0", + "9.0.3", + "18.el8", + "noarch" + ], + [ + "platform-python-setuptools", + "0", + "39.2.0", + "6.el8", + "noarch" + ], + [ + "podman", + "0", + "2.2.1", + "7.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "podman-catatonit", + "0", + "2.2.1", + "7.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "policycoreutils", + "0", + "2.9", + "9.el8", + "s390x" + ], + [ + "policycoreutils-python-utils", + "0", + "2.9", + "9.el8", + "noarch" + ], + [ + "polkit", + "0", + "0.115", + "11.el8_3.2", + "s390x" + ], + [ + "polkit-libs", + "0", + "0.115", + "11.el8_3.2", + "s390x" + ], + [ + "polkit-pkla-compat", + "0", + "0.1", + "12.el8", + "s390x" + ], + [ + "popt", + "0", + "1.16", + "14.el8", + "s390x" + ], + [ + "procps-ng", + "0", + "3.3.15", + "3.el8_3.1", + "s390x" + ], + [ + "protobuf-c", + "0", + "1.3.0", + "4.el8", + "s390x" + ], + [ + "psmisc", + "0", + "23.1", + "5.el8", + "s390x" + ], + [ + "publicsuffix-list-dafsa", + "0", + "20180723", + "1.el8", + "noarch" + ], + [ + "python3-audit", + "0", + "3.0", + "0.17.20191104git1c2f876.el8", + "s390x" + ], + [ + "python3-bind", + "32", + "9.11.20", + "5.el8_3.1", + "noarch" + ], + [ + "python3-libs", + "0", + "3.6.8", + "31.el8", + "s390x" + ], + [ + "python3-libselinux", + "0", + "2.9", + "4.el8_3", + "s390x" + ], + [ + "python3-libsemanage", + "0", + "2.9", + "3.el8", + "s390x" + ], + [ + "python3-pip-wheel", + "0", + "9.0.3", + "18.el8", + "noarch" + ], + [ + "python3-ply", + "0", + "3.9", + "8.el8", + "noarch" + ], + [ + "python3-policycoreutils", + "0", + "2.9", + "9.el8", + "noarch" + ], + [ + "python3-pyyaml", + "0", + "3.12", + "12.el8", + "s390x" + ], + [ + "python3-setools", + "0", + "4.3.0", + "2.el8", + "s390x" + ], + [ + "python3-setuptools-wheel", + "0", + "39.2.0", + "6.el8", + "noarch" + ], + [ + "python3-sssdconfig", + "0", + "2.3.0", + "9.el8", + "noarch" + ], + [ + "qemu-guest-agent", + "15", + "4.2.0", + "34.module+el8.3.0+10437+1ca0c2ba.5", + "s390x" + ], + [ + "quota", + "1", + "4.04", + "10.el8", + "s390x" + ], + [ + "quota-nls", + "1", + "4.04", + "10.el8", + "noarch" + ], + [ + "rdma-core", + "0", + "29.0", + "3.el8", + "s390x" + ], + [ + "readline", + "0", + "7.0", + "10.el8", + "s390x" + ], + [ + "redhat-release-coreos", + "0", + "47.83", + "2.el8", + "s390x" + ], + [ + "rpcbind", + "0", + "1.2.5", + "7.el8", + "s390x" + ], + [ + "rpm", + "0", + "4.14.3", + "4.el8", + "s390x" + ], + [ + "rpm-libs", + "0", + "4.14.3", + "4.el8", + "s390x" + ], + [ + "rpm-ostree", + "0", + "2020.7", + "1.el8_3", + "s390x" + ], + [ + "rpm-ostree-libs", + "0", + "2020.7", + "1.el8_3", + "s390x" + ], + [ + "rpm-plugin-selinux", + "0", + "4.14.3", + "4.el8", + "s390x" + ], + [ + "rsync", + "0", + "3.1.3", + "9.el8", + "s390x" + ], + [ + "runc", + "0", + "1.0.0", + "96.rhaos4.8.gitcd80260.el8", + "s390x" + ], + [ + "s390utils-base", + "2", + "2.6.0", + "33.el8_3.2", + "s390x" + ], + [ + "samba-client-libs", + "0", + "4.12.3", + "14.el8_3", + "s390x" + ], + [ + "samba-common", + "0", + "4.12.3", + "14.el8_3", + "noarch" + ], + [ + "samba-common-libs", + "0", + "4.12.3", + "14.el8_3", + "s390x" + ], + [ + "sed", + "0", + "4.5", + "2.el8", + "s390x" + ], + [ + "selinux-policy", + "0", + "3.14.3", + "54.el8_3.4", + "noarch" + ], + [ + "selinux-policy-targeted", + "0", + "3.14.3", + "54.el8_3.4", + "noarch" + ], + [ + "setup", + "0", + "2.12.2", + "6.el8", + "noarch" + ], + [ + "sg3_utils", + "0", + "1.44", + "5.el8", + "s390x" + ], + [ + "sg3_utils-libs", + "0", + "1.44", + "5.el8", + "s390x" + ], + [ + "shadow-utils", + "2", + "4.6", + "11.el8", + "s390x" + ], + [ + "shared-mime-info", + "0", + "1.9", + "3.el8", + "s390x" + ], + [ + "skopeo", + "1", + "1.2.0", + "9.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "slang", + "0", + "2.3.2", + "3.el8", + "s390x" + ], + [ + "slirp4netns", + "0", + "1.1.8", + "1.module+el8.3.1+9857+68fb1526", + "s390x" + ], + [ + "snappy", + "0", + "1.1.8", + "3.el8", + "s390x" + ], + [ + "socat", + "0", + "1.7.3.3", + "2.el8", + "s390x" + ], + [ + "sqlite-libs", + "0", + "3.26.0", + "11.el8", + "s390x" + ], + [ + "squashfs-tools", + "0", + "4.3", + "19.el8", + "s390x" + ], + [ + "sssd", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-ad", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-client", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-common", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-common-pac", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-ipa", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-krb5", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-krb5-common", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-ldap", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-nfs-idmap", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "sssd-proxy", + "0", + "2.3.0", + "9.el8", + "s390x" + ], + [ + "strace", + "0", + "5.1", + "1.el8", + "s390x" + ], + [ + "subscription-manager-rhsm-certificates", + "0", + "1.27.18", + "1.el8_3", + "s390x" + ], + [ + "sudo", + "0", + "1.8.29", + "6.el8_3.1", + "s390x" + ], + [ + "sysfsutils", + "0", + "2.1.0", + "24.el8", + "s390x" + ], + [ + "systemd", + "0", + "239", + "41.el8_3.3", + "s390x" + ], + [ + "systemd-journal-remote", + "0", + "239", + "41.el8_3.3", + "s390x" + ], + [ + "systemd-libs", + "0", + "239", + "41.el8_3.3", + "s390x" + ], + [ + "systemd-pam", + "0", + "239", + "41.el8_3.3", + "s390x" + ], + [ + "systemd-udev", + "0", + "239", + "41.el8_3.3", + "s390x" + ], + [ + "tar", + "2", + "1.30", + "5.el8", + "s390x" + ], + [ + "teamd", + "0", + "1.31", + "2.el8", + "s390x" + ], + [ + "timedatex", + "0", + "0.5", + "3.el8", + "s390x" + ], + [ + "tmux", + "0", + "2.7", + "1.el8", + "s390x" + ], + [ + "toolbox", + "0", + "0.0.8", + "3.rhaos4.7.el8", + "noarch" + ], + [ + "tpm2-tools", + "0", + "4.1.1", + "1.el8", + "s390x" + ], + [ + "tpm2-tss", + "0", + "2.3.2", + "2.el8", + "s390x" + ], + [ + "trousers", + "0", + "0.3.14", + "4.el8", + "s390x" + ], + [ + "trousers-lib", + "0", + "0.3.14", + "4.el8", + "s390x" + ], + [ + "tzdata", + "0", + "2021a", + "1.el8", + "noarch" + ], + [ + "unbound-libs", + "0", + "1.7.3", + "14.el8", + "s390x" + ], + [ + "userspace-rcu", + "0", + "0.10.1", + "2.el8", + "s390x" + ], + [ + "util-linux", + "0", + "2.32.1", + "24.el8", + "s390x" + ], + [ + "vim-minimal", + "2", + "8.0.1763", + "15.el8", + "s390x" + ], + [ + "which", + "0", + "2.21", + "12.el8", + "s390x" + ], + [ + "xfsprogs", + "0", + "5.0.0", + "4.el8", + "s390x" + ], + [ + "xkeyboard-config", + "0", + "2.28", + "1.el8", + "noarch" + ], + [ + "xz", + "0", + "5.2.4", + "3.el8", + "s390x" + ], + [ + "xz-libs", + "0", + "5.2.4", + "3.el8", + "s390x" + ], + [ + "yajl", + "0", + "2.1.0", + "10.el8", + "s390x" + ], + [ + "zlib", + "0", + "1.2.11", + "16.2.el8_3", + "s390x" + ] + ], + "version" : "47.83.202107261211-0", + "ostree.bootable" : true, + "rpmostree.initramfs-args" : [ + "--add=ignition", + "--no-hostonly", + "--add-drivers", + "mptspi vmw_pvscsi", + "--omit-drivers", + "nouveau", + "--omit", + "nfs", + "--add", + "iscsi", + "ignition", + "--add", + "ifcfg", + "--add", + "fips", + "--omit", + "network-legacy" + ], + "ostree.linux" : "4.18.0-240.23.2.el8_3.s390x", + "rpmostree.rpmmd-repos" : [ + { + "id" : "rhel-8-server-ose", + "timestamp" : 1627299495 + }, + { + "id" : "rhel-8-fast-datapath", + "timestamp" : 1624285258 + }, + { + "id" : "rhel-8-baseos", + "timestamp" : 1624472799 + }, + { + "id" : "rhel-8-appstream", + "timestamp" : 1623791431 + } + ] +} \ No newline at end of file diff --git a/tests/resources/rhcos1/47.83.202107261211-0.meta.json b/tests/resources/rhcos1/47.83.202107261211-0.meta.json new file mode 100644 index 000000000..c0dbdf030 --- /dev/null +++ b/tests/resources/rhcos1/47.83.202107261211-0.meta.json @@ -0,0 +1,119 @@ +{ + "build-url": "https://jenkins-rhcos.router.default.svc.cluster.local/job/rhcos/job/rhcos-rhcos-4.7/2054/", + "buildid": "47.83.202107261211-0", + "coreos-assembler.basearch": "s390x", + "coreos-assembler.build-timestamp": "2021-07-26T12:18:00Z", + "coreos-assembler.code-source": "container", + "coreos-assembler.config-dirty": "false", + "coreos-assembler.config-gitrev": "v3.1-1271-g5bfbd563962484067a4f47c26c96def706976511", + "coreos-assembler.container-config-git": { + "branch": "HEAD", + "commit": "5bfbd563962484067a4f47c26c96def706976511", + "dirty": "false", + "origin": "https://gitlab.cee.redhat.com/coreos/redhat-coreos.git" + }, + "coreos-assembler.container-image-git": { + "branch": "rhcos-4.7", + "commit": "dfe0626604876718095b27c59b5442dacb32a840", + "dirty": "true", + "origin": "https://github.com/coreos/coreos-assembler" + }, + "coreos-assembler.delayed-meta-merge": false, + "coreos-assembler.image-config-checksum": "0f9d52036baeb94441a4eafda05272956ab4a31729b55f2a77280d95a879822c", + "coreos-assembler.image-genver": 0, + "coreos-assembler.image-input-checksum": "36a7098f91d7de7e94ef0cc224184723907869a6e65dcb46cf42ccf888d7dcdd", + "coreos-assembler.meta-stamp": 1627304238112090064, + "images": { + "live-initramfs": { + "path": "rhcos-47.83.202107261211-0-live-initramfs.s390x.img", + "sha256": "695dd688d098f04710fa04cca6970cdb7ec3aca6b9ef061870718eb11f72d0e4" + }, + "live-iso": { + "path": "rhcos-47.83.202107261211-0-live.s390x.iso", + "sha256": "699fd9907bd22ae20c423d3722b728e6f4b1a64364bcec9b553740bda982e8a4" + }, + "live-kernel": { + "path": "rhcos-47.83.202107261211-0-live-kernel-s390x", + "sha256": "a3a5fe2a50a2b27f9fba22293b08d5f9336065a6fbab3f05a7e0b2fb15028617" + }, + "live-rootfs": { + "path": "rhcos-47.83.202107261211-0-live-rootfs.s390x.img", + "sha256": "077a3f42248cd46453caddb04348d1151e96956e6d704d656030b21d46b2409a" + }, + "metal": { + "path": "rhcos-47.83.202107261211-0-metal.s390x.raw.gz", + "sha256": "5beea57aacd462a9c406f0695935a41e36680d583809b53020e8f97248f0b819", + "size": 835059948, + "uncompressed-sha256": "63ff2c008a8a5cd5e01ac3e77fbfdfd01020637a9f77ef8f53673ef931f75f0c", + "uncompressed-size": 3527409664 + }, + "metal4k": { + "path": "rhcos-47.83.202107261211-0-metal4k.s390x.raw.gz", + "sha256": "c7972fb425282b3831b26c324f1d11b8cd778099166b0c3179227d9020a45d33", + "size": 835047829, + "uncompressed-sha256": "04b169a05695fe74986ba091cd9d8437dd85956ee451f6a5f9dec35d3f2f2b2a", + "uncompressed-size": 3527409664 + }, + "ostree": { + "path": "rhcos-47.83.202107261211-0-ostree.s390x.tar", + "sha256": "b83c3a7f5c991f66593a32f8d3d8fda03d3a0039f602fe2c7ca3f0ba557cb60e", + "size": 783534080 + }, + "qemu": { + "path": "rhcos-47.83.202107261211-0-qemu.s390x.qcow2.gz", + "sha256": "7295e7f42122fd199d29610594a72c33dc3cde7a0226f413c88cf93d9b03e1dc", + "size": 834605627, + "uncompressed-sha256": "e0feb178e3a35553616f10c187289af9b301f04cdfdb545e3d75c575d30280be", + "uncompressed-size": 2222325760 + }, + "dasd": { + "path": "rhcos-47.83.202107261211-0-dasd.s390x.raw.gz", + "sha256": "3b027938d778435eb164fa4965ce94dfb2f65830e01f6a18fe1e44bb10283474", + "size": 834978528, + "uncompressed-sha256": "2fca9d5f76dd4079054f4f1086a036ea7c1dc1cd59d5e0f6299f61aa23917f62", + "uncompressed-size": 3527409664 + }, + "openstack": { + "path": "rhcos-47.83.202107261211-0-openstack.s390x.qcow2.gz", + "sha256": "3cce5e94d029bb1eb31481a5dde648f1798201f372220f9797150ec72516f089", + "size": 833449980, + "uncompressed-sha256": "2fd7fc64309976c7405f849030dd8182ec5e8bb954174fa707d136d8fc367cdf", + "uncompressed-size": 2188836864 + } + }, + "name": "rhcos", + "oscontainer": { + "digest": "sha256:d51ca4e301cfdbc98e16ace0bcbee02b143a8be9e454ce5fb196467981141f59", + "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev" + }, + "ostree-commit": "48a066e9e15bde40415c6711db90110832c010a36969f6c8984a7c91853db937", + "ostree-content-bytes-written": 161574387, + "ostree-content-checksum": "c89222c240bedd48996dad051d17f695d10a3d52d63496759abd7cf320cae697", + "ostree-n-cache-hits": 19030, + "ostree-n-content-total": 6283, + "ostree-n-content-written": 1302, + "ostree-n-metadata-total": 9731, + "ostree-n-metadata-written": 3184, + "ostree-timestamp": "2021-07-26T12:17:38Z", + "ostree-version": "47.83.202107261211-0", + "pkgdiff": [ + [ + "cri-o", + 2, + { + "NewPackage": [ + "cri-o", + "1.20.4-5.rhaos4.7.gitea842fa.el8", + "s390x" + ], + "PreviousPackage": [ + "cri-o", + "1.20.4-4.rhaos4.7.gitf7276ed.el8", + "s390x" + ] + } + ] + ], + "rpm-ostree-inputhash": "af519780458814872775f2f1a10440bddf3b782eb18a43c446a2a297cd1f1233", + "summary": "OpenShift 4" +} \ No newline at end of file diff --git a/tests/resources/rhcos1/47.83.202107261211-0.pkg_builds.yaml b/tests/resources/rhcos1/47.83.202107261211-0.pkg_builds.yaml new file mode 100644 index 000000000..a2d797c3a --- /dev/null +++ b/tests/resources/rhcos1/47.83.202107261211-0.pkg_builds.yaml @@ -0,0 +1,8819 @@ +# For each RPM NVRA in the rhcos OS metadata, iterate through them, +# getRPM(nvra).. and then getBuild(rpm['build_id']). Keys are +# build['id'] and values are the build dicts. +745929: + build_id: 745929 + cg_id: null + cg_name: null + completion_time: '2018-08-12 07:54:06.053845' + completion_ts: 1534060446.05384 + creation_event_id: 21094076 + creation_time: '2018-08-12 07:48:15.882529' + creation_ts: 1534060095.88253 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libxcrypt?#39cb4db5d6921432ac58314ecbce0499b3175030 + id: 745929 + name: libxcrypt + nvr: libxcrypt-4.1.1-4.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 67791 + package_name: libxcrypt + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libxcrypt#39cb4db5d6921432ac58314ecbce0499b3175030 + start_time: '2018-08-12 07:48:15.882529' + start_ts: 1534060095.88253 + state: 1 + task_id: 17778574 + version: 4.1.1 + volume_id: 9 + volume_name: rhel-8 +745934: + build_id: 745934 + cg_id: null + cg_name: null + completion_time: '2018-08-12 07:55:13.376681' + completion_ts: 1534060513.37668 + creation_event_id: 21094083 + creation_time: '2018-08-12 07:48:16.919100' + creation_ts: 1534060096.9191 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/grep?#c300a00f9d91514feb8a5eef8d06800c4be6a03b + id: 745934 + name: grep + nvr: grep-3.1-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 797 + package_name: grep + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/grep#c300a00f9d91514feb8a5eef8d06800c4be6a03b + start_time: '2018-08-12 07:48:16.919100' + start_ts: 1534060096.9191 + state: 1 + task_id: 17778576 + version: '3.1' + volume_id: 9 + volume_name: rhel-8 +745937: + build_id: 745937 + cg_id: null + cg_name: null + completion_time: '2018-08-12 08:15:06.761074' + completion_ts: 1534061706.76107 + creation_event_id: 21094086 + creation_time: '2018-08-12 07:48:17.960033' + creation_ts: 1534060097.96003 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gawk?#184569845c8e2fcc9a13e3bf00d2d7ed5af48480 + id: 745937 + name: gawk + nvr: gawk-4.2.1-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 516 + package_name: gawk + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/gawk#184569845c8e2fcc9a13e3bf00d2d7ed5af48480 + start_time: '2018-08-12 07:48:17.960033' + start_ts: 1534060097.96003 + state: 1 + task_id: 17778582 + version: 4.2.1 + volume_id: 9 + volume_name: rhel-8 +745941: + build_id: 745941 + cg_id: null + cg_name: null + completion_time: '2018-08-12 07:57:33.801035' + completion_ts: 1534060653.80103 + creation_event_id: 21094119 + creation_time: '2018-08-12 07:48:50.761707' + creation_ts: 1534060130.76171 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/bzip2?#6c320812716142f745e87c19d37aef88b455b320 + id: 745941 + name: bzip2 + nvr: bzip2-1.0.6-26.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 228 + package_name: bzip2 + release: 26.el8 + source: git://pkgs.devel.redhat.com/rpms/bzip2#6c320812716142f745e87c19d37aef88b455b320 + start_time: '2018-08-12 07:48:50.761707' + start_ts: 1534060130.76171 + state: 1 + task_id: 17778572 + version: 1.0.6 + volume_id: 9 + volume_name: rhel-8 +745956: + build_id: 745956 + cg_id: null + cg_name: null + completion_time: '2018-08-12 08:02:46.842379' + completion_ts: 1534060966.84238 + creation_event_id: 21094217 + creation_time: '2018-08-12 07:50:00.171871' + creation_ts: 1534060200.17187 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cpio?#2cbf779d2c700275d830656a8840f96fac49255b + id: 745956 + name: cpio + nvr: cpio-2.12-8.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 295 + package_name: cpio + release: 8.el8 + source: git://pkgs.devel.redhat.com/rpms/cpio#2cbf779d2c700275d830656a8840f96fac49255b + start_time: '2018-08-12 07:50:00.171871' + start_ts: 1534060200.17187 + state: 1 + task_id: 17778571 + version: '2.12' + volume_id: 9 + volume_name: rhel-8 +745979: + build_id: 745979 + cg_id: null + cg_name: null + completion_time: '2018-08-12 08:48:59.304322' + completion_ts: 1534063739.30432 + creation_event_id: 21094765 + creation_time: '2018-08-12 08:34:28.122113' + creation_ts: 1534062868.12211 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/acl?#70b98f966df90873e3b660938109a701fea4d520 + id: 745979 + name: acl + nvr: acl-2.2.53-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 79 + package_name: acl + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/acl#70b98f966df90873e3b660938109a701fea4d520 + start_time: '2018-08-12 08:34:28.122113' + start_ts: 1534062868.12211 + state: 1 + task_id: 17779252 + version: 2.2.53 + volume_id: 9 + volume_name: rhel-8 +746019: + build_id: 746019 + cg_id: null + cg_name: null + completion_time: '2018-08-12 08:56:05.688880' + completion_ts: 1534064165.68888 + creation_event_id: 21095063 + creation_time: '2018-08-12 08:38:33.487185' + creation_ts: 1534063113.48719 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/attr?#fdfcc6e99dda82ee784f779aea1e6583d6a9114f + id: 746019 + name: attr + nvr: attr-2.4.48-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 156 + package_name: attr + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/attr#fdfcc6e99dda82ee784f779aea1e6583d6a9114f + start_time: '2018-08-12 08:38:33.487185' + start_ts: 1534063113.48719 + state: 1 + task_id: 17779299 + version: 2.4.48 + volume_id: 9 + volume_name: rhel-8 +746023: + build_id: 746023 + cg_id: null + cg_name: null + completion_time: '2018-08-12 08:40:25.060266' + completion_ts: 1534063225.06027 + creation_event_id: 21095103 + creation_time: '2018-08-12 08:39:16.029840' + creation_ts: 1534063156.02984 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/basesystem?#a5396e2dfce9e5a71fa15c63cf074f949ea2677c + id: 746023 + name: basesystem + nvr: basesystem-11-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 183 + package_name: basesystem + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/basesystem#a5396e2dfce9e5a71fa15c63cf074f949ea2677c + start_time: '2018-08-12 08:39:16.029840' + start_ts: 1534063156.02984 + state: 1 + task_id: 17779314 + version: '11' + volume_id: 9 + volume_name: rhel-8 +746120: + build_id: 746120 + cg_id: null + cg_name: null + completion_time: '2018-08-12 09:51:28.024520' + completion_ts: 1534067488.02452 + creation_event_id: 21096145 + creation_time: '2018-08-12 09:03:56.729046' + creation_ts: 1534064636.72905 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/compat-openssl10?#d6911360aa74eafc54335e839389ce1f2d763730 + id: 746120 + name: compat-openssl10 + nvr: compat-openssl10-1.0.2o-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 63064 + package_name: compat-openssl10 + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/compat-openssl10#d6911360aa74eafc54335e839389ce1f2d763730 + start_time: '2018-08-12 09:03:56.729046' + start_ts: 1534064636.72905 + state: 1 + task_id: 17779413 + version: 1.0.2o + volume_id: 9 + volume_name: rhel-8 +746168: + build_id: 746168 + cg_id: null + cg_name: null + completion_time: '2018-08-12 13:12:48.604034' + completion_ts: 1534079568.60403 + creation_event_id: 21102157 + creation_time: '2018-08-12 11:46:09.899039' + creation_ts: 1534074369.89904 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ding-libs?#a204509de7770ce827ed8a33741c181559064c8e + id: 746168 + name: ding-libs + nvr: ding-libs-0.6.1-39.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 30900 + package_name: ding-libs + release: 39.el8 + source: git://pkgs.devel.redhat.com/rpms/ding-libs#a204509de7770ce827ed8a33741c181559064c8e + start_time: '2018-08-12 11:46:09.899039' + start_ts: 1534074369.89904 + state: 1 + task_id: 17784597 + version: 0.6.1 + volume_id: 9 + volume_name: rhel-8 +746292: + build_id: 746292 + cg_id: null + cg_name: null + completion_time: '2018-08-12 10:50:21.208742' + completion_ts: 1534071021.20874 + creation_event_id: 21098232 + creation_time: '2018-08-12 09:57:16.690450' + creation_ts: 1534067836.69045 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gdisk?#f306839fc556078501f8ea32bacd905282d6e188 + id: 746292 + name: gdisk + nvr: gdisk-1.0.3-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 35434 + package_name: gdisk + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/gdisk#f306839fc556078501f8ea32bacd905282d6e188 + start_time: '2018-08-12 09:57:16.690450' + start_ts: 1534067836.69045 + state: 1 + task_id: 17779648 + version: 1.0.3 + volume_id: 9 + volume_name: rhel-8 +746302: + build_id: 746302 + cg_id: null + cg_name: null + completion_time: '2018-08-12 10:01:53.141029' + completion_ts: 1534068113.14103 + creation_event_id: 21098354 + creation_time: '2018-08-12 09:59:52.053333' + creation_ts: 1534067992.05333 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/geolite2?#b80a71b8f0f70f2ada4db8eff32276ae48a32e1e + id: 746302 + name: geolite2 + nvr: geolite2-20180605-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 69925 + package_name: geolite2 + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/geolite2#b80a71b8f0f70f2ada4db8eff32276ae48a32e1e + start_time: '2018-08-12 09:59:52.053333' + start_ts: 1534067992.05333 + state: 1 + task_id: 17779660 + version: '20180605' + volume_id: 9 + volume_name: rhel-8 +746586: + build_id: 746586 + cg_id: null + cg_name: null + completion_time: '2018-08-12 13:23:42.063242' + completion_ts: 1534080222.06324 + creation_event_id: 21103591 + creation_time: '2018-08-12 12:14:00.733117' + creation_ts: 1534076040.73312 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/hardlink?#81496df6763fd1f20fc8c6b66daf5e89435164bc + id: 746586 + name: hardlink + nvr: hardlink-1.3-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 856 + package_name: hardlink + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/hardlink#81496df6763fd1f20fc8c6b66daf5e89435164bc + start_time: '2018-08-12 12:14:00.733117' + start_ts: 1534076040.73312 + state: 1 + task_id: 17785058 + version: '1.3' + volume_id: 9 + volume_name: rhel-8 +746599: + build_id: 746599 + cg_id: null + cg_name: null + completion_time: '2018-08-12 13:39:05.607625' + completion_ts: 1534081145.60763 + creation_event_id: 21103702 + creation_time: '2018-08-12 12:16:28.131995' + creation_ts: 1534076188.13199 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/hostname?#921430a8e173de21d01d6878929253a6d3c09291 + id: 746599 + name: hostname + nvr: hostname-3.20-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 33899 + package_name: hostname + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/hostname#921430a8e173de21d01d6878929253a6d3c09291 + start_time: '2018-08-12 12:16:28.131995' + start_ts: 1534076188.13199 + state: 1 + task_id: 17785068 + version: '3.20' + volume_id: 9 + volume_name: rhel-8 +746879: + build_id: 746879 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:14:49.790437' + completion_ts: 1534083289.79044 + creation_event_id: 21105821 + creation_time: '2018-08-12 12:44:57.054998' + creation_ts: 1534077897.055 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/jansson?#15d522f323ede33356bf41116b78dc112d97cc4d + id: 746879 + name: jansson + nvr: jansson-2.11-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 31648 + package_name: jansson + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/jansson#15d522f323ede33356bf41116b78dc112d97cc4d + start_time: '2018-08-12 12:44:57.054998' + start_ts: 1534077897.055 + state: 1 + task_id: 17785387 + version: '2.11' + volume_id: 9 + volume_name: rhel-8 +746926: + build_id: 746926 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:18:42.040990' + completion_ts: 1534083522.04099 + creation_event_id: 21106275 + creation_time: '2018-08-12 12:50:41.611140' + creation_ts: 1534078241.61114 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/jose?#c5e94c0f796ef8d64b58a1ae0f72516e70f6b443 + id: 746926 + name: jose + nvr: jose-10-2.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 61817 + package_name: jose + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/jose#c5e94c0f796ef8d64b58a1ae0f72516e70f6b443 + start_time: '2018-08-12 12:50:41.611140' + start_ts: 1534078241.61114 + state: 1 + task_id: 17785433 + version: '10' + volume_id: 9 + volume_name: rhel-8 +746927: + build_id: 746927 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:14:38.454112' + completion_ts: 1534083278.45411 + creation_event_id: 21106276 + creation_time: '2018-08-12 12:50:41.648559' + creation_ts: 1534078241.64856 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/json-c?#f6694a105fbfa75441e5fce5d743b4ec35189a84 + id: 746927 + name: json-c + nvr: json-c-0.13.1-0.2.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 35466 + package_name: json-c + release: 0.2.el8 + source: git://pkgs.devel.redhat.com/rpms/json-c#f6694a105fbfa75441e5fce5d743b4ec35189a84 + start_time: '2018-08-12 12:50:41.648559' + start_ts: 1534078241.64856 + state: 1 + task_id: 17785432 + version: 0.13.1 + volume_id: 9 + volume_name: rhel-8 +746949: + build_id: 746949 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:22:26.014249' + completion_ts: 1534083746.01425 + creation_event_id: 21106450 + creation_time: '2018-08-12 12:52:59.489932' + creation_ts: 1534078379.48993 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/keyutils?#1e1d1f7c7b63c45fb82fe791e56fa78739c07fdd + id: 746949 + name: keyutils + nvr: keyutils-1.5.10-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 1766 + package_name: keyutils + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/keyutils#1e1d1f7c7b63c45fb82fe791e56fa78739c07fdd + start_time: '2018-08-12 12:52:59.489932' + start_ts: 1534078379.48993 + state: 1 + task_id: 17785458 + version: 1.5.10 + volume_id: 9 + volume_name: rhel-8 +746991: + build_id: 746991 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:32:27.752959' + completion_ts: 1534084347.75296 + creation_event_id: 21106831 + creation_time: '2018-08-12 12:58:22.377382' + creation_ts: 1534078702.37738 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/less?#ec1503561bd946d1f5e5293973764cb8e0524504 + id: 746991 + name: less + nvr: less-530-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 1830 + package_name: less + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/less#ec1503561bd946d1f5e5293973764cb8e0524504 + start_time: '2018-08-12 12:58:22.377382' + start_ts: 1534078702.37738 + state: 1 + task_id: 17785499 + version: '530' + volume_id: 9 + volume_name: rhel-8 +747020: + build_id: 747020 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:34:09.006942' + completion_ts: 1534084449.00694 + creation_event_id: 21107091 + creation_time: '2018-08-12 13:03:07.114456' + creation_ts: 1534078987.11446 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libassuan?#3de5b0bcfc1ed6c812fd4bb6e171584655be414a + id: 747020 + name: libassuan + nvr: libassuan-2.5.1-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11689 + package_name: libassuan + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libassuan#3de5b0bcfc1ed6c812fd4bb6e171584655be414a + start_time: '2018-08-12 13:03:07.114456' + start_ts: 1534078987.11446 + state: 1 + task_id: 17785514 + version: 2.5.1 + volume_id: 9 + volume_name: rhel-8 +747067: + build_id: 747067 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:55:24.612450' + completion_ts: 1534085724.61245 + creation_event_id: 21107465 + creation_time: '2018-08-12 13:09:52.850192' + creation_ts: 1534079392.85019 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libdaemon?#644e7e22d523c6bbabab2fa9c73c751a46d0d7ad + id: 747067 + name: libdaemon + nvr: libdaemon-0.14-15.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 1884 + package_name: libdaemon + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/libdaemon#644e7e22d523c6bbabab2fa9c73c751a46d0d7ad + start_time: '2018-08-12 13:09:52.850192' + start_ts: 1534079392.85019 + state: 1 + task_id: 17785544 + version: '0.14' + volume_id: 9 + volume_name: rhel-8 +747074: + build_id: 747074 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:53:57.300974' + completion_ts: 1534085637.30097 + creation_event_id: 21107605 + creation_time: '2018-08-12 13:13:18.976345' + creation_ts: 1534079598.97635 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libedit?#890d3c284d03d3a7eabdb88083ca96d83704f329 + id: 747074 + name: libedit + nvr: libedit-3.1-23.20170329cvs.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 9682 + package_name: libedit + release: 23.20170329cvs.el8 + source: git://pkgs.devel.redhat.com/rpms/libedit#890d3c284d03d3a7eabdb88083ca96d83704f329 + start_time: '2018-08-12 13:13:18.976345' + start_ts: 1534079598.97635 + state: 1 + task_id: 17785562 + version: '3.1' + volume_id: 9 + volume_name: rhel-8 +747111: + build_id: 747111 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:08:57.071389' + completion_ts: 1534086537.07139 + creation_event_id: 21108028 + creation_time: '2018-08-12 13:22:41.029274' + creation_ts: 1534080161.02927 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libgpg-error?#ac00f435a46e5609f4a4504a87fed9edcd51f374 + id: 747111 + name: libgpg-error + nvr: libgpg-error-1.31-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 1923 + package_name: libgpg-error + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libgpg-error#ac00f435a46e5609f4a4504a87fed9edcd51f374 + start_time: '2018-08-12 13:22:41.029274' + start_ts: 1534080161.02927 + state: 1 + task_id: 17785598 + version: '1.31' + volume_id: 9 + volume_name: rhel-8 +747162: + build_id: 747162 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:33:56.497199' + completion_ts: 1534088036.4972 + creation_event_id: 21108620 + creation_time: '2018-08-12 13:34:13.974343' + creation_ts: 1534080853.97434 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmetalink?#9db18453d8f15058aa2ed53a91d96e95bc310122 + id: 747162 + name: libmetalink + nvr: libmetalink-0.1.3-7.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 54477 + package_name: libmetalink + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/libmetalink#9db18453d8f15058aa2ed53a91d96e95bc310122 + start_time: '2018-08-12 13:34:13.974343' + start_ts: 1534080853.97434 + state: 1 + task_id: 17785653 + version: 0.1.3 + volume_id: 9 + volume_name: rhel-8 +747165: + build_id: 747165 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:34:31.232025' + completion_ts: 1534088071.23202 + creation_event_id: 21108630 + creation_time: '2018-08-12 13:34:25.013399' + creation_ts: 1534080865.0134 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libksba?#5330764c41688700b0e275abd191571061788dd5 + id: 747165 + name: libksba + nvr: libksba-1.3.5-7.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11688 + package_name: libksba + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/libksba#5330764c41688700b0e275abd191571061788dd5 + start_time: '2018-08-12 13:34:25.013399' + start_ts: 1534080865.0134 + state: 1 + task_id: 17785638 + version: 1.3.5 + volume_id: 9 + volume_name: rhel-8 +747169: + build_id: 747169 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:46:54.830687' + completion_ts: 1534088814.83069 + creation_event_id: 21108650 + creation_time: '2018-08-12 13:34:45.649449' + creation_ts: 1534080885.64945 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmicrohttpd?#5ed67c25741897dd4eacc1aa1d41f273e2481a50 + id: 747169 + name: libmicrohttpd + nvr: libmicrohttpd-0.9.59-2.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 14927 + package_name: libmicrohttpd + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libmicrohttpd#5ed67c25741897dd4eacc1aa1d41f273e2481a50 + start_time: '2018-08-12 13:34:45.649449' + start_ts: 1534080885.64945 + state: 1 + task_id: 17785657 + version: 0.9.59 + volume_id: 9 + volume_name: rhel-8 +747178: + build_id: 747178 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:37:48.337794' + completion_ts: 1534088268.33779 + creation_event_id: 21108883 + creation_time: '2018-08-12 13:40:41.604620' + creation_ts: 1534081241.60462 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmnl?#a5c8227fcb05868272b9df79acb750dae0029e2c + id: 747178 + name: libmnl + nvr: libmnl-1.0.4-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 34807 + package_name: libmnl + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/libmnl#a5c8227fcb05868272b9df79acb750dae0029e2c + start_time: '2018-08-12 13:40:41.604620' + start_ts: 1534081241.60462 + state: 1 + task_id: 17785659 + version: 1.0.4 + volume_id: 9 + volume_name: rhel-8 +747179: + build_id: 747179 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:37:13.087519' + completion_ts: 1534088233.08752 + creation_event_id: 21108892 + creation_time: '2018-08-12 13:40:55.820562' + creation_ts: 1534081255.82056 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libnet?#8c3bc14720efec5dcef20cbadc0a4cfc88a627b4 + id: 747179 + name: libnet + nvr: libnet-1.1.6-15.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 12121 + package_name: libnet + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/libnet#8c3bc14720efec5dcef20cbadc0a4cfc88a627b4 + start_time: '2018-08-12 13:40:55.820562' + start_ts: 1534081255.82056 + state: 1 + task_id: 17785672 + version: 1.1.6 + volume_id: 9 + volume_name: rhel-8 +747183: + build_id: 747183 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:40:48.551027' + completion_ts: 1534088448.55103 + creation_event_id: 21108901 + creation_time: '2018-08-12 13:41:02.830031' + creation_ts: 1534081262.83003 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libnfnetlink?#3235f8ab5f6ae328805a595ba7a1a9c1fa687054 + id: 747183 + name: libnfnetlink + nvr: libnfnetlink-1.0.1-13.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 4017 + package_name: libnfnetlink + release: 13.el8 + source: git://pkgs.devel.redhat.com/rpms/libnfnetlink#3235f8ab5f6ae328805a595ba7a1a9c1fa687054 + start_time: '2018-08-12 13:41:02.830031' + start_ts: 1534081262.83003 + state: 1 + task_id: 17785677 + version: 1.0.1 + volume_id: 9 + volume_name: rhel-8 +747184: + build_id: 747184 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:39:42.115441' + completion_ts: 1534088382.11544 + creation_event_id: 21108902 + creation_time: '2018-08-12 13:41:03.451532' + creation_ts: 1534081263.45153 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libnetfilter_conntrack?#73c823c0228ebcaa3ad8cbac4cabfb9dee89ae6a + id: 747184 + name: libnetfilter_conntrack + nvr: libnetfilter_conntrack-1.0.6-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 12122 + package_name: libnetfilter_conntrack + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libnetfilter_conntrack#73c823c0228ebcaa3ad8cbac4cabfb9dee89ae6a + start_time: '2018-08-12 13:41:03.451532' + start_ts: 1534081263.45153 + state: 1 + task_id: 17785673 + version: 1.0.6 + volume_id: 9 + volume_name: rhel-8 +747205: + build_id: 747205 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:45:38.275190' + completion_ts: 1534088738.27519 + creation_event_id: 21109127 + creation_time: '2018-08-12 13:44:53.599159' + creation_ts: 1534081493.59916 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libnsl2?#3aaef48927091509dfedb2a21bf8b81f460f89e1 + id: 747205 + name: libnsl2 + nvr: libnsl2-1.2.0-2.20180605git4a062cf.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 64980 + package_name: libnsl2 + release: 2.20180605git4a062cf.el8 + source: git://pkgs.devel.redhat.com/rpms/libnsl2#3aaef48927091509dfedb2a21bf8b81f460f89e1 + start_time: '2018-08-12 13:44:53.599159' + start_ts: 1534081493.59916 + state: 1 + task_id: 17785682 + version: 1.2.0 + volume_id: 9 + volume_name: rhel-8 +747264: + build_id: 747264 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:12:13.618704' + completion_ts: 1534090333.6187 + creation_event_id: 21110150 + creation_time: '2018-08-12 14:04:01.286198' + creation_ts: 1534082641.2862 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsecret?#f41b10acabb6416a8c9f970dd6bf60360f8893bb + id: 747264 + name: libsecret + nvr: libsecret-0.18.6-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 36482 + package_name: libsecret + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libsecret#f41b10acabb6416a8c9f970dd6bf60360f8893bb + start_time: '2018-08-12 14:04:01.286198' + start_ts: 1534082641.2862 + state: 1 + task_id: 17785749 + version: 0.18.6 + volume_id: 9 + volume_name: rhel-8 +747270: + build_id: 747270 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:03:04.254933' + completion_ts: 1534089784.25493 + creation_event_id: 21110214 + creation_time: '2018-08-12 14:05:47.314542' + creation_ts: 1534082747.31454 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsigsegv?#67798a99164bf6a86104365323cdd1e96aa481ac + id: 747270 + name: libsigsegv + nvr: libsigsegv-2.11-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 14987 + package_name: libsigsegv + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libsigsegv#67798a99164bf6a86104365323cdd1e96aa481ac + start_time: '2018-08-12 14:05:47.314542' + start_ts: 1534082747.31454 + state: 1 + task_id: 17785757 + version: '2.11' + volume_id: 9 + volume_name: rhel-8 +747294: + build_id: 747294 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:11:01.829578' + completion_ts: 1534090261.82958 + creation_event_id: 21110510 + creation_time: '2018-08-12 14:13:26.044141' + creation_ts: 1534083206.04414 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libtasn1?#40055340ab66e9c05f1a56302a1a3e0cb25857c6 + id: 747294 + name: libtasn1 + nvr: libtasn1-4.13-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 4563 + package_name: libtasn1 + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libtasn1#40055340ab66e9c05f1a56302a1a3e0cb25857c6 + start_time: '2018-08-12 14:13:26.044141' + start_ts: 1534083206.04414 + state: 1 + task_id: 17785776 + version: '4.13' + volume_id: 9 + volume_name: rhel-8 +747306: + build_id: 747306 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:16:31.803475' + completion_ts: 1534090591.80347 + creation_event_id: 21110661 + creation_time: '2018-08-12 14:16:18.320642' + creation_ts: 1534083378.32064 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libverto?#c208df9dbddec8fb6bfc8ad0e57d10d183166ca0 + id: 747306 + name: libverto + nvr: libverto-0.3.0-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 35376 + package_name: libverto + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libverto#c208df9dbddec8fb6bfc8ad0e57d10d183166ca0 + start_time: '2018-08-12 14:16:18.320642' + start_ts: 1534083378.32064 + state: 1 + task_id: 17785799 + version: 0.3.0 + volume_id: 9 + volume_name: rhel-8 +747310: + build_id: 747310 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:11:54.794849' + completion_ts: 1534090314.79485 + creation_event_id: 21110692 + creation_time: '2018-08-12 14:17:03.061324' + creation_ts: 1534083423.06132 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libutempter?#e269bbe32b6035d279754a5ee33a9e017ab337b8 + id: 747310 + name: libutempter + nvr: libutempter-1.1.6-14.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 3387 + package_name: libutempter + release: 14.el8 + source: git://pkgs.devel.redhat.com/rpms/libutempter#e269bbe32b6035d279754a5ee33a9e017ab337b8 + start_time: '2018-08-12 14:17:03.061324' + start_ts: 1534083423.06132 + state: 1 + task_id: 17785792 + version: 1.1.6 + volume_id: 9 + volume_name: rhel-8 +747381: + build_id: 747381 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:39:51.161715' + completion_ts: 1534091991.16172 + creation_event_id: 21111660 + creation_time: '2018-08-12 14:42:59.063355' + creation_ts: 1534084979.06335 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libyaml?#23f1a0c7bf8a0013a158d71431038038f95ca6cb + id: 747381 + name: libyaml + nvr: libyaml-0.1.7-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11185 + package_name: libyaml + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libyaml#23f1a0c7bf8a0013a158d71431038038f95ca6cb + start_time: '2018-08-12 14:42:59.063355' + start_ts: 1534084979.06335 + state: 1 + task_id: 17785867 + version: 0.1.7 + volume_id: 9 + volume_name: rhel-8 +747521: + build_id: 747521 + cg_id: null + cg_name: null + completion_time: '2018-08-12 17:11:36.446563' + completion_ts: 1534093896.44656 + creation_event_id: 21113326 + creation_time: '2018-08-12 15:20:19.465758' + creation_ts: 1534087219.46576 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/mpfr?#7f705032792f282cb684476c9da5bcdbeaca46de + id: 747521 + name: mpfr + nvr: mpfr-3.1.6-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 10903 + package_name: mpfr + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/mpfr#7f705032792f282cb684476c9da5bcdbeaca46de + start_time: '2018-08-12 15:20:19.465758' + start_ts: 1534087219.46576 + state: 1 + task_id: 17786018 + version: 3.1.6 + volume_id: 9 + volume_name: rhel-8 +747570: + build_id: 747570 + cg_id: null + cg_name: null + completion_time: '2018-08-12 17:21:30.137854' + completion_ts: 1534094490.13785 + creation_event_id: 21113848 + creation_time: '2018-08-12 15:33:04.510729' + creation_ts: 1534087984.51073 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nano?#1f21d7edb50580997ba3eee974475fea429e3b4e + id: 747570 + name: nano + nvr: nano-2.9.8-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 2227 + package_name: nano + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/nano#1f21d7edb50580997ba3eee974475fea429e3b4e + start_time: '2018-08-12 15:33:04.510729' + start_ts: 1534087984.51073 + state: 1 + task_id: 17786065 + version: 2.9.8 + volume_id: 9 + volume_name: rhel-8 +747600: + build_id: 747600 + cg_id: null + cg_name: null + completion_time: '2018-08-12 17:17:16.796933' + completion_ts: 1534094236.79693 + creation_event_id: 21114185 + creation_time: '2018-08-12 15:40:13.596919' + creation_ts: 1534088413.59692 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/npth?#a4981bb31f79089dc8b3457db23d090cfec97e2a + id: 747600 + name: npth + nvr: npth-1.5-4.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 54480 + package_name: npth + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/npth#a4981bb31f79089dc8b3457db23d090cfec97e2a + start_time: '2018-08-12 15:40:13.596919' + start_ts: 1534088413.59692 + state: 1 + task_id: 17786095 + version: '1.5' + volume_id: 9 + volume_name: rhel-8 +748170: + build_id: 748170 + cg_id: null + cg_name: null + completion_time: '2018-08-12 19:04:11.377888' + completion_ts: 1534100651.37789 + creation_event_id: 21119711 + creation_time: '2018-08-12 17:18:48.428090' + creation_ts: 1534094328.42809 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pinentry?#8d983a7b9d6130a5dbcc3daa3db79290696031f6 + id: 748170 + name: pinentry + nvr: pinentry-1.1.0-2.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11686 + package_name: pinentry + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/pinentry#8d983a7b9d6130a5dbcc3daa3db79290696031f6 + start_time: '2018-08-12 17:18:48.428090' + start_ts: 1534094328.42809 + state: 1 + task_id: 17786663 + version: 1.1.0 + volume_id: 9 + volume_name: rhel-8 +748183: + build_id: 748183 + cg_id: null + cg_name: null + completion_time: '2018-08-12 18:55:57.298300' + completion_ts: 1534100157.2983 + creation_event_id: 21119883 + creation_time: '2018-08-12 17:21:52.822375' + creation_ts: 1534094512.82238 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pkgconf?#baaf7998f97184941e3b6e8a10bc58d036b22b28 + id: 748183 + name: pkgconf + nvr: pkgconf-1.4.2-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 63238 + package_name: pkgconf + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/pkgconf#baaf7998f97184941e3b6e8a10bc58d036b22b28 + start_time: '2018-08-12 17:21:52.822375' + start_ts: 1534094512.82238 + state: 1 + task_id: 17786670 + version: 1.4.2 + volume_id: 9 + volume_name: rhel-8 +748188: + build_id: 748188 + cg_id: null + cg_name: null + completion_time: '2018-08-12 17:24:18.931684' + completion_ts: 1534094658.93168 + creation_event_id: 21119932 + creation_time: '2018-08-12 17:22:42.041177' + creation_ts: 1534094562.04118 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/publicsuffix-list?#33aaa9362fba95857a515475feaff035f59b3384 + id: 748188 + name: publicsuffix-list + nvr: publicsuffix-list-20180723-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 59982 + package_name: publicsuffix-list + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/publicsuffix-list#33aaa9362fba95857a515475feaff035f59b3384 + start_time: '2018-08-12 17:22:42.041177' + start_ts: 1534094562.04118 + state: 1 + task_id: 17786703 + version: '20180723' + volume_id: 9 + volume_name: rhel-8 +748203: + build_id: 748203 + cg_id: null + cg_name: null + completion_time: '2018-08-12 18:58:51.671024' + completion_ts: 1534100331.67102 + creation_event_id: 21120032 + creation_time: '2018-08-12 17:24:17.518917' + creation_ts: 1534094657.51892 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/protobuf-c?#0bf2c8526229097e2d1c9e3cb2878649898e06ce + id: 748203 + name: protobuf-c + nvr: protobuf-c-1.3.0-4.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 51740 + package_name: protobuf-c + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/protobuf-c#0bf2c8526229097e2d1c9e3cb2878649898e06ce + start_time: '2018-08-12 17:24:17.518917' + start_ts: 1534094657.51892 + state: 1 + task_id: 17786702 + version: 1.3.0 + volume_id: 9 + volume_name: rhel-8 +748209: + build_id: 748209 + cg_id: null + cg_name: null + completion_time: '2018-08-12 18:59:22.975902' + completion_ts: 1534100362.9759 + creation_event_id: 21120132 + creation_time: '2018-08-12 17:25:46.828826' + creation_ts: 1534094746.82883 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/popt?#a40fa01f1b21e4e29cd87d6a7a1dc85774127334 + id: 748209 + name: popt + nvr: popt-1.16-14.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 2525 + package_name: popt + release: 14.el8 + source: git://pkgs.devel.redhat.com/rpms/popt#a40fa01f1b21e4e29cd87d6a7a1dc85774127334 + start_time: '2018-08-12 17:25:46.828826' + start_ts: 1534094746.82883 + state: 1 + task_id: 17786678 + version: '1.16' + volume_id: 9 + volume_name: rhel-8 +748219: + build_id: 748219 + cg_id: null + cg_name: null + completion_time: '2018-08-12 19:00:38.382074' + completion_ts: 1534100438.38207 + creation_event_id: 21120161 + creation_time: '2018-08-12 17:26:06.996916' + creation_ts: 1534094766.99692 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/polkit-pkla-compat?#d341692dde708aaa2b7648b0ade25734c06cb63f + id: 748219 + name: polkit-pkla-compat + nvr: polkit-pkla-compat-0.1-12.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 42333 + package_name: polkit-pkla-compat + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/polkit-pkla-compat#d341692dde708aaa2b7648b0ade25734c06cb63f + start_time: '2018-08-12 17:26:06.996916' + start_ts: 1534094766.99692 + state: 1 + task_id: 17786680 + version: '0.1' + volume_id: 9 + volume_name: rhel-8 +748227: + build_id: 748227 + cg_id: null + cg_name: null + completion_time: '2018-08-12 18:57:36.025986' + completion_ts: 1534100256.02599 + creation_event_id: 21120279 + creation_time: '2018-08-12 17:28:09.547769' + creation_ts: 1534094889.54777 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/PyYAML?#4984564bf61a869bd3303c0ec3044b97fff665d9 + id: 748227 + name: PyYAML + nvr: PyYAML-3.12-12.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11184 + package_name: PyYAML + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/PyYAML#4984564bf61a869bd3303c0ec3044b97fff665d9 + start_time: '2018-08-12 17:28:09.547769' + start_ts: 1534094889.54777 + state: 1 + task_id: 17786887 + version: '3.12' + volume_id: 9 + volume_name: rhel-8 +748275: + build_id: 748275 + cg_id: null + cg_name: null + completion_time: '2018-08-12 19:24:46.240535' + completion_ts: 1534101886.24054 + creation_event_id: 21120932 + creation_time: '2018-08-12 17:46:49.567268' + creation_ts: 1534096009.56727 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/readline?#a73f0afebb2bcab9432598512ed4c166710381a4 + id: 748275 + name: readline + nvr: readline-7.0-10.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 2636 + package_name: readline + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/readline#a73f0afebb2bcab9432598512ed4c166710381a4 + start_time: '2018-08-12 17:46:49.567268' + start_ts: 1534096009.56727 + state: 1 + task_id: 17786949 + version: '7.0' + volume_id: 9 + volume_name: rhel-8 +748349: + build_id: 748349 + cg_id: null + cg_name: null + completion_time: '2018-08-12 19:48:08.032071' + completion_ts: 1534103288.03207 + creation_event_id: 21121703 + creation_time: '2018-08-12 18:04:53.556126' + creation_ts: 1534097093.55613 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/shared-mime-info?#5a3fe534a96ff6e208334eb8f8b7011ae84680b1 + id: 748349 + name: shared-mime-info + nvr: shared-mime-info-1.9-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 3016 + package_name: shared-mime-info + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/shared-mime-info#5a3fe534a96ff6e208334eb8f8b7011ae84680b1 + start_time: '2018-08-12 18:04:53.556126' + start_ts: 1534097093.55613 + state: 1 + task_id: 17787038 + version: '1.9' + volume_id: 9 + volume_name: rhel-8 +748373: + build_id: 748373 + cg_id: null + cg_name: null + completion_time: '2018-08-12 20:02:23.109089' + completion_ts: 1534104143.10909 + creation_event_id: 21121916 + creation_time: '2018-08-12 18:09:15.065849' + creation_ts: 1534097355.06585 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/slang?#9ff81d0957c221da43a2e914c1c4c20181852448 + id: 748373 + name: slang + nvr: slang-2.3.2-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 3026 + package_name: slang + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/slang#9ff81d0957c221da43a2e914c1c4c20181852448 + start_time: '2018-08-12 18:09:15.065849' + start_ts: 1534097355.06585 + state: 1 + task_id: 17787065 + version: 2.3.2 + volume_id: 9 + volume_name: rhel-8 +748444: + build_id: 748444 + cg_id: null + cg_name: null + completion_time: '2018-08-12 20:16:02.859745' + completion_ts: 1534104962.85975 + creation_event_id: 21122797 + creation_time: '2018-08-12 18:27:52.287587' + creation_ts: 1534098472.28759 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/timedatex?#7c507ad3df664e9074147a88d3a46c75c4f43211 + id: 748444 + name: timedatex + nvr: timedatex-0.5-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 64738 + package_name: timedatex + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/timedatex#7c507ad3df664e9074147a88d3a46c75c4f43211 + start_time: '2018-08-12 18:27:52.287587' + start_ts: 1534098472.28759 + state: 1 + task_id: 17787175 + version: '0.5' + volume_id: 9 + volume_name: rhel-8 +748451: + build_id: 748451 + cg_id: null + cg_name: null + completion_time: '2018-08-12 20:22:02.735314' + completion_ts: 1534105322.73531 + creation_event_id: 21122870 + creation_time: '2018-08-12 18:29:22.542660' + creation_ts: 1534098562.54266 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/tmux?#e709df201f3f11ed7a86a77beb9dfa7d533a429b + id: 748451 + name: tmux + nvr: tmux-2.7-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 36652 + package_name: tmux + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/tmux#e709df201f3f11ed7a86a77beb9dfa7d533a429b + start_time: '2018-08-12 18:29:22.542660' + start_ts: 1534098562.54266 + state: 1 + task_id: 17787183 + version: '2.7' + volume_id: 9 + volume_name: rhel-8 +748512: + build_id: 748512 + cg_id: null + cg_name: null + completion_time: '2018-08-12 21:04:51.899051' + completion_ts: 1534107891.89905 + creation_event_id: 21123685 + creation_time: '2018-08-12 18:44:56.548796' + creation_ts: 1534099496.5488 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/userspace-rcu?#7de40c5a43f4bb28a7627a756d4229eac1b821fb + id: 748512 + name: userspace-rcu + nvr: userspace-rcu-0.10.1-2.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 51481 + package_name: userspace-rcu + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/userspace-rcu#7de40c5a43f4bb28a7627a756d4229eac1b821fb + start_time: '2018-08-12 18:44:56.548796' + start_ts: 1534099496.5488 + state: 1 + task_id: 17787236 + version: 0.10.1 + volume_id: 9 + volume_name: rhel-8 +748608: + build_id: 748608 + cg_id: null + cg_name: null + completion_time: '2018-08-12 21:16:29.666011' + completion_ts: 1534108589.66601 + creation_event_id: 21124802 + creation_time: '2018-08-12 19:10:59.916596' + creation_ts: 1534101059.9166 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/yajl?#a7fd8cd5f3c98df925a98fcc3fbfb49e775c9e48 + id: 748608 + name: yajl + nvr: yajl-2.1.0-10.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 18943 + package_name: yajl + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/yajl#a7fd8cd5f3c98df925a98fcc3fbfb49e775c9e48 + start_time: '2018-08-12 19:10:59.916596' + start_ts: 1534101059.9166 + state: 1 + task_id: 17787334 + version: 2.1.0 + volume_id: 9 + volume_name: rhel-8 +749473: + build_id: 749473 + cg_id: null + cg_name: null + completion_time: '2018-08-13 14:12:16.082283' + completion_ts: 1534169536.08228 + creation_event_id: 21144768 + creation_time: '2018-08-13 14:03:32.211337' + creation_ts: 1534169012.21134 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/c-ares#95a95008957a75c13ae139e45d50117d042eceea + id: 749473 + name: c-ares + nvr: c-ares-1.13.0-5.el8 + owner_id: 510 + owner_name: jhrozek + package_id: 13587 + package_name: c-ares + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/c-ares#95a95008957a75c13ae139e45d50117d042eceea + start_time: '2018-08-13 14:03:32.211337' + start_ts: 1534169012.21134 + state: 1 + task_id: 17827770 + version: 1.13.0 + volume_id: 9 + volume_name: rhel-8 +749502: + build_id: 749502 + cg_id: null + cg_name: null + completion_time: '2018-08-13 14:15:54.952490' + completion_ts: 1534169754.95249 + creation_event_id: 21145021 + creation_time: '2018-08-13 14:13:53.629119' + creation_ts: 1534169633.62912 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/bash-completion#2a88531d5bbcb927309faa0d5553fa0516de4fce + id: 749502 + name: bash-completion + nvr: bash-completion-2.7-5.el8 + owner_id: 2577 + owner_name: svashish + package_id: 4502 + package_name: bash-completion + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/bash-completion#2a88531d5bbcb927309faa0d5553fa0516de4fce + start_time: '2018-08-13 14:13:53.629119' + start_ts: 1534169633.62912 + state: 1 + task_id: 17828169 + version: '2.7' + volume_id: 9 + volume_name: rhel-8 +753876: + build_id: 753876 + cg_id: null + cg_name: null + completion_time: '2018-08-17 20:50:29.069375' + completion_ts: 1534539029.06938 + creation_event_id: 21240930 + creation_time: '2018-08-17 20:44:58.677168' + creation_ts: 1534538698.67717 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libunistring#10c31f1b7221e427e7ae5925cd95860117eb0ccf + id: 753876 + name: libunistring + nvr: libunistring-0.9.9-3.el8 + owner_id: 1972 + owner_name: mfabian + package_id: 32931 + package_name: libunistring + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libunistring#10c31f1b7221e427e7ae5925cd95860117eb0ccf + start_time: '2018-08-17 20:44:58.677168' + start_ts: 1534538698.67717 + state: 1 + task_id: 17936032 + version: 0.9.9 + volume_id: 9 + volume_name: rhel-8 +759681: + build_id: 759681 + cg_id: null + cg_name: null + completion_time: '2018-08-29 07:01:58.130213' + completion_ts: 1535526118.13021 + creation_event_id: 21374514 + creation_time: '2018-08-29 06:58:02.301954' + creation_ts: 1535525882.30195 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/quota#904b5697818bca0f3a691e09c4e35855d5009443 + id: 759681 + name: quota + nvr: quota-4.04-10.el8 + owner_id: 1207 + owner_name: ppisar + package_id: 2623 + package_name: quota + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/quota#904b5697818bca0f3a691e09c4e35855d5009443 + start_time: '2018-08-29 06:58:02.301954' + start_ts: 1535525882.30195 + state: 1 + task_id: 18083879 + version: '4.04' + volume_id: 9 + volume_name: rhel-8 +761272: + build_id: 761272 + cg_id: null + cg_name: null + completion_time: '2018-09-03 10:23:16.385231' + completion_ts: 1535970196.38523 + creation_event_id: 21426191 + creation_time: '2018-09-03 10:15:29.365549' + creation_ts: 1535969729.36555 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pcre#72e01e347afd513a5c84669b0fd0c5661794ac19 + id: 761272 + name: pcre + nvr: pcre-8.42-4.el8 + owner_id: 1207 + owner_name: ppisar + package_id: 2369 + package_name: pcre + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/pcre#72e01e347afd513a5c84669b0fd0c5661794ac19 + start_time: '2018-09-03 10:15:29.365549' + start_ts: 1535969729.36555 + state: 1 + task_id: 18137329 + version: '8.42' + volume_id: 9 + volume_name: rhel-8 +774503: + build_id: 774503 + cg_id: null + cg_name: null + completion_time: '2018-09-28 10:22:12.525048' + completion_ts: 1538130132.52505 + creation_event_id: 21917849 + creation_time: '2018-09-28 10:18:54.435901' + creation_ts: 1538129934.4359 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gdbm#e60961ea5ba78ead745dc35d7982464b3fa8241a + id: 774503 + name: gdbm + nvr: gdbm-1.18-1.el8 + owner_id: 2769 + owner_name: mskalick + package_id: 527 + package_name: gdbm + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/gdbm#e60961ea5ba78ead745dc35d7982464b3fa8241a + start_time: '2018-09-28 10:18:54.435901' + start_ts: 1538129934.4359 + state: 1 + task_id: 18569332 + version: '1.18' + volume_id: 9 + volume_name: rhel-8 +779027: + build_id: 779027 + cg_id: null + cg_name: null + completion_time: '2018-10-09 17:03:12.027995' + completion_ts: 1539104592.028 + creation_event_id: 22048356 + creation_time: '2018-10-09 16:58:23.717154' + creation_ts: 1539104303.71715 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/lzo#2b6a69132c52a9a85baa86ae2255f09e36fc58fd + id: 779027 + name: lzo + nvr: lzo-2.08-14.el8 + owner_id: 1122 + owner_name: jskarvad + package_id: 2073 + package_name: lzo + release: 14.el8 + source: git://pkgs.devel.redhat.com/rpms/lzo#2b6a69132c52a9a85baa86ae2255f09e36fc58fd + start_time: '2018-10-09 16:58:23.717154' + start_ts: 1539104303.71715 + state: 1 + task_id: 18703535 + version: '2.08' + volume_id: 9 + volume_name: rhel-8 +779940: + build_id: 779940 + cg_id: null + cg_name: null + completion_time: '2018-10-10 15:19:10.997138' + completion_ts: 1539184750.99714 + creation_event_id: 22059478 + creation_time: '2018-10-10 15:10:16.755053' + creation_ts: 1539184216.75505 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libevent#aaced9c7a0e53f74b9f7a8e4c24e8c5eb2d36995 + id: 779940 + name: libevent + nvr: libevent-2.1.8-5.el8 + owner_id: 3540 + owner_name: olysonek + package_id: 1892 + package_name: libevent + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libevent#aaced9c7a0e53f74b9f7a8e4c24e8c5eb2d36995 + start_time: '2018-10-10 15:10:16.755053' + start_ts: 1539184216.75505 + state: 1 + task_id: 18717975 + version: 2.1.8 + volume_id: 9 + volume_name: rhel-8 +782991: + build_id: 782991 + cg_id: null + cg_name: null + completion_time: '2018-10-16 14:03:23.716476' + completion_ts: 1539698603.71648 + creation_event_id: 22149041 + creation_time: '2018-10-16 13:59:22.133802' + creation_ts: 1539698362.1338 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/json-glib#9c5843980e980d2c8163e684ff2b81a7acf49bad + id: 782991 + name: json-glib + nvr: json-glib-1.4.4-1.el8 + owner_id: 3004 + owner_name: klember + package_id: 14701 + package_name: json-glib + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/json-glib#9c5843980e980d2c8163e684ff2b81a7acf49bad + start_time: '2018-10-16 13:59:22.133802' + start_ts: 1539698362.1338 + state: 1 + task_id: 18804462 + version: 1.4.4 + volume_id: 9 + volume_name: rhel-8 +786340: + build_id: 786340 + cg_id: null + cg_name: null + completion_time: '2018-10-22 14:41:47.009968' + completion_ts: 1540219307.00997 + creation_event_id: 22209644 + creation_time: '2018-10-22 14:37:45.009270' + creation_ts: 1540219065.00927 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libpwquality#c7c45579e03096ff3dc09c212975a7ef8e7f425c + id: 786340 + name: libpwquality + nvr: libpwquality-1.4.0-9.el8 + owner_id: 118 + owner_name: tmraz + package_id: 35375 + package_name: libpwquality + release: 9.el8 + source: git://pkgs.devel.redhat.com/rpms/libpwquality#c7c45579e03096ff3dc09c212975a7ef8e7f425c + start_time: '2018-10-22 14:37:45.009270' + start_ts: 1540219065.00927 + state: 1 + task_id: 18873667 + version: 1.4.0 + volume_id: 9 + volume_name: rhel-8 +786476: + build_id: 786476 + cg_id: null + cg_name: null + completion_time: '2018-10-22 20:49:55.246459' + completion_ts: 1540241395.24646 + creation_event_id: 22211673 + creation_time: '2018-10-22 20:46:46.159298' + creation_ts: 1540241206.1593 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/sysfsutils#09682941d31f9235f6679015ea7c338f70fdd48f + id: 786476 + name: sysfsutils + nvr: sysfsutils-2.1.0-24.el8 + owner_id: 135 + owner_name: nhorman + package_id: 3110 + package_name: sysfsutils + release: 24.el8 + source: git://pkgs.devel.redhat.com/rpms/sysfsutils#09682941d31f9235f6679015ea7c338f70fdd48f + start_time: '2018-10-22 20:46:46.159298' + start_ts: 1540241206.1593 + state: 1 + task_id: 18877412 + version: 2.1.0 + volume_id: 9 + volume_name: rhel-8 +788201: + build_id: 788201 + cg_id: null + cg_name: null + completion_time: '2018-10-25 14:51:48.550960' + completion_ts: 1540479108.55096 + creation_event_id: 22258979 + creation_time: '2018-10-25 14:40:43.447206' + creation_ts: 1540478443.44721 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/avahi#f51d43c4b1f0208c3fcced7d251fd68eb9e61de5 + id: 788201 + name: avahi + nvr: avahi-0.7-19.el8 + owner_id: 1614 + owner_name: msekleta + package_id: 1456 + package_name: avahi + release: 19.el8 + source: git://pkgs.devel.redhat.com/rpms/avahi#f51d43c4b1f0208c3fcced7d251fd68eb9e61de5 + start_time: '2018-10-25 14:40:43.447206' + start_ts: 1540478443.44721 + state: 1 + task_id: 18927283 + version: '0.7' + volume_id: 9 + volume_name: rhel-8 +794639: + build_id: 794639 + cg_id: null + cg_name: null + completion_time: '2018-11-05 14:26:15.487245' + completion_ts: 1541427975.48725 + creation_event_id: 22368087 + creation_time: '2018-11-05 14:18:25.126513' + creation_ts: 1541427505.12651 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/findutils#6f1548a04bb65985b57d417d8830c068b697dc8d + id: 794639 + name: findutils + nvr: findutils-4.6.0-20.el8 + owner_id: 889 + owner_name: kdudka + package_id: 465 + package_name: findutils + release: 20.el8 + source: git://pkgs.devel.redhat.com/rpms/findutils#6f1548a04bb65985b57d417d8830c068b697dc8d + start_time: '2018-11-05 14:18:25.126513' + start_ts: 1541427505.12651 + state: 1 + task_id: 19062924 + version: 4.6.0 + volume_id: 9 + volume_name: rhel-8 +801232: + build_id: 801232 + cg_id: null + cg_name: null + completion_time: '2018-11-16 09:44:38.296699' + completion_ts: 1542361478.2967 + creation_event_id: 22486391 + creation_time: '2018-11-16 09:39:13.158890' + creation_ts: 1542361153.15889 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/fuse#53d9ac88a2ebf9131a5424751716256c1b38f2d1 + id: 801232 + name: fuse + nvr: fuse-2.9.7-12.el8 + owner_id: 3423 + owner_name: mszeredi + package_id: 11909 + package_name: fuse + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/fuse#53d9ac88a2ebf9131a5424751716256c1b38f2d1 + start_time: '2018-11-16 09:39:13.158890' + start_ts: 1542361153.15889 + state: 1 + task_id: 19197768 + version: 2.9.7 + volume_id: 9 + volume_name: rhel-8 +803342: + build_id: 803342 + cg_id: null + cg_name: null + completion_time: '2018-11-22 14:10:28.869324' + completion_ts: 1542895828.86932 + creation_event_id: 22529207 + creation_time: '2018-11-22 14:07:12.750976' + creation_ts: 1542895632.75098 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/xz#6d2e8135582cdc986dad07f7131791bb52f1c3e4 + id: 803342 + name: xz + nvr: xz-5.2.4-3.el8 + owner_id: 1613 + owner_name: praiskup + package_id: 17973 + package_name: xz + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/xz#6d2e8135582cdc986dad07f7131791bb52f1c3e4 + start_time: '2018-11-22 14:07:12.750976' + start_ts: 1542895632.75098 + state: 1 + task_id: 19254961 + version: 5.2.4 + volume_id: 9 + volume_name: rhel-8 +804625: + build_id: 804625 + cg_id: null + cg_name: null + completion_time: '2018-11-26 15:33:41.411978' + completion_ts: 1543246421.41198 + creation_event_id: 22546128 + creation_time: '2018-11-26 15:30:28.312216' + creation_ts: 1543246228.31222 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cracklib#89e354f1cbadcb79257a8d0dbe802b3aa76196b5 + id: 804625 + name: cracklib + nvr: cracklib-2.9.6-15.el8 + owner_id: 118 + owner_name: tmraz + package_id: 299 + package_name: cracklib + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/cracklib#89e354f1cbadcb79257a8d0dbe802b3aa76196b5 + start_time: '2018-11-26 15:30:28.312216' + start_ts: 1543246228.31222 + state: 1 + task_id: 19280802 + version: 2.9.6 + volume_id: 9 + volume_name: rhel-8 +809379: + build_id: 809379 + cg_id: null + cg_name: null + completion_time: '2018-12-05 10:56:15.918215' + completion_ts: 1544007375.91822 + creation_event_id: 22613030 + creation_time: '2018-12-05 10:50:49.323102' + creation_ts: 1544007049.3231 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/groff#960ea0116558d4c91c410ac8dbcc479b18d3c364 + id: 809379 + name: groff + nvr: groff-1.22.3-18.el8 + owner_id: 3084 + owner_name: nforro + package_id: 805 + package_name: groff + release: 18.el8 + source: git://pkgs.devel.redhat.com/rpms/groff#960ea0116558d4c91c410ac8dbcc479b18d3c364 + start_time: '2018-12-05 10:50:49.323102' + start_ts: 1544007049.3231 + state: 1 + task_id: 19377890 + version: 1.22.3 + volume_id: 9 + volume_name: rhel-8 +829223: + build_id: 829223 + cg_id: null + cg_name: null + completion_time: '2019-01-16 13:08:30.340147' + completion_ts: 1547644110.34015 + creation_event_id: 23087255 + creation_time: '2019-01-16 13:00:55.009040' + creation_ts: 1547643655.00904 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ncurses#3a9407e31f9f866583b7775b9cbc994b5aa754bd + id: 829223 + name: ncurses + nvr: ncurses-6.1-7.20180224.el8 + owner_id: 172 + owner_name: mlichvar + package_id: 2238 + package_name: ncurses + release: 7.20180224.el8 + source: git://pkgs.devel.redhat.com/rpms/ncurses#3a9407e31f9f866583b7775b9cbc994b5aa754bd + start_time: '2019-01-16 13:00:55.009040' + start_ts: 1547643655.00904 + state: 1 + task_id: 19830598 + version: '6.1' + volume_id: 9 + volume_name: rhel-8 +850332: + build_id: 850332 + cg_id: null + cg_name: null + completion_time: '2019-02-22 13:46:49.049972' + completion_ts: 1550843209.04997 + creation_event_id: 23452187 + creation_time: '2019-02-22 13:43:46.205203' + creation_ts: 1550843026.2052 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dosfstools#46b86fc2b64a71b323493f9c70b3337ea56d4245 + id: 850332 + name: dosfstools + nvr: dosfstools-4.1-6.el8 + owner_id: 1122 + owner_name: jskarvad + package_id: 384 + package_name: dosfstools + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/dosfstools#46b86fc2b64a71b323493f9c70b3337ea56d4245 + start_time: '2019-02-22 13:43:46.205203' + start_ts: 1550843026.2052 + state: 1 + task_id: 20328418 + version: '4.1' + volume_id: 9 + volume_name: rhel-8 +868991: + build_id: 868991 + cg_id: null + cg_name: null + completion_time: '2019-03-27 22:32:10.174603' + completion_ts: 1553725930.1746 + creation_event_id: 23788570 + creation_time: '2019-03-27 22:29:08.511640' + creation_ts: 1553725748.51164 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/isns-utils#aa618189458941630f46b78077e14c471c7cfc88 + id: 868991 + name: isns-utils + nvr: isns-utils-0.99-1.el8 + owner_id: 1955 + owner_name: cleech + package_id: 4381 + package_name: isns-utils + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/isns-utils#aa618189458941630f46b78077e14c471c7cfc88 + start_time: '2019-03-27 22:29:08.511640' + start_ts: 1553725748.51164 + state: 1 + task_id: 20749467 + version: '0.99' + volume_id: 9 + volume_name: rhel-8 +869233: + build_id: 869233 + cg_id: null + cg_name: null + completion_time: '2019-03-28 13:40:13.188612' + completion_ts: 1553780413.18861 + creation_event_id: 23793653 + creation_time: '2019-03-28 13:33:25.948443' + creation_ts: 1553780005.94844 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nmap#67c94ed3b213994bf8b85effdf7c95d4e979d112 + id: 869233 + name: nmap + nvr: nmap-7.70-5.el8 + owner_id: 2110 + owner_name: pzhukov + package_id: 2275 + package_name: nmap + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/nmap#67c94ed3b213994bf8b85effdf7c95d4e979d112 + start_time: '2019-03-28 13:33:25.948443' + start_ts: 1553780005.94844 + state: 1 + task_id: 20756160 + version: '7.70' + volume_id: 9 + volume_name: rhel-8 +870190: + build_id: 870190 + cg_id: null + cg_name: null + completion_time: '2019-03-29 11:00:30.089485' + completion_ts: 1553857230.08948 + creation_event_id: 23805890 + creation_time: '2019-03-29 10:52:56.046055' + creation_ts: 1553856776.04606 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/p11-kit#24aa64c504e160445648c9978c288a2df6bc7100 + id: 870190 + name: p11-kit + nvr: p11-kit-0.23.14-5.el8_0 + owner_id: 1285 + owner_name: dueno + package_id: 33978 + package_name: p11-kit + release: 5.el8_0 + source: git://pkgs.devel.redhat.com/rpms/p11-kit#24aa64c504e160445648c9978c288a2df6bc7100 + start_time: '2019-03-29 10:52:56.046055' + start_ts: 1553856776.04606 + state: 1 + task_id: 20783994 + version: 0.23.14 + volume_id: 9 + volume_name: rhel-8 +872752: + build_id: 872752 + cg_id: null + cg_name: null + completion_time: '2019-04-03 10:31:24.154475' + completion_ts: 1554287484.15447 + creation_event_id: 23928316 + creation_time: '2019-04-03 10:28:22.192310' + creation_ts: 1554287302.19231 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsepol#f34bf267b93e0d7bbfa5a5b648dad887b511fd74 + id: 872752 + name: libsepol + nvr: libsepol-2.9-1.el8 + owner_id: 830 + owner_name: plautrba + package_id: 1970 + package_name: libsepol + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libsepol#f34bf267b93e0d7bbfa5a5b648dad887b511fd74 + start_time: '2019-04-03 10:28:22.192310' + start_ts: 1554287302.19231 + state: 1 + task_id: 20906533 + version: '2.9' + volume_id: 9 + volume_name: rhel-8 +873521: + build_id: 873521 + cg_id: null + cg_name: null + completion_time: '2019-04-04 15:14:49.959423' + completion_ts: 1554390889.95942 + creation_event_id: 23970204 + creation_time: '2019-04-04 15:06:12.952461' + creation_ts: 1554390372.95246 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nss-altfiles#9d868e53a5cdb7c9bc97c307ea2bd53c70671306 + id: 873521 + name: nss-altfiles + nvr: nss-altfiles-2.18.1-12.el8 + owner_id: 60 + owner_name: walters + package_id: 46307 + package_name: nss-altfiles + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/nss-altfiles#9d868e53a5cdb7c9bc97c307ea2bd53c70671306 + start_time: '2019-04-04 15:06:12.952461' + start_ts: 1554390372.95246 + state: 1 + task_id: 20946091 + version: 2.18.1 + volume_id: 9 + volume_name: rhel-8 +874097: + build_id: 874097 + cg_id: null + cg_name: null + completion_time: '2019-04-05 17:20:35.945575' + completion_ts: 1554484835.94557 + creation_event_id: 24000311 + creation_time: '2019-04-05 17:17:34.329446' + creation_ts: 1554484654.32945 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/checkpolicy#c7ba04ba47d52ce2c048b848706008c9084c7798 + id: 874097 + name: checkpolicy + nvr: checkpolicy-2.9-1.el8 + owner_id: 830 + owner_name: plautrba + package_id: 250 + package_name: checkpolicy + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/checkpolicy#c7ba04ba47d52ce2c048b848706008c9084c7798 + start_time: '2019-04-05 17:17:34.329446' + start_ts: 1554484654.32945 + state: 1 + task_id: 20978774 + version: '2.9' + volume_id: 9 + volume_name: rhel-8 +898379: + build_id: 898379 + cg_id: null + cg_name: null + completion_time: '2019-05-16 08:44:59.580670' + completion_ts: 1557996299.58067 + creation_event_id: 24674654 + creation_time: '2019-05-16 08:41:58.397846' + creation_ts: 1557996118.39785 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ethtool#8dc0a19ab996bd06b84ba715f6afee506abfbd1a + id: 898379 + name: ethtool + nvr: ethtool-5.0-2.el8 + owner_id: 568 + owner_name: ivecera + package_id: 438 + package_name: ethtool + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/ethtool#8dc0a19ab996bd06b84ba715f6afee506abfbd1a + start_time: '2019-05-16 08:41:58.397846' + start_ts: 1557996118.39785 + state: 1 + task_id: 21713422 + version: '5.0' + volume_id: 9 + volume_name: rhel-8 +900993: + build_id: 900993 + cg_id: null + cg_name: null + completion_time: '2019-05-22 07:24:13.465141' + completion_ts: 1558509853.46514 + creation_event_id: 24753619 + creation_time: '2019-05-22 07:19:41.716014' + creation_ts: 1558509581.71601 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/chrony#eefb1e59d6687c1e22fe3042542a28cc3d5f9329 + id: 900993 + name: chrony + nvr: chrony-3.5-1.el8 + owner_id: 172 + owner_name: mlichvar + package_id: 13650 + package_name: chrony + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/chrony#eefb1e59d6687c1e22fe3042542a28cc3d5f9329 + start_time: '2019-05-22 07:19:41.716014' + start_ts: 1558509581.71601 + state: 1 + task_id: 21784857 + version: '3.5' + volume_id: 9 + volume_name: rhel-8 +906174: + build_id: 906174 + cg_id: null + cg_name: null + completion_time: '2019-06-03 15:47:11.751637' + completion_ts: 1559576831.75164 + creation_event_id: 24912887 + creation_time: '2019-06-03 15:44:10.717077' + creation_ts: 1559576650.71708 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/lua#5cbfdee3d1907f553f0998853facb24e52016982 + id: 906174 + name: lua + nvr: lua-5.3.4-11.el8 + owner_id: 230 + owner_name: ffesti + package_id: 10836 + package_name: lua + release: 11.el8 + source: git://pkgs.devel.redhat.com/rpms/lua#5cbfdee3d1907f553f0998853facb24e52016982 + start_time: '2019-06-03 15:44:10.717077' + start_ts: 1559576650.71708 + state: 1 + task_id: 21962566 + version: 5.3.4 + volume_id: 9 + volume_name: rhel-8 +906793: + build_id: 906793 + cg_id: null + cg_name: null + completion_time: '2019-06-04 23:31:32.073733' + completion_ts: 1559691092.07373 + creation_event_id: 24988033 + creation_time: '2019-06-04 23:27:38.411084' + creation_ts: 1559690858.41108 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libaio#cf1ff8eb4cc94d6c262fa273f51f667d76a18c52 + id: 906793 + name: libaio + nvr: libaio-0.3.112-1.el8 + owner_id: 119 + owner_name: jmoyer + package_id: 1869 + package_name: libaio + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libaio#cf1ff8eb4cc94d6c262fa273f51f667d76a18c52 + start_time: '2019-06-04 23:27:38.411084' + start_ts: 1559690858.41108 + state: 1 + task_id: 22006495 + version: 0.3.112 + volume_id: 9 + volume_name: rhel-8 +909244: + build_id: 909244 + cg_id: null + cg_name: null + completion_time: '2019-06-10 10:27:43.028174' + completion_ts: 1560162463.02817 + creation_event_id: 25054431 + creation_time: '2019-06-10 10:23:05.764166' + creation_ts: 1560162185.76417 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libidn2#844711723d62e709fb16cc01b988468b226e9659 + id: 909244 + name: libidn2 + nvr: libidn2-2.2.0-1.el8 + owner_id: 172 + owner_name: mlichvar + package_id: 54476 + package_name: libidn2 + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libidn2#844711723d62e709fb16cc01b988468b226e9659 + start_time: '2019-06-10 10:23:05.764166' + start_ts: 1560162185.76417 + state: 1 + task_id: 22083916 + version: 2.2.0 + volume_id: 9 + volume_name: rhel-8 +909547: + build_id: 909547 + cg_id: null + cg_name: null + completion_time: '2019-06-10 19:56:58.079218' + completion_ts: 1560196618.07922 + creation_event_id: 25061053 + creation_time: '2019-06-10 19:53:13.416764' + creation_ts: 1560196393.41676 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/trousers#91e8dc3f521fecf76b49031f00c9ee7976a1acdf + id: 909547 + name: trousers + nvr: trousers-0.3.14-4.el8 + owner_id: 2698 + owner_name: jsnitsel + package_id: 3953 + package_name: trousers + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/trousers#91e8dc3f521fecf76b49031f00c9ee7976a1acdf + start_time: '2019-06-10 19:53:13.416764' + start_ts: 1560196393.41676 + state: 1 + task_id: 22094029 + version: 0.3.14 + volume_id: 9 + volume_name: rhel-8 +911719: + build_id: 911719 + cg_id: null + cg_name: null + completion_time: '2019-06-14 08:48:36.844035' + completion_ts: 1560502116.84403 + creation_event_id: 25111640 + creation_time: '2019-06-14 08:37:52.154271' + creation_ts: 1560501472.15427 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gmp#4dc17181317221d892edd8c38de60467f6470d07 + id: 911719 + name: gmp + nvr: gmp-6.1.2-10.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 589 + package_name: gmp + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/gmp#4dc17181317221d892edd8c38de60467f6470d07 + start_time: '2019-06-14 08:37:52.154271' + start_ts: 1560501472.15427 + state: 1 + task_id: 22149338 + version: 6.1.2 + volume_id: 9 + volume_name: rhel-8 +913299: + build_id: 913299 + cg_id: null + cg_name: null + completion_time: '2019-06-17 19:46:15.215374' + completion_ts: 1560800775.21537 + creation_event_id: 25164036 + creation_time: '2019-06-17 19:38:34.237195' + creation_ts: 1560800314.2372 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libvarlink#8c6b400cd105e61eb1124a402405dcaac1db6dd8 + id: 913299 + name: libvarlink + nvr: libvarlink-18-3.el8 + owner_id: 2547 + owner_name: lmandvek + package_id: 69265 + package_name: libvarlink + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libvarlink#8c6b400cd105e61eb1124a402405dcaac1db6dd8 + start_time: '2019-06-17 19:38:34.237195' + start_ts: 1560800314.2372 + state: 1 + task_id: 22211047 + version: '18' + volume_id: 9 + volume_name: rhel-8 +919146: + build_id: 919146 + cg_id: null + cg_name: null + completion_time: '2019-06-26 19:20:43.090664' + completion_ts: 1561576843.09066 + creation_event_id: 25326462 + creation_time: '2019-06-26 19:11:16.627506' + creation_ts: 1561576276.62751 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libuser#5eebab5dfa0d39e3dd3890d45e682fce480ea006 + id: 919146 + name: libuser + nvr: libuser-0.62-23.el8 + owner_id: 510 + owner_name: jhrozek + package_id: 1987 + package_name: libuser + release: 23.el8 + source: git://pkgs.devel.redhat.com/rpms/libuser#5eebab5dfa0d39e3dd3890d45e682fce480ea006 + start_time: '2019-06-26 19:11:16.627506' + start_ts: 1561576276.62751 + state: 1 + task_id: 22374785 + version: '0.62' + volume_id: 9 + volume_name: rhel-8 +928388: + build_id: 928388 + cg_id: null + cg_name: null + completion_time: '2019-07-10 11:29:12.998034' + completion_ts: 1562758152.99803 + creation_event_id: 25532365 + creation_time: '2019-07-10 11:24:39.407882' + creation_ts: 1562757879.40788 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/iputils#80ba253c6c25a2bd577dc9c8d4f14dd91ea84b3c + id: 928388 + name: iputils + nvr: iputils-20180629-2.el8 + owner_id: 1708 + owner_name: jsynacek + package_id: 915 + package_name: iputils + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/iputils#80ba253c6c25a2bd577dc9c8d4f14dd91ea84b3c + start_time: '2019-07-10 11:24:39.407882' + start_ts: 1562757879.40788 + state: 1 + task_id: 22594165 + version: '20180629' + volume_id: 9 + volume_name: rhel-8 +935160: + build_id: 935160 + cg_id: null + cg_name: null + completion_time: '2019-07-22 10:21:34.658074' + completion_ts: 1563790894.65807 + creation_event_id: 25627310 + creation_time: '2019-07-22 10:17:01.124941' + creation_ts: 1563790621.12494 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gzip#394217623b1a5b9553c002c5f1e31497233191c9 + id: 935160 + name: gzip + nvr: gzip-1.9-9.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 851 + package_name: gzip + release: 9.el8 + source: git://pkgs.devel.redhat.com/rpms/gzip#394217623b1a5b9553c002c5f1e31497233191c9 + start_time: '2019-07-22 10:17:01.124941' + start_ts: 1563790621.12494 + state: 1 + task_id: 22713038 + version: '1.9' + volume_id: 9 + volume_name: rhel-8 +936936: + build_id: 936936 + cg_id: null + cg_name: null + completion_time: '2019-07-24 16:05:32.675439' + completion_ts: 1563984332.67544 + creation_event_id: 25687802 + creation_time: '2019-07-24 16:00:00.245179' + creation_ts: 1563984000.24518 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libtirpc#143bca6dbc5bd42050fd3e111c82015530a93eb4 + id: 936936 + name: libtirpc + nvr: libtirpc-1.1.4-4.el8 + owner_id: 150 + owner_name: steved + package_id: 3434 + package_name: libtirpc + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libtirpc#143bca6dbc5bd42050fd3e111c82015530a93eb4 + start_time: '2019-07-24 16:00:00.245179' + start_ts: 1563984000.24518 + state: 1 + task_id: 22767704 + version: 1.1.4 + volume_id: 9 + volume_name: rhel-8 +946403: + build_id: 946403 + cg_id: null + cg_name: null + completion_time: '2019-08-08 04:21:35.637562' + completion_ts: 1565238095.63756 + creation_event_id: 25836124 + creation_time: '2019-08-08 04:18:30.806056' + creation_ts: 1565237910.80606 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/squashfs-tools#f278dbe544aa7202604669af7b2087f9e6646089 + id: 946403 + name: squashfs-tools + nvr: squashfs-tools-4.3-19.el8 + owner_id: 386 + owner_name: adas + package_id: 3063 + package_name: squashfs-tools + release: 19.el8 + source: git://pkgs.devel.redhat.com/rpms/squashfs-tools#f278dbe544aa7202604669af7b2087f9e6646089 + start_time: '2019-08-08 04:18:30.806056' + start_ts: 1565237910.80606 + state: 1 + task_id: 22967241 + version: '4.3' + volume_id: 9 + volume_name: rhel-8 +979013: + build_id: 979013 + cg_id: null + cg_name: null + completion_time: '2019-10-02 08:32:14.329612' + completion_ts: 1570005134.32961 + creation_event_id: 26546760 + creation_time: '2019-10-02 08:27:22.384812' + creation_ts: 1570004842.38481 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/newt#6440fd56f0afe7595c3fb516b524b06399714d1a + id: 979013 + name: newt + nvr: newt-0.52.20-11.el8 + owner_id: 172 + owner_name: mlichvar + package_id: 2263 + package_name: newt + release: 11.el8 + source: git://pkgs.devel.redhat.com/rpms/newt#6440fd56f0afe7595c3fb516b524b06399714d1a + start_time: '2019-10-02 08:27:22.384812' + start_ts: 1570004842.38481 + state: 1 + task_id: 23812853 + version: 0.52.20 + volume_id: 9 + volume_name: rhel-8 +985916: + build_id: 985916 + cg_id: null + cg_name: null + completion_time: '2019-10-11 14:54:50.190324' + completion_ts: 1570805690.19032 + creation_event_id: 26755491 + creation_time: '2019-10-11 14:46:28.547883' + creation_ts: 1570805188.54788 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ipcalc#afb15f6ef9df133c9f5856fd103bb5502bef2243 + id: 985916 + name: ipcalc + nvr: ipcalc-0.2.4-4.el8 + owner_id: 952 + owner_name: mosvald + package_id: 54470 + package_name: ipcalc + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/ipcalc#afb15f6ef9df133c9f5856fd103bb5502bef2243 + start_time: '2019-10-11 14:46:28.547883' + start_ts: 1570805188.54788 + state: 1 + task_id: 24018262 + version: 0.2.4 + volume_id: 9 + volume_name: rhel-8 +1000732: + build_id: 1000732 + cg_id: null + cg_name: null + completion_time: '2019-11-01 04:31:34.122150' + completion_ts: 1572582694.12215 + creation_event_id: 26999902 + creation_time: '2019-11-01 04:26:55.999812' + creation_ts: 1572582415.99981 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/xkeyboard-config#c4e51af72d9e6c77269af9b2008f35dd6628277b + id: 1000732 + name: xkeyboard-config + nvr: xkeyboard-config-2.28-1.el8 + owner_id: 841 + owner_name: phuttere + package_id: 3359 + package_name: xkeyboard-config + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/xkeyboard-config#c4e51af72d9e6c77269af9b2008f35dd6628277b + start_time: '2019-11-01 04:26:55.999812' + start_ts: 1572582415.99981 + state: 1 + task_id: 24370867 + version: '2.28' + volume_id: 9 + volume_name: rhel-8 +1001028: + build_id: 1001028 + cg_id: null + cg_name: null + completion_time: '2019-11-01 10:09:24.729333' + completion_ts: 1572602964.72933 + creation_event_id: 27005610 + creation_time: '2019-11-01 10:05:15.686008' + creation_ts: 1572602715.68601 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libndp#cfc2ed641517b18fae80f9e66f967514f8178292 + id: 1001028 + name: libndp + nvr: libndp-1.7-3.el8 + owner_id: 1863 + owner_name: haliu + package_id: 43281 + package_name: libndp + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libndp#cfc2ed641517b18fae80f9e66f967514f8178292 + start_time: '2019-11-01 10:05:15.686008' + start_ts: 1572602715.68601 + state: 1 + task_id: 24375567 + version: '1.7' + volume_id: 9 + volume_name: rhel-8 +1001832: + build_id: 1001832 + cg_id: null + cg_name: null + completion_time: '2019-11-04 00:38:55.475469' + completion_ts: 1572827935.47547 + creation_event_id: 27100900 + creation_time: '2019-11-04 00:34:18.617260' + creation_ts: 1572827658.61726 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libxkbcommon#3e3a0fcdea5c0b303ed969d5cef0a04968cd241d + id: 1001832 + name: libxkbcommon + nvr: libxkbcommon-0.9.1-1.el8 + owner_id: 841 + owner_name: phuttere + package_id: 54479 + package_name: libxkbcommon + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libxkbcommon#3e3a0fcdea5c0b303ed969d5cef0a04968cd241d + start_time: '2019-11-04 00:34:18.617260' + start_ts: 1572827658.61726 + state: 1 + task_id: 24431832 + version: 0.9.1 + volume_id: 9 + volume_name: rhel-8 +1003002: + build_id: 1003002 + cg_id: null + cg_name: null + completion_time: '2019-11-05 08:39:32.245771' + completion_ts: 1572943172.24577 + creation_event_id: 27119019 + creation_time: '2019-11-05 08:35:23.342872' + creation_ts: 1572942923.34287 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libcap-ng#be0aa33305de7a4b9f74302d747537888178229f + id: 1003002 + name: libcap-ng + nvr: libcap-ng-0.7.9-5.el8 + owner_id: 4293 + owner_name: mtamasko + package_id: 18016 + package_name: libcap-ng + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libcap-ng#be0aa33305de7a4b9f74302d747537888178229f + start_time: '2019-11-05 08:35:23.342872' + start_ts: 1572942923.34287 + state: 1 + task_id: 24455905 + version: 0.7.9 + volume_id: 9 + volume_name: rhel-8 +1007555: + build_id: 1007555 + cg_id: null + cg_name: null + completion_time: '2019-11-12 08:10:00.612356' + completion_ts: 1573546200.61236 + creation_event_id: 27228489 + creation_time: '2019-11-12 08:06:55.475904' + creation_ts: 1573546015.4759 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-ply#90bf086d09a41f709b170f5cfac670e8f70e1d5d + id: 1007555 + name: python-ply + nvr: python-ply-3.9-8.el8 + owner_id: 3048 + owner_name: cheimes + package_id: 16804 + package_name: python-ply + release: 8.el8 + source: git://pkgs.devel.redhat.com/rpms/python-ply#90bf086d09a41f709b170f5cfac670e8f70e1d5d + start_time: '2019-11-12 08:06:55.475904' + start_ts: 1573546015.4759 + state: 1 + task_id: 24606537 + version: '3.9' + volume_id: 9 + volume_name: rhel-8 +1013911: + build_id: 1013911 + cg_id: null + cg_name: null + completion_time: '2019-11-19 10:55:07.943336' + completion_ts: 1574160907.94334 + creation_event_id: 27382174 + creation_time: '2019-11-19 10:51:05.700563' + creation_ts: 1574160665.70056 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/which#cf53e48c5c92672744f3b24d4e52cb5014cef416 + id: 1013911 + name: which + nvr: which-2.21-12.el8 + owner_id: 67 + owner_name: than + package_id: 1146 + package_name: which + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/which#cf53e48c5c92672744f3b24d4e52cb5014cef416 + start_time: '2019-11-19 10:51:05.700563' + start_ts: 1574160665.70056 + state: 1 + task_id: 24801756 + version: '2.21' + volume_id: 9 + volume_name: rhel-8 +1014155: + build_id: 1014155 + cg_id: null + cg_name: null + completion_time: '2019-11-19 14:27:12.981518' + completion_ts: 1574173632.98152 + creation_event_id: 27433335 + creation_time: '2019-11-19 14:19:22.389985' + creation_ts: 1574173162.38999 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/diffutils#c4f2935585b7b1c45abf59a440cf0d815142412d + id: 1014155 + name: diffutils + nvr: diffutils-3.6-6.el8 + owner_id: 67 + owner_name: than + package_id: 356 + package_name: diffutils + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/diffutils#c4f2935585b7b1c45abf59a440cf0d815142412d + start_time: '2019-11-19 14:19:22.389985' + start_ts: 1574173162.38999 + state: 1 + task_id: 24825939 + version: '3.6' + volume_id: 9 + volume_name: rhel-8 +1020741: + build_id: 1020741 + cg_id: null + cg_name: null + completion_time: '2019-11-26 19:44:04.083845' + completion_ts: 1574797444.08384 + creation_event_id: 27562774 + creation_time: '2019-11-26 19:34:22.084826' + creation_ts: 1574796862.08483 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libnl3#149d8419697353dee2482e3bbdadacb8d4c30ab8 + id: 1020741 + name: libnl3 + nvr: libnl3-3.5.0-1.el8 + owner_id: 2354 + owner_name: thaller + package_id: 35441 + package_name: libnl3 + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libnl3#149d8419697353dee2482e3bbdadacb8d4c30ab8 + start_time: '2019-11-26 19:34:22.084826' + start_ts: 1574796862.08483 + state: 1 + task_id: 24972427 + version: 3.5.0 + volume_id: 9 + volume_name: rhel-8 +1023615: + build_id: 1023615 + cg_id: null + cg_name: null + completion_time: '2019-11-28 18:24:12.075282' + completion_ts: 1574965452.07528 + creation_event_id: 27601069 + creation_time: '2019-11-28 18:18:33.804637' + creation_ts: 1574965113.80464 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openssl-pkcs11#5fb2a800e8d56361c771301ecdf8ae5e6db0d04e + id: 1023615 + name: openssl-pkcs11 + nvr: openssl-pkcs11-0.4.10-2.el8 + owner_id: 4150 + owner_name: ansasaki + package_id: 67029 + package_name: openssl-pkcs11 + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/openssl-pkcs11#5fb2a800e8d56361c771301ecdf8ae5e6db0d04e + start_time: '2019-11-28 18:18:33.804637' + start_ts: 1574965113.80464 + state: 1 + task_id: 25022388 + version: 0.4.10 + volume_id: 9 + volume_name: rhel-8 +1024992: + build_id: 1024992 + cg_id: null + cg_name: null + completion_time: '2019-11-30 13:20:59.936367' + completion_ts: 1575120059.93637 + creation_event_id: 27628453 + creation_time: '2019-11-30 13:17:05.305373' + creation_ts: 1575119825.30537 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/luksmeta#c21f19acdb156131d705d45736da610e679f94a1 + id: 1024992 + name: luksmeta + nvr: luksmeta-9-4.el8 + owner_id: 5120 + owner_name: solindab + package_id: 61816 + package_name: luksmeta + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/luksmeta#c21f19acdb156131d705d45736da610e679f94a1 + start_time: '2019-11-30 13:17:05.305373' + start_ts: 1575119825.30537 + state: 1 + task_id: 25054325 + version: '9' + volume_id: 9 + volume_name: rhel-8 +1025058: + build_id: 1025058 + cg_id: null + cg_name: null + completion_time: '2019-12-01 06:42:31.381703' + completion_ts: 1575182551.3817 + creation_event_id: 27630958 + creation_time: '2019-12-01 06:38:44.299844' + creation_ts: 1575182324.29984 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/socat#44d3115c3c618ba1c5faea85adcaf9bf84b82825 + id: 1025058 + name: socat + nvr: socat-1.7.3.3-2.el8 + owner_id: 2118 + owner_name: pwouters + package_id: 17221 + package_name: socat + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/socat#44d3115c3c618ba1c5faea85adcaf9bf84b82825 + start_time: '2019-12-01 06:38:44.299844' + start_ts: 1575182324.29984 + state: 1 + task_id: 25059933 + version: 1.7.3.3 + volume_id: 9 + volume_name: rhel-8 +1026871: + build_id: 1026871 + cg_id: null + cg_name: null + completion_time: '2019-12-03 14:07:05.188817' + completion_ts: 1575382025.18882 + creation_event_id: 27677448 + creation_time: '2019-12-03 14:03:11.059437' + creation_ts: 1575381791.05944 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pigz#09f6b2ca46b0b1c592ad0a2325ca0695a436e806 + id: 1026871 + name: pigz + nvr: pigz-2.4-4.el8 + owner_id: 412 + owner_name: prarit + package_id: 33673 + package_name: pigz + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/pigz#09f6b2ca46b0b1c592ad0a2325ca0695a436e806 + start_time: '2019-12-03 14:03:11.059437' + start_ts: 1575381791.05944 + state: 1 + task_id: 25121425 + version: '2.4' + volume_id: 9 + volume_name: rhel-8 +1037354: + build_id: 1037354 + cg_id: null + cg_name: null + completion_time: '2019-12-13 18:43:13.265169' + completion_ts: 1576262593.26517 + creation_event_id: 27885611 + creation_time: '2019-12-13 18:39:21.549473' + creation_ts: 1576262361.54947 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/passwd#be05db5f2a0a043b0b12f06ca58b84387c73bdf4 + id: 1037354 + name: passwd + nvr: passwd-0.80-3.el8 + owner_id: 4262 + owner_name: jkucera + package_id: 2359 + package_name: passwd + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/passwd#be05db5f2a0a043b0b12f06ca58b84387c73bdf4 + start_time: '2019-12-13 18:39:21.549473' + start_ts: 1576262361.54947 + state: 1 + task_id: 25364321 + version: '0.80' + volume_id: 9 + volume_name: rhel-8 +1040007: + build_id: 1040007 + cg_id: null + cg_name: null + completion_time: '2019-12-18 16:24:43.033661' + completion_ts: 1576686283.03366 + creation_event_id: 28017259 + creation_time: '2019-12-18 16:18:30.589826' + creation_ts: 1576685910.58983 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cifs-utils#f697131f54d554520d4cc14e70935bc9b5be5a3e + id: 1040007 + name: cifs-utils + nvr: cifs-utils-6.8-3.el8 + owner_id: 536 + owner_name: sprabhu + package_id: 19466 + package_name: cifs-utils + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/cifs-utils#f697131f54d554520d4cc14e70935bc9b5be5a3e + start_time: '2019-12-18 16:18:30.589826' + start_ts: 1576685910.58983 + state: 1 + task_id: 25437641 + version: '6.8' + volume_id: 9 + volume_name: rhel-8 +1043053: + build_id: 1043053 + cg_id: null + cg_name: null + completion_time: '2019-12-20 20:29:21.441541' + completion_ts: 1576873761.44154 + creation_event_id: 28115078 + creation_time: '2019-12-20 20:25:26.838038' + creation_ts: 1576873526.83804 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/make#a7c1d8b26ea5d0a9e5dbeea9d312efdf66bd1c04 + id: 1043053 + name: make + nvr: make-4.2.1-10.el8 + owner_id: 665 + owner_name: dj + package_id: 2087 + package_name: make + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/make#a7c1d8b26ea5d0a9e5dbeea9d312efdf66bd1c04 + start_time: '2019-12-20 20:25:26.838038' + start_ts: 1576873526.83804 + state: 1 + task_id: 25492614 + version: 4.2.1 + volume_id: 9 + volume_name: rhel-8 +1049594: + build_id: 1049594 + cg_id: null + cg_name: null + completion_time: '2020-01-02 17:31:55.513542' + completion_ts: 1577986315.51354 + creation_event_id: 28351424 + creation_time: '2020-01-02 17:27:58.203254' + creation_ts: 1577986078.20325 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/sg3_utils#ad402dda5b85b6c1fb073407dfd13a095fad3ec7 + id: 1049594 + name: sg3_utils + nvr: sg3_utils-1.44-5.el8 + owner_id: 629 + owner_name: tbzatek + package_id: 3010 + package_name: sg3_utils + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/sg3_utils#ad402dda5b85b6c1fb073407dfd13a095fad3ec7 + start_time: '2020-01-02 17:27:58.203254' + start_ts: 1577986078.20325 + state: 1 + task_id: 25582849 + version: '1.44' + volume_id: 9 + volume_name: rhel-8 +1054304: + build_id: 1054304 + cg_id: null + cg_name: null + completion_time: '2020-01-08 16:54:00.010013' + completion_ts: 1578502440.01001 + creation_event_id: 28415791 + creation_time: '2020-01-08 16:49:15.232077' + creation_ts: 1578502155.23208 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/audit#18705603a57530fef869f81f1e677ea7e7a397e7 + id: 1054304 + name: audit + nvr: audit-3.0-0.17.20191104git1c2f876.el8 + owner_id: 117 + owner_name: sgrubb + package_id: 159 + package_name: audit + release: 0.17.20191104git1c2f876.el8 + source: git://pkgs.devel.redhat.com/rpms/audit#18705603a57530fef869f81f1e677ea7e7a397e7 + start_time: '2020-01-08 16:49:15.232077' + start_ts: 1578502155.23208 + state: 1 + task_id: 25670541 + version: '3.0' + volume_id: 9 + volume_name: rhel-8 +1054659: + build_id: 1054659 + cg_id: null + cg_name: null + completion_time: '2020-01-09 10:20:54.048176' + completion_ts: 1578565254.04818 + creation_event_id: 28422252 + creation_time: '2020-01-09 10:15:13.702952' + creation_ts: 1578564913.70295 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/texinfo#f70619ed3b9835ab3a476eb89c00c753384a31dc + id: 1054659 + name: texinfo + nvr: texinfo-6.5-6.el8 + owner_id: 502 + owner_name: vcrhonek + package_id: 1303 + package_name: texinfo + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/texinfo#f70619ed3b9835ab3a476eb89c00c753384a31dc + start_time: '2020-01-09 10:15:13.702952' + start_ts: 1578564913.70295 + state: 1 + task_id: 25678403 + version: '6.5' + volume_id: 9 + volume_name: rhel-8 +1059406: + build_id: 1059406 + cg_id: null + cg_name: null + completion_time: '2020-01-16 12:41:41.324756' + completion_ts: 1579178501.32476 + creation_event_id: 28625684 + creation_time: '2020-01-16 12:17:39.082916' + creation_ts: 1579177059.08292 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/bubblewrap#724f2e126c073084a22d6fb72004a91f4fcb1790 + id: 1059406 + name: bubblewrap + nvr: bubblewrap-0.4.0-1.el8 + owner_id: 2473 + owner_name: dking + package_id: 61796 + package_name: bubblewrap + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/bubblewrap#724f2e126c073084a22d6fb72004a91f4fcb1790 + start_time: '2020-01-16 12:17:39.082916' + start_ts: 1579177059.08292 + state: 1 + task_id: 25810453 + version: 0.4.0 + volume_id: 9 + volume_name: rhel-8 +1061392: + build_id: 1061392 + cg_id: null + cg_name: null + completion_time: '2020-01-17 18:01:13.800482' + completion_ts: 1579284073.80048 + creation_event_id: 28643664 + creation_time: '2020-01-17 17:57:21.534503' + creation_ts: 1579283841.5345 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/policycoreutils#9ac4976ddd1641c499cea1b00a4553d73dfea133 + id: 1061392 + name: policycoreutils + nvr: policycoreutils-2.9-9.el8 + owner_id: 3775 + owner_name: vmojzis + package_id: 2522 + package_name: policycoreutils + release: 9.el8 + source: git://pkgs.devel.redhat.com/rpms/policycoreutils#9ac4976ddd1641c499cea1b00a4553d73dfea133 + start_time: '2020-01-17 17:57:21.534503' + start_ts: 1579283841.5345 + state: 1 + task_id: 25841589 + version: '2.9' + volume_id: 9 + volume_name: rhel-8 +1079402: + build_id: 1079402 + cg_id: null + cg_name: null + completion_time: '2020-02-06 19:56:34.874239' + completion_ts: 1581018994.87424 + creation_event_id: 29032463 + creation_time: '2020-02-06 19:50:24.622594' + creation_ts: 1581018624.62259 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rpcbind#329a0fa3ce8954b142166fa1c93b2a199409949c + id: 1079402 + name: rpcbind + nvr: rpcbind-1.2.5-7.el8 + owner_id: 150 + owner_name: steved + package_id: 3731 + package_name: rpcbind + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/rpcbind#329a0fa3ce8954b142166fa1c93b2a199409949c + start_time: '2020-02-06 19:50:24.622594' + start_ts: 1581018624.62259 + state: 1 + task_id: 26281242 + version: 1.2.5 + volume_id: 9 + volume_name: rhel-8 +1092866: + build_id: 1092866 + cg_id: null + cg_name: null + completion_time: '2020-02-17 16:11:41.635515' + completion_ts: 1581955901.63551 + creation_event_id: 29355973 + creation_time: '2020-02-17 15:29:00.239793' + creation_ts: 1581953340.23979 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/mozjs60#13900be413c700eaab478cb1c05202ea1437ea79 + id: 1092866 + name: mozjs60 + nvr: mozjs60-60.9.0-4.el8 + owner_id: 3004 + owner_name: klember + package_id: 71958 + package_name: mozjs60 + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/mozjs60#13900be413c700eaab478cb1c05202ea1437ea79 + start_time: '2020-02-17 15:29:00.239793' + start_ts: 1581953340.23979 + state: 1 + task_id: 26568613 + version: 60.9.0 + volume_id: 9 + volume_name: rhel-8 +1094565: + build_id: 1094565 + cg_id: null + cg_name: null + completion_time: '2020-02-19 11:10:24.247843' + completion_ts: 1582110624.24784 + creation_event_id: 29384621 + creation_time: '2020-02-19 11:04:12.335973' + creation_ts: 1582110252.33597 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libnftnl#cf514fac7d67b8383ea576144f0b3d3e4df7bf5b + id: 1094565 + name: libnftnl + nvr: libnftnl-1.1.5-4.el8 + owner_id: 3021 + owner_name: psutter + package_id: 58415 + package_name: libnftnl + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libnftnl#cf514fac7d67b8383ea576144f0b3d3e4df7bf5b + start_time: '2020-02-19 11:04:12.335973' + start_ts: 1582110252.33597 + state: 1 + task_id: 26608178 + version: 1.1.5 + volume_id: 9 + volume_name: rhel-8 +1124145: + build_id: 1124145 + cg_id: null + cg_name: null + completion_time: '2020-03-04 10:32:17.316212' + completion_ts: 1583317937.31621 + creation_event_id: 29872691 + creation_time: '2020-03-04 10:22:17.610384' + creation_ts: 1583317337.61038 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/icu#b5f4fb97d1fd333afaf96848cde851c22fbce920 + id: 1124145 + name: icu + nvr: icu-60.3-2.el8_1 + owner_id: 1972 + owner_name: mfabian + package_id: 1691 + package_name: icu + release: 2.el8_1 + source: git://pkgs.devel.redhat.com/rpms/icu#b5f4fb97d1fd333afaf96848cde851c22fbce920 + start_time: '2020-03-04 10:22:17.610384' + start_ts: 1583317337.61038 + state: 1 + task_id: 27017609 + version: '60.3' + volume_id: 9 + volume_name: rhel-8 +1138830: + build_id: 1138830 + cg_id: null + cg_name: null + completion_time: '2020-03-18 08:27:38.624695' + completion_ts: 1584520058.6247 + creation_event_id: 30171126 + creation_time: '2020-03-18 08:22:54.139100' + creation_ts: 1584519774.1391 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/net-tools#0f6e467700fcc05e1a620450fc89ca1ae4422acc + id: 1138830 + name: net-tools + nvr: net-tools-2.0-0.52.20160912git.el8 + owner_id: 3573 + owner_name: mruprich + package_id: 2248 + package_name: net-tools + release: 0.52.20160912git.el8 + source: git://pkgs.devel.redhat.com/rpms/net-tools#0f6e467700fcc05e1a620450fc89ca1ae4422acc + start_time: '2020-03-18 08:22:54.139100' + start_ts: 1584519774.1391 + state: 1 + task_id: 27323151 + version: '2.0' + volume_id: 9 + volume_name: rhel-8 +1147995: + build_id: 1147995 + cg_id: null + cg_name: null + completion_time: '2020-03-26 13:03:32.964368' + completion_ts: 1585227812.96437 + creation_event_id: 30360056 + creation_time: '2020-03-26 12:59:39.514315' + creation_ts: 1585227579.51431 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-setuptools#427ea974e8d8dec25bf3e3bdd65c37eeeff8a99e + id: 1147995 + name: python-setuptools + nvr: python-setuptools-39.2.0-6.el8 + owner_id: 3286 + owner_name: cstratak + package_id: 3226 + package_name: python-setuptools + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/python-setuptools#427ea974e8d8dec25bf3e3bdd65c37eeeff8a99e + start_time: '2020-03-26 12:59:39.514315' + start_ts: 1585227579.51431 + state: 1 + task_id: 27503294 + version: 39.2.0 + volume_id: 9 + volume_name: rhel-8 +1149016: + build_id: 1149016 + cg_id: null + cg_name: null + completion_time: '2020-03-27 11:08:09.841071' + completion_ts: 1585307289.84107 + creation_event_id: 30387704 + creation_time: '2020-03-27 11:00:08.772006' + creation_ts: 1585306808.77201 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openssh#dc5d73e4e42642e420a1bca3f15b5e9edde13d16 + id: 1149016 + name: openssh + nvr: openssh-8.0p1-5.el8 + owner_id: 2624 + owner_name: jjelen + package_id: 2327 + package_name: openssh + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/openssh#dc5d73e4e42642e420a1bca3f15b5e9edde13d16 + start_time: '2020-03-27 11:00:08.772006' + start_ts: 1585306808.77201 + state: 1 + task_id: 27525053 + version: 8.0p1 + volume_id: 9 + volume_name: rhel-8 +1159631: + build_id: 1159631 + cg_id: null + cg_name: null + completion_time: '2020-04-06 09:22:06.829859' + completion_ts: 1586164926.82986 + creation_event_id: 30663066 + creation_time: '2020-04-06 09:01:27.574728' + creation_ts: 1586163687.57473 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libarchive#a463e2c00e5122c9eb3e79ab8a7d9fd3733e41aa + id: 1159631 + name: libarchive + nvr: libarchive-3.3.2-9.el8 + owner_id: 4932 + owner_name: odubaj + package_id: 12084 + package_name: libarchive + release: 9.el8 + source: git://pkgs.devel.redhat.com/rpms/libarchive#a463e2c00e5122c9eb3e79ab8a7d9fd3733e41aa + start_time: '2020-04-06 09:01:27.574728' + start_ts: 1586163687.57473 + state: 1 + task_id: 27763272 + version: 3.3.2 + volume_id: 9 + volume_name: rhel-8 +1160555: + build_id: 1160555 + cg_id: null + cg_name: null + completion_time: '2020-04-07 00:16:12.674500' + completion_ts: 1586218572.6745 + creation_event_id: 30683270 + creation_time: '2020-04-06 22:34:17.607604' + creation_ts: 1586212457.6076 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gssproxy#e91b65d54ef1e4c5897a233118f7ad532bc7f0b7 + id: 1160555 + name: gssproxy + nvr: gssproxy-0.8.0-16.el8 + owner_id: 2717 + owner_name: rharwood + package_id: 42993 + package_name: gssproxy + release: 16.el8 + source: git://pkgs.devel.redhat.com/rpms/gssproxy#e91b65d54ef1e4c5897a233118f7ad532bc7f0b7 + start_time: '2020-04-06 22:34:17.607604' + start_ts: 1586212457.6076 + state: 1 + task_id: 27786460 + version: 0.8.0 + volume_id: 9 + volume_name: rhel-8 +1161982: + build_id: 1161982 + cg_id: null + cg_name: null + completion_time: '2020-04-08 13:45:58.372553' + completion_ts: 1586353558.37255 + creation_event_id: 30732164 + creation_time: '2020-04-08 13:40:15.179986' + creation_ts: 1586353215.17999 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsolv#e975137186c94aebb991b27b89628c6c6fcab2e2 + id: 1161982 + name: libsolv + nvr: libsolv-0.7.11-1.el8 + owner_id: 5093 + owner_name: amatej + package_id: 46512 + package_name: libsolv + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libsolv#e975137186c94aebb991b27b89628c6c6fcab2e2 + start_time: '2020-04-08 13:40:15.179986' + start_ts: 1586353215.17999 + state: 1 + task_id: 27830584 + version: 0.7.11 + volume_id: 9 + volume_name: rhel-8 +1162098: + build_id: 1162098 + cg_id: null + cg_name: null + completion_time: '2020-04-08 18:37:56.495158' + completion_ts: 1586371076.49516 + creation_event_id: 30734517 + creation_time: '2020-04-08 18:31:49.969023' + creation_ts: 1586370709.96902 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libxml2#fb92a18ff68543a9db7aedf762e37bc9463d26ed + id: 1162098 + name: libxml2 + nvr: libxml2-2.9.7-8.el8 + owner_id: 2473 + owner_name: dking + package_id: 2004 + package_name: libxml2 + release: 8.el8 + source: git://pkgs.devel.redhat.com/rpms/libxml2#fb92a18ff68543a9db7aedf762e37bc9463d26ed + start_time: '2020-04-08 18:31:49.969023' + start_ts: 1586370709.96902 + state: 1 + task_id: 27835960 + version: 2.9.7 + volume_id: 9 + volume_name: rhel-8 +1165793: + build_id: 1165793 + cg_id: null + cg_name: null + completion_time: '2020-04-14 12:19:27.782641' + completion_ts: 1586866767.78264 + creation_event_id: 30823996 + creation_time: '2020-04-14 12:10:24.443835' + creation_ts: 1586866224.44384 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/coreutils#4baab245c3fda3410c84eff776bbea8561c56e1e + id: 1165793 + name: coreutils + nvr: coreutils-8.30-8.el8 + owner_id: 889 + owner_name: kdudka + package_id: 294 + package_name: coreutils + release: 8.el8 + source: git://pkgs.devel.redhat.com/rpms/coreutils#4baab245c3fda3410c84eff776bbea8561c56e1e + start_time: '2020-04-14 12:10:24.443835' + start_ts: 1586866224.44384 + state: 1 + task_id: 27915058 + version: '8.30' + volume_id: 9 + volume_name: rhel-8 +1166694: + build_id: 1166694 + cg_id: null + cg_name: null + completion_time: '2020-04-15 09:43:27.571423' + completion_ts: 1586943807.57142 + creation_event_id: 30843063 + creation_time: '2020-04-15 09:41:49.904787' + creation_ts: 1586943709.90479 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/setup#e1ce54d3a8c72177b4bfce208870f507b21e56f9 + id: 1166694 + name: setup + nvr: setup-2.12.2-6.el8 + owner_id: 2110 + owner_name: pzhukov + package_id: 3006 + package_name: setup + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/setup#e1ce54d3a8c72177b4bfce208870f507b21e56f9 + start_time: '2020-04-15 09:41:49.904787' + start_ts: 1586943709.90479 + state: 1 + task_id: 27941114 + version: 2.12.2 + volume_id: 9 + volume_name: rhel-8 +1168710: + build_id: 1168710 + cg_id: null + cg_name: null + completion_time: '2020-04-17 07:50:07.511639' + completion_ts: 1587109807.51164 + creation_event_id: 30920639 + creation_time: '2020-04-17 07:42:24.644955' + creation_ts: 1587109344.64495 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/chkconfig#53ee67e595df3f2ab047b17e5f8da21cda83fe16 + id: 1168710 + name: chkconfig + nvr: chkconfig-1.13-2.el8 + owner_id: 4969 + owner_name: jamacku + package_id: 251 + package_name: chkconfig + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/chkconfig#53ee67e595df3f2ab047b17e5f8da21cda83fe16 + start_time: '2020-04-17 07:42:24.644955' + start_ts: 1587109344.64495 + state: 1 + task_id: 28006097 + version: '1.13' + volume_id: 9 + volume_name: rhel-8 +1173474: + build_id: 1173474 + cg_id: null + cg_name: null + completion_time: '2020-04-21 13:44:14.904023' + completion_ts: 1587476654.90402 + creation_event_id: 31038008 + creation_time: '2020-04-21 13:35:41.139871' + creation_ts: 1587476141.13987 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libseccomp#009d9e1f4cd8854a723df7a3b09f72a27d696558 + id: 1173474 + name: libseccomp + nvr: libseccomp-2.4.3-1.el8 + owner_id: 3737 + owner_name: jvymazal + package_id: 37539 + package_name: libseccomp + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libseccomp#009d9e1f4cd8854a723df7a3b09f72a27d696558 + start_time: '2020-04-21 13:35:41.139871' + start_ts: 1587476141.13987 + state: 1 + task_id: 28091625 + version: 2.4.3 + volume_id: 9 + volume_name: rhel-8 +1175627: + build_id: 1175627 + cg_id: null + cg_name: null + completion_time: '2020-04-23 06:28:24.524952' + completion_ts: 1587623304.52495 + creation_event_id: 31077586 + creation_time: '2020-04-23 06:24:35.509740' + creation_ts: 1587623075.50974 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/filesystem#7c0cf9bff649b2c714ca6155dcfb7adaf6876e84 + id: 1175627 + name: filesystem + nvr: filesystem-3.8-3.el8 + owner_id: 2110 + owner_name: pzhukov + package_id: 463 + package_name: filesystem + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/filesystem#7c0cf9bff649b2c714ca6155dcfb7adaf6876e84 + start_time: '2020-04-23 06:24:35.509740' + start_ts: 1587623075.50974 + state: 1 + task_id: 28134908 + version: '3.8' + volume_id: 9 + volume_name: rhel-8 +1177309: + build_id: 1177309 + cg_id: null + cg_name: null + completion_time: '2020-04-24 15:32:00.725367' + completion_ts: 1587742320.72537 + creation_event_id: 31106025 + creation_time: '2020-04-24 15:27:27.719736' + creation_ts: 1587742047.71974 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/expat#8a586ebd7d27bd3e43ce1a63be713686b3fc1195 + id: 1177309 + name: expat + nvr: expat-2.2.5-4.el8 + owner_id: 113 + owner_name: jorton + package_id: 446 + package_name: expat + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/expat#8a586ebd7d27bd3e43ce1a63be713686b3fc1195 + start_time: '2020-04-24 15:27:27.719736' + start_ts: 1587742047.71974 + state: 1 + task_id: 28167275 + version: 2.2.5 + volume_id: 9 + volume_name: rhel-8 +1179555: + build_id: 1179555 + cg_id: null + cg_name: null + completion_time: '2020-04-27 21:00:15.943802' + completion_ts: 1588021215.9438 + creation_event_id: 31149054 + creation_time: '2020-04-27 20:56:01.732158' + creation_ts: 1588020961.73216 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/tpm2-tss#0ece01c52edeff23de439582758aaf71d490beb0 + id: 1179555 + name: tpm2-tss + nvr: tpm2-tss-2.3.2-2.el8 + owner_id: 2698 + owner_name: jsnitsel + package_id: 61807 + package_name: tpm2-tss + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/tpm2-tss#0ece01c52edeff23de439582758aaf71d490beb0 + start_time: '2020-04-27 20:56:01.732158' + start_ts: 1588020961.73216 + state: 1 + task_id: 28218926 + version: 2.3.2 + volume_id: 9 + volume_name: rhel-8 +1181630: + build_id: 1181630 + cg_id: null + cg_name: null + completion_time: '2020-04-30 12:36:39.030929' + completion_ts: 1588250199.03093 + creation_event_id: 31204741 + creation_time: '2020-04-30 12:27:05.336081' + creation_ts: 1588249625.33608 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Net-SSLeay?#c5322816dc00449436c8f9992b9f2e2792cb2a8a + id: 1181630 + name: perl-Net-SSLeay + nvr: perl-Net-SSLeay-1.88-1.module+el8.3.0+6452+449fe210 + owner_id: 4066 + owner_name: mbs + package_id: 3365 + package_name: perl-Net-SSLeay + release: 1.module+el8.3.0+6452+449fe210 + source: git://pkgs.devel.redhat.com/rpms/perl-Net-SSLeay#c5322816dc00449436c8f9992b9f2e2792cb2a8a + start_time: '2020-04-30 12:27:05.336081' + start_ts: 1588249625.33608 + state: 1 + task_id: 28282608 + version: '1.88' + volume_id: 9 + volume_name: rhel-8 +1181673: + build_id: 1181673 + cg_id: null + cg_name: null + completion_time: '2020-04-30 13:06:07.574078' + completion_ts: 1588251967.57408 + creation_event_id: 31205994 + creation_time: '2020-04-30 13:04:11.619279' + creation_ts: 1588251851.61928 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-IO-Socket-SSL?#dd16f0b39a97feafe27ad4a5ce70d5d0d7955c99 + id: 1181673 + name: perl-IO-Socket-SSL + nvr: perl-IO-Socket-SSL-2.066-4.module+el8.3.0+6452+449fe210 + owner_id: 4066 + owner_name: mbs + package_id: 3364 + package_name: perl-IO-Socket-SSL + release: 4.module+el8.3.0+6452+449fe210 + source: git://pkgs.devel.redhat.com/rpms/perl-IO-Socket-SSL#dd16f0b39a97feafe27ad4a5ce70d5d0d7955c99 + start_time: '2020-04-30 13:04:11.619279' + start_ts: 1588251851.61928 + state: 1 + task_id: 28283776 + version: '2.066' + volume_id: 9 + volume_name: rhel-8 +1181897: + build_id: 1181897 + cg_id: null + cg_name: null + completion_time: '2020-04-30 23:28:28.737960' + completion_ts: 1588289308.73796 + creation_event_id: 31211982 + creation_time: '2020-04-30 21:59:46.942550' + creation_ts: 1588283986.94255 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/strace#0df7ce8190534a4a2c09c7f00ed18b311fb72722 + id: 1181897 + name: strace + nvr: strace-5.1-1.el8 + owner_id: 3756 + owner_name: esyromia + package_id: 3077 + package_name: strace + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/strace#0df7ce8190534a4a2c09c7f00ed18b311fb72722 + start_time: '2020-04-30 21:59:46.942550' + start_ts: 1588283986.94255 + state: 1 + task_id: 28294185 + version: '5.1' + volume_id: 9 + volume_name: rhel-8 +1184235: + build_id: 1184235 + cg_id: null + cg_name: null + completion_time: '2020-05-04 16:38:55.899519' + completion_ts: 1588610335.89952 + creation_event_id: 31275935 + creation_time: '2020-05-04 16:31:46.220026' + creation_ts: 1588609906.22003 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gnupg2#db5b2a68a75a1ebf713564b974ff4e1158f539eb + id: 1184235 + name: gnupg2 + nvr: gnupg2-2.2.20-2.el8 + owner_id: 118 + owner_name: tmraz + package_id: 11685 + package_name: gnupg2 + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/gnupg2#db5b2a68a75a1ebf713564b974ff4e1158f539eb + start_time: '2020-05-04 16:31:46.220026' + start_ts: 1588609906.22003 + state: 1 + task_id: 28358990 + version: 2.2.20 + volume_id: 9 + volume_name: rhel-8 +1184718: + build_id: 1184718 + cg_id: null + cg_name: null + completion_time: '2020-05-05 01:01:07.299066' + completion_ts: 1588640467.29907 + creation_event_id: 31282844 + creation_time: '2020-05-05 00:54:51.573829' + creation_ts: 1588640091.57383 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/tpm2-tools#c5abe9c474063c335f32988589f2c85294d49fa1 + id: 1184718 + name: tpm2-tools + nvr: tpm2-tools-4.1.1-1.el8 + owner_id: 2698 + owner_name: jsnitsel + package_id: 61806 + package_name: tpm2-tools + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/tpm2-tools#c5abe9c474063c335f32988589f2c85294d49fa1 + start_time: '2020-05-05 00:54:51.573829' + start_ts: 1588640091.57383 + state: 1 + task_id: 28370219 + version: 4.1.1 + volume_id: 9 + volume_name: rhel-8 +1186467: + build_id: 1186467 + cg_id: null + cg_name: null + completion_time: '2020-05-06 12:33:42.304413' + completion_ts: 1588768422.30441 + creation_event_id: 31306962 + creation_time: '2020-05-06 12:28:10.314659' + creation_ts: 1588768090.31466 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pciutils#a2eb174d9b0045bb26caa54a5689aa9be9ca7b03 + id: 1186467 + name: pciutils + nvr: pciutils-3.6.4-2.el8 + owner_id: 746 + owner_name: mhlavink + package_id: 2366 + package_name: pciutils + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/pciutils#a2eb174d9b0045bb26caa54a5689aa9be9ca7b03 + start_time: '2020-05-06 12:28:10.314659' + start_ts: 1588768090.31466 + state: 1 + task_id: 28406373 + version: 3.6.4 + volume_id: 9 + volume_name: rhel-8 +1186546: + build_id: 1186546 + cg_id: null + cg_name: null + completion_time: '2020-05-06 14:08:39.245102' + completion_ts: 1588774119.2451 + creation_event_id: 31308444 + creation_time: '2020-05-06 14:04:33.409776' + creation_ts: 1588773873.40978 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/logrotate#dfb1336f1fafd831e2b7eb09a2334b58a668c049 + id: 1186546 + name: logrotate + nvr: logrotate-3.14.0-4.el8 + owner_id: 889 + owner_name: kdudka + package_id: 2031 + package_name: logrotate + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/logrotate#dfb1336f1fafd831e2b7eb09a2334b58a668c049 + start_time: '2020-05-06 14:04:33.409776' + start_ts: 1588773873.40978 + state: 1 + task_id: 28409461 + version: 3.14.0 + volume_id: 9 + volume_name: rhel-8 +1186655: + build_id: 1186655 + cg_id: null + cg_name: null + completion_time: '2020-05-06 14:41:59.452513' + completion_ts: 1588776119.45251 + creation_event_id: 31309492 + creation_time: '2020-05-06 14:38:53.195795' + creation_ts: 1588775933.1958 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Mozilla-CA?#27c10e725abd9ecb238d019c371844c642c77970 + id: 1186655 + name: perl-Mozilla-CA + nvr: perl-Mozilla-CA-20160104-7.module+el8.3.0+6498+fb59cb73 + owner_id: 4066 + owner_name: mbs + package_id: 45517 + package_name: perl-Mozilla-CA + release: 7.module+el8.3.0+6498+fb59cb73 + source: git://pkgs.devel.redhat.com/rpms/perl-Mozilla-CA#27c10e725abd9ecb238d019c371844c642c77970 + start_time: '2020-05-06 14:38:53.195795' + start_ts: 1588775933.1958 + state: 1 + task_id: 28410473 + version: '20160104' + volume_id: 9 + volume_name: rhel-8 +1188151: + build_id: 1188151 + cg_id: null + cg_name: null + completion_time: '2020-05-07 17:44:02.769939' + completion_ts: 1588873442.76994 + creation_event_id: 31340664 + creation_time: '2020-05-07 17:34:57.540994' + creation_ts: 1588872897.54099 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cyrus-sasl#c0c907dee86d26e3a3a04cc5c7097ab4cf9bffaf + id: 1188151 + name: cyrus-sasl + nvr: cyrus-sasl-2.1.27-5.el8 + owner_id: 500 + owner_name: ssorce + package_id: 321 + package_name: cyrus-sasl + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/cyrus-sasl#c0c907dee86d26e3a3a04cc5c7097ab4cf9bffaf + start_time: '2020-05-07 17:34:57.540994' + start_ts: 1588872897.54099 + state: 1 + task_id: 28440565 + version: 2.1.27 + volume_id: 9 + volume_name: rhel-8 +1191977: + build_id: 1191977 + cg_id: null + cg_name: null + completion_time: '2020-05-13 04:27:44.210458' + completion_ts: 1589344064.21046 + creation_event_id: 31432451 + creation_time: '2020-05-12 22:05:28.811531' + creation_ts: 1589321128.81153 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gcc#33bdf4bb8812fb421f19ea90e4818e1311701ebf + id: 1191977 + name: gcc + nvr: gcc-8.3.1-5.1.el8 + owner_id: 1497 + owner_name: mpolacek + package_id: 517 + package_name: gcc + release: 5.1.el8 + source: git://pkgs.devel.redhat.com/rpms/gcc#33bdf4bb8812fb421f19ea90e4818e1311701ebf + start_time: '2020-05-12 22:05:28.811531' + start_ts: 1589321128.81153 + state: 1 + task_id: 28530916 + version: 8.3.1 + volume_id: 9 + volume_name: rhel-8 +1192639: + build_id: 1192639 + cg_id: null + cg_name: null + completion_time: '2020-05-13 18:44:38.136252' + completion_ts: 1589395478.13625 + creation_event_id: 31461780 + creation_time: '2020-05-13 18:40:33.735809' + creation_ts: 1589395233.73581 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libffi#2fa2de3fbfa5af6e65710811e9e24493da78b3f8 + id: 1192639 + name: libffi + nvr: libffi-3.1-22.el8 + owner_id: 665 + owner_name: dj + package_id: 1894 + package_name: libffi + release: 22.el8 + source: git://pkgs.devel.redhat.com/rpms/libffi#2fa2de3fbfa5af6e65710811e9e24493da78b3f8 + start_time: '2020-05-13 18:40:33.735809' + start_ts: 1589395233.73581 + state: 1 + task_id: 28562281 + version: '3.1' + volume_id: 9 + volume_name: rhel-8 +1194133: + build_id: 1194133 + cg_id: null + cg_name: null + completion_time: '2020-05-15 09:09:22.879622' + completion_ts: 1589533762.87962 + creation_event_id: 31484328 + creation_time: '2020-05-15 08:50:59.335336' + creation_ts: 1589532659.33534 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pam#90f1c85c9ed95cb7e857c02a3db654c018d6f9e7 + id: 1194133 + name: pam + nvr: pam-1.3.1-11.el8 + owner_id: 5361 + owner_name: ipedrosa + package_id: 2346 + package_name: pam + release: 11.el8 + source: git://pkgs.devel.redhat.com/rpms/pam#90f1c85c9ed95cb7e857c02a3db654c018d6f9e7 + start_time: '2020-05-15 08:50:59.335336' + start_ts: 1589532659.33534 + state: 1 + task_id: 28599231 + version: 1.3.1 + volume_id: 9 + volume_name: rhel-8 +1197484: + build_id: 1197484 + cg_id: null + cg_name: null + completion_time: '2020-05-19 10:30:36.443429' + completion_ts: 1589884236.44343 + creation_event_id: 31568626 + creation_time: '2020-05-19 10:25:15.586164' + creation_ts: 1589883915.58616 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/sed#240d31e9fa458dbec445d5b401ccf5e3b61e7860 + id: 1197484 + name: sed + nvr: sed-4.5-2.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 2987 + package_name: sed + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/sed#240d31e9fa458dbec445d5b401ccf5e3b61e7860 + start_time: '2020-05-19 10:25:15.586164' + start_ts: 1589883915.58616 + state: 1 + task_id: 28675560 + version: '4.5' + volume_id: 9 + volume_name: rhel-8 +1199395: + build_id: 1199395 + cg_id: null + cg_name: null + completion_time: '2020-05-20 20:19:47.714044' + completion_ts: 1590005987.71404 + creation_event_id: 31610858 + creation_time: '2020-05-20 20:12:44.224013' + creation_ts: 1590005564.22401 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmodulemd#33d6c648f9f382edf5f5a5bd19064846a01fefba + id: 1199395 + name: libmodulemd + nvr: libmodulemd-2.9.4-2.el8 + owner_id: 1014 + owner_name: sgallagh + package_id: 66634 + package_name: libmodulemd + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libmodulemd#33d6c648f9f382edf5f5a5bd19064846a01fefba + start_time: '2020-05-20 20:12:44.224013' + start_ts: 1590005564.22401 + state: 1 + task_id: 28728246 + version: 2.9.4 + volume_id: 9 + volume_name: rhel-8 +1199768: + build_id: 1199768 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:17:13.848999' + completion_ts: 1590070633.849 + creation_event_id: 31615963 + creation_time: '2020-05-21 14:14:29.868240' + creation_ts: 1590070469.86824 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-parent?#0745a547ff5c06111e8a7359668dbfb7ecc17f02 + id: 1199768 + name: perl-parent + nvr: perl-parent-0.237-2.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 16381 + package_name: perl-parent + release: 2.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-parent#0745a547ff5c06111e8a7359668dbfb7ecc17f02 + start_time: '2020-05-21 14:14:29.862263' + start_ts: 1590070469.86226 + state: 1 + task_id: 28736285 + version: '0.237' + volume_id: 9 + volume_name: rhel-8 +1199771: + build_id: 1199771 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:18:19.681110' + completion_ts: 1590070699.68111 + creation_event_id: 31615986 + creation_time: '2020-05-21 14:14:57.784574' + creation_ts: 1590070497.78457 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-constant?#4af273882e4792ef4de7828cb7b1086328b929f2 + id: 1199771 + name: perl-constant + nvr: perl-constant-1.33-1001.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 41553 + package_name: perl-constant + release: 1001.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-constant#4af273882e4792ef4de7828cb7b1086328b929f2 + start_time: '2020-05-21 14:14:57.771415' + start_ts: 1590070497.77141 + state: 1 + task_id: 28736291 + version: '1.33' + volume_id: 9 + volume_name: rhel-8 +1199772: + build_id: 1199772 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:18:19.677596' + completion_ts: 1590070699.6776 + creation_event_id: 31615987 + creation_time: '2020-05-21 14:14:57.785993' + creation_ts: 1590070497.78599 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-libnet?#ad7ad179beefa33c65fc063c1ea3e12e66715a9e + id: 1199772 + name: perl-libnet + nvr: perl-libnet-3.11-4.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 2475 + package_name: perl-libnet + release: 4.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-libnet#ad7ad179beefa33c65fc063c1ea3e12e66715a9e + start_time: '2020-05-21 14:14:57.774248' + start_ts: 1590070497.77425 + state: 1 + task_id: 28736287 + version: '3.11' + volume_id: 9 + volume_name: rhel-8 +1199774: + build_id: 1199774 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:20:32.391116' + completion_ts: 1590070832.39112 + creation_event_id: 31615999 + creation_time: '2020-05-21 14:15:29.417697' + creation_ts: 1590070529.4177 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-URI?#027d13271cf824e7a6631986583bf653e4c77f47 + id: 1199774 + name: perl-URI + nvr: perl-URI-1.76-5.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 2458 + package_name: perl-URI + release: 5.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-URI#027d13271cf824e7a6631986583bf653e4c77f47 + start_time: '2020-05-21 14:15:29.409513' + start_ts: 1590070529.40951 + state: 1 + task_id: 28736297 + version: '1.76' + volume_id: 9 + volume_name: rhel-8 +1199779: + build_id: 1199779 + cg_id: null + cg_name: null + completion_time: '2020-05-21 20:10:31.226453' + completion_ts: 1590091831.22645 + creation_event_id: 31616015 + creation_time: '2020-05-21 14:15:43.406477' + creation_ts: 1590070543.40648 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-threads?#8ed55d71acb8c5e6980d607ce35396e0b25cd373 + id: 1199779 + name: perl-threads + nvr: perl-threads-2.22-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 36166 + package_name: perl-threads + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-threads#8ed55d71acb8c5e6980d607ce35396e0b25cd373 + start_time: '2020-05-21 14:15:43.392149' + start_ts: 1590070543.39215 + state: 1 + task_id: 28736290 + version: '2.22' + volume_id: 9 + volume_name: rhel-8 +1199781: + build_id: 1199781 + cg_id: null + cg_name: null + completion_time: '2020-05-21 20:09:44.711337' + completion_ts: 1590091784.71134 + creation_event_id: 31616017 + creation_time: '2020-05-21 14:15:43.412474' + creation_ts: 1590070543.41247 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Unicode-Normalize?#d1b20eff4be9b5cb1bdeb7dc8ab5d967c6d1b4a0 + id: 1199781 + name: perl-Unicode-Normalize + nvr: perl-Unicode-Normalize-1.26-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 54490 + package_name: perl-Unicode-Normalize + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Unicode-Normalize#d1b20eff4be9b5cb1bdeb7dc8ab5d967c6d1b4a0 + start_time: '2020-05-21 14:15:43.400270' + start_ts: 1590070543.40027 + state: 1 + task_id: 28736294 + version: '1.26' + volume_id: 9 + volume_name: rhel-8 +1199784: + build_id: 1199784 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:18:30.401046' + completion_ts: 1590070710.40105 + creation_event_id: 31616036 + creation_time: '2020-05-21 14:16:10.725307' + creation_ts: 1590070570.72531 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Term-Cap?#edbaf220c3c1a0db1f6724a360da51d655f73af3 + id: 1199784 + name: perl-Term-Cap + nvr: perl-Term-Cap-1.17-396.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 54487 + package_name: perl-Term-Cap + release: 396.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Term-Cap#edbaf220c3c1a0db1f6724a360da51d655f73af3 + start_time: '2020-05-21 14:16:10.718000' + start_ts: 1590070570.718 + state: 1 + task_id: 28736314 + version: '1.17' + volume_id: 9 + volume_name: rhel-8 +1199788: + build_id: 1199788 + cg_id: null + cg_name: null + completion_time: '2020-05-21 20:23:57.412766' + completion_ts: 1590092637.41277 + creation_event_id: 31616045 + creation_time: '2020-05-21 14:16:17.800056' + creation_ts: 1590070577.80006 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-threads-shared?#a4383b6fabba11df3c7afa875df8adabe2f7d200 + id: 1199788 + name: perl-threads-shared + nvr: perl-threads-shared-1.60-440.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 36167 + package_name: perl-threads-shared + release: 440.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-threads-shared#a4383b6fabba11df3c7afa875df8adabe2f7d200 + start_time: '2020-05-21 14:16:17.791128' + start_ts: 1590070577.79113 + state: 1 + task_id: 28736306 + version: '1.60' + volume_id: 9 + volume_name: rhel-8 +1199789: + build_id: 1199789 + cg_id: null + cg_name: null + completion_time: '2020-05-21 20:20:59.337633' + completion_ts: 1590092459.33763 + creation_event_id: 31616067 + creation_time: '2020-05-21 14:16:47.985586' + creation_ts: 1590070607.98559 + epoch: 3 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Scalar-List-Utils?#f481bb20621f47c13b4ca4a614f186eba3a602bd + id: 1199789 + name: perl-Scalar-List-Utils + nvr: perl-Scalar-List-Utils-1.53-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 2447 + package_name: perl-Scalar-List-Utils + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Scalar-List-Utils#f481bb20621f47c13b4ca4a614f186eba3a602bd + start_time: '2020-05-21 14:16:47.979662' + start_ts: 1590070607.97966 + state: 1 + task_id: 28736336 + version: '1.53' + volume_id: 9 + volume_name: rhel-8 +1199790: + build_id: 1199790 + cg_id: null + cg_name: null + completion_time: '2020-05-21 20:25:37.186777' + completion_ts: 1590092737.18678 + creation_event_id: 31616068 + creation_time: '2020-05-21 14:16:47.989179' + creation_ts: 1590070607.98918 + epoch: 4 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Socket?#8ec06c725848d52bb689520f9c1f4406511565c2 + id: 1199790 + name: perl-Socket + nvr: perl-Socket-2.029-4.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 36165 + package_name: perl-Socket + release: 4.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Socket#8ec06c725848d52bb689520f9c1f4406511565c2 + start_time: '2020-05-21 14:16:47.983624' + start_ts: 1590070607.98362 + state: 1 + task_id: 28736332 + version: '2.029' + volume_id: 9 + volume_name: rhel-8 +1199793: + build_id: 1199793 + cg_id: null + cg_name: null + completion_time: '2020-05-21 20:24:51.567883' + completion_ts: 1590092691.56788 + creation_event_id: 31616071 + creation_time: '2020-05-21 14:16:48.003995' + creation_ts: 1590070608.00399 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Storable?#57ba4d6ece677614b76e5227e10f8fa9fd09b74c + id: 1199793 + name: perl-Storable + nvr: perl-Storable-3.15-442.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 2449 + package_name: perl-Storable + release: 442.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Storable#57ba4d6ece677614b76e5227e10f8fa9fd09b74c + start_time: '2020-05-21 14:16:47.997076' + start_ts: 1590070607.99708 + state: 1 + task_id: 28736322 + version: '3.15' + volume_id: 9 + volume_name: rhel-8 +1199796: + build_id: 1199796 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:20:49.905494' + completion_ts: 1590070849.90549 + creation_event_id: 31616075 + creation_time: '2020-05-21 14:16:57.415920' + creation_ts: 1590070617.41592 + epoch: 4 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Pod-Usage?#0ebd9df350acf46cced73739fbd63fd2d2fe59b6 + id: 1199796 + name: perl-Pod-Usage + nvr: perl-Pod-Usage-1.69-396.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 39760 + package_name: perl-Pod-Usage + release: 396.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Pod-Usage#0ebd9df350acf46cced73739fbd63fd2d2fe59b6 + start_time: '2020-05-21 14:16:57.404120' + start_ts: 1590070617.40412 + state: 1 + task_id: 28736340 + version: '1.69' + volume_id: 9 + volume_name: rhel-8 +1199798: + build_id: 1199798 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:21:36.413240' + completion_ts: 1590070896.41324 + creation_event_id: 31616077 + creation_time: '2020-05-21 14:16:57.722966' + creation_ts: 1590070617.72297 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Term-ANSIColor?#93816faf4f5b169c59c277201237c2e2fb1c036e + id: 1199798 + name: perl-Term-ANSIColor + nvr: perl-Term-ANSIColor-4.06-397.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 54486 + package_name: perl-Term-ANSIColor + release: 397.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Term-ANSIColor#93816faf4f5b169c59c277201237c2e2fb1c036e + start_time: '2020-05-21 14:16:57.715048' + start_ts: 1590070617.71505 + state: 1 + task_id: 28736316 + version: '4.06' + volume_id: 9 + volume_name: rhel-8 +1199800: + build_id: 1199800 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:19:55.653247' + completion_ts: 1590070795.65325 + creation_event_id: 31616120 + creation_time: '2020-05-21 14:17:34.175715' + creation_ts: 1590070654.17571 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Pod-Perldoc?#fba074b2b9728e2daa99ed7b1175511d514b8624 + id: 1199800 + name: perl-Pod-Perldoc + nvr: perl-Pod-Perldoc-3.28.01-442.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 36163 + package_name: perl-Pod-Perldoc + release: 442.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Pod-Perldoc#fba074b2b9728e2daa99ed7b1175511d514b8624 + start_time: '2020-05-21 14:17:34.167221' + start_ts: 1590070654.16722 + state: 1 + task_id: 28736346 + version: 3.28.01 + volume_id: 9 + volume_name: rhel-8 +1199801: + build_id: 1199801 + cg_id: null + cg_name: null + completion_time: '2020-05-22 07:51:02.747374' + completion_ts: 1590133862.74737 + creation_event_id: 31624733 + creation_time: '2020-05-22 07:49:26.809468' + creation_ts: 1590133766.80947 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Pod-Escapes?#3dd5c3d659ee0d8d6364f053c7420a002909d47a + id: 1199801 + name: perl-Pod-Escapes + nvr: perl-Pod-Escapes-1.07-396.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 3802 + package_name: perl-Pod-Escapes + release: 396.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Pod-Escapes#3dd5c3d659ee0d8d6364f053c7420a002909d47a + start_time: '2020-05-22 07:49:26.786410' + start_ts: 1590133766.78641 + state: 1 + task_id: 28745396 + version: '1.07' + volume_id: 9 + volume_name: rhel-8 +1199805: + build_id: 1199805 + cg_id: null + cg_name: null + completion_time: '2020-05-21 20:21:15.145664' + completion_ts: 1590092475.14566 + creation_event_id: 31616138 + creation_time: '2020-05-21 14:17:52.599205' + creation_ts: 1590070672.59921 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-PathTools?#47a576d5a31ad953be5b67d349489628bd9d433a + id: 1199805 + name: perl-PathTools + nvr: perl-PathTools-3.78-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 3962 + package_name: perl-PathTools + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-PathTools#47a576d5a31ad953be5b67d349489628bd9d433a + start_time: '2020-05-21 14:17:52.586970' + start_ts: 1590070672.58697 + state: 1 + task_id: 28736354 + version: '3.78' + volume_id: 9 + volume_name: rhel-8 +1199807: + build_id: 1199807 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:21:58.678200' + completion_ts: 1590070918.6782 + creation_event_id: 31616151 + creation_time: '2020-05-21 14:18:01.106014' + creation_ts: 1590070681.10601 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Text-Tabs+Wrap?#32a761cca5b32e34f7adf479cdd84d10c4e87ce0 + id: 1199807 + name: perl-Text-Tabs+Wrap + nvr: perl-Text-Tabs+Wrap-2013.0523-396.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 54488 + package_name: perl-Text-Tabs+Wrap + release: 396.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Text-Tabs+Wrap#32a761cca5b32e34f7adf479cdd84d10c4e87ce0 + start_time: '2020-05-21 14:18:01.096631' + start_ts: 1590070681.09663 + state: 1 + task_id: 28736362 + version: '2013.0523' + volume_id: 9 + volume_name: rhel-8 +1199810: + build_id: 1199810 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:20:32.384367' + completion_ts: 1590070832.38437 + creation_event_id: 31616154 + creation_time: '2020-05-21 14:18:01.209428' + creation_ts: 1590070681.20943 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Time-Local?#df4cbfe6972320b3ca568bcadb7050e72fcf00e0 + id: 1199810 + name: perl-Time-Local + nvr: perl-Time-Local-1.280-2.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 41554 + package_name: perl-Time-Local + release: 2.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Time-Local#df4cbfe6972320b3ca568bcadb7050e72fcf00e0 + start_time: '2020-05-21 14:18:01.201207' + start_ts: 1590070681.20121 + state: 1 + task_id: 28736298 + version: '1.280' + volume_id: 9 + volume_name: rhel-8 +1199812: + build_id: 1199812 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:20:53.219492' + completion_ts: 1590070853.21949 + creation_event_id: 31616168 + creation_time: '2020-05-21 14:18:22.537767' + creation_ts: 1590070702.53777 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-podlators?#d5359a0cdc7ab969cb1eb9d82b5e05ad7f28c5a4 + id: 1199812 + name: perl-podlators + nvr: perl-podlators-4.12-2.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 37592 + package_name: perl-podlators + release: 2.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-podlators#d5359a0cdc7ab969cb1eb9d82b5e05ad7f28c5a4 + start_time: '2020-05-21 14:18:22.528123' + start_ts: 1590070702.52812 + state: 1 + task_id: 28736344 + version: '4.12' + volume_id: 9 + volume_name: rhel-8 +1199814: + build_id: 1199814 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:21:34.142135' + completion_ts: 1590070894.14213 + creation_event_id: 31616189 + creation_time: '2020-05-21 14:18:47.023860' + creation_ts: 1590070727.02386 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Text-ParseWords?#765e399d197baa98a1a14c0b31aa9d6ca2110146 + id: 1199814 + name: perl-Text-ParseWords + nvr: perl-Text-ParseWords-3.30-396.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 41461 + package_name: perl-Text-ParseWords + release: 396.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Text-ParseWords#765e399d197baa98a1a14c0b31aa9d6ca2110146 + start_time: '2020-05-21 14:18:47.018134' + start_ts: 1590070727.01813 + state: 1 + task_id: 28736307 + version: '3.30' + volume_id: 9 + volume_name: rhel-8 +1199818: + build_id: 1199818 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:22:46.003798' + completion_ts: 1590070966.0038 + creation_event_id: 31616291 + creation_time: '2020-05-21 14:19:38.517885' + creation_ts: 1590070778.51788 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Pod-Simple?#b0f3b28a0353329ad46090740c94524a1e28bb3b + id: 1199818 + name: perl-Pod-Simple + nvr: perl-Pod-Simple-3.40-1.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 3800 + package_name: perl-Pod-Simple + release: 1.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Pod-Simple#b0f3b28a0353329ad46090740c94524a1e28bb3b + start_time: '2020-05-21 14:19:38.511350' + start_ts: 1590070778.51135 + state: 1 + task_id: 28736359 + version: '3.40' + volume_id: 9 + volume_name: rhel-8 +1199829: + build_id: 1199829 + cg_id: null + cg_name: null + completion_time: '2020-05-21 20:11:49.806741' + completion_ts: 1590091909.80674 + creation_event_id: 31616449 + creation_time: '2020-05-21 14:22:44.202018' + creation_ts: 1590070964.20202 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-MIME-Base64?#17497a33e070ae0e163e5e04bf3553809c26811a + id: 1199829 + name: perl-MIME-Base64 + nvr: perl-MIME-Base64-3.15-1001.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 2423 + package_name: perl-MIME-Base64 + release: 1001.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-MIME-Base64#17497a33e070ae0e163e5e04bf3553809c26811a + start_time: '2020-05-21 14:22:44.188892' + start_ts: 1590070964.18889 + state: 1 + task_id: 28736691 + version: '3.15' + volume_id: 9 + volume_name: rhel-8 +1199836: + build_id: 1199836 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:26:14.839610' + completion_ts: 1590071174.83961 + creation_event_id: 31616494 + creation_time: '2020-05-21 14:24:33.755020' + creation_ts: 1590071073.75502 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Getopt-Long?#7aa1a1094195ac1ce335d6e762b1b1c65dc4f91d + id: 1199836 + name: perl-Getopt-Long + nvr: perl-Getopt-Long-2.51-1.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 3960 + package_name: perl-Getopt-Long + release: 1.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Getopt-Long#7aa1a1094195ac1ce335d6e762b1b1c65dc4f91d + start_time: '2020-05-21 14:24:33.747894' + start_ts: 1590071073.74789 + state: 1 + task_id: 28736786 + version: '2.51' + volume_id: 9 + volume_name: rhel-8 +1199838: + build_id: 1199838 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:27:28.062437' + completion_ts: 1590071248.06244 + creation_event_id: 31616510 + creation_time: '2020-05-21 14:25:01.416427' + creation_ts: 1590071101.41643 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-IO-Socket-IP?#6bd2db3869840ee6fb738be2a8347f31bbd41066 + id: 1199838 + name: perl-IO-Socket-IP + nvr: perl-IO-Socket-IP-0.39-6.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 36475 + package_name: perl-IO-Socket-IP + release: 6.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-IO-Socket-IP#6bd2db3869840ee6fb738be2a8347f31bbd41066 + start_time: '2020-05-21 14:25:01.407542' + start_ts: 1590071101.40754 + state: 1 + task_id: 28736773 + version: '0.39' + volume_id: 9 + volume_name: rhel-8 +1199840: + build_id: 1199840 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:28:06.203386' + completion_ts: 1590071286.20339 + creation_event_id: 31616520 + creation_time: '2020-05-21 14:25:19.550872' + creation_ts: 1590071119.55087 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-HTTP-Tiny?#d24e8180e119034568c8940b4c20e89e6e16ecdf + id: 1199840 + name: perl-HTTP-Tiny + nvr: perl-HTTP-Tiny-0.076-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 41258 + package_name: perl-HTTP-Tiny + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-HTTP-Tiny#d24e8180e119034568c8940b4c20e89e6e16ecdf + start_time: '2020-05-21 14:25:19.542041' + start_ts: 1590071119.54204 + state: 1 + task_id: 28736785 + version: '0.076' + volume_id: 9 + volume_name: rhel-8 +1199848: + build_id: 1199848 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:28:59.343941' + completion_ts: 1590071339.34394 + creation_event_id: 31616559 + creation_time: '2020-05-21 14:26:19.799191' + creation_ts: 1590071179.79919 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-File-Temp?#c7e3b920226a70b106e8caddd7a88d47906ae28f + id: 1199848 + name: perl-File-Temp + nvr: perl-File-Temp-0.230.900-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 3961 + package_name: perl-File-Temp + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-File-Temp#c7e3b920226a70b106e8caddd7a88d47906ae28f + start_time: '2020-05-21 14:26:19.792632' + start_ts: 1590071179.79263 + state: 1 + task_id: 28736798 + version: 0.230.900 + volume_id: 9 + volume_name: rhel-8 +1199849: + build_id: 1199849 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:28:59.369915' + completion_ts: 1590071339.36992 + creation_event_id: 31616574 + creation_time: '2020-05-21 14:27:06.063314' + creation_ts: 1590071226.06331 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-File-Path?#06ac403f292c3d85edfed6626009a0b488b675ce + id: 1199849 + name: perl-File-Path + nvr: perl-File-Path-2.16-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 3963 + package_name: perl-File-Path + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-File-Path#06ac403f292c3d85edfed6626009a0b488b675ce + start_time: '2020-05-21 14:27:06.057077' + start_ts: 1590071226.05708 + state: 1 + task_id: 28736803 + version: '2.16' + volume_id: 9 + volume_name: rhel-8 +1199853: + build_id: 1199853 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:30:26.225973' + completion_ts: 1590071426.22597 + creation_event_id: 31616615 + creation_time: '2020-05-21 14:27:57.576169' + creation_ts: 1590071277.57617 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Exporter?#fb34c2082cc7575a73638809182f2e4b6d11f458 + id: 1199853 + name: perl-Exporter + nvr: perl-Exporter-5.73-440.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 30796 + package_name: perl-Exporter + release: 440.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Exporter#fb34c2082cc7575a73638809182f2e4b6d11f458 + start_time: '2020-05-21 14:27:57.568751' + start_ts: 1590071277.56875 + state: 1 + task_id: 28736844 + version: '5.73' + volume_id: 9 + volume_name: rhel-8 +1199858: + build_id: 1199858 + cg_id: null + cg_name: null + completion_time: '2020-05-21 22:04:56.569342' + completion_ts: 1590098696.56934 + creation_event_id: 31616620 + creation_time: '2020-05-21 14:27:57.692864' + creation_ts: 1590071277.69286 + epoch: 4 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Encode?#bde926956c2f86868dbc6e6f3a403c939c5a8f36 + id: 1199858 + name: perl-Encode + nvr: perl-Encode-3.01-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 18434 + package_name: perl-Encode + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Encode#bde926956c2f86868dbc6e6f3a403c939c5a8f36 + start_time: '2020-05-21 14:27:57.685987' + start_ts: 1590071277.68599 + state: 1 + task_id: 28736864 + version: '3.01' + volume_id: 9 + volume_name: rhel-8 +1199861: + build_id: 1199861 + cg_id: null + cg_name: null + completion_time: '2020-05-21 21:42:47.922757' + completion_ts: 1590097367.92276 + creation_event_id: 31616656 + creation_time: '2020-05-21 14:28:59.435401' + creation_ts: 1590071339.4354 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Digest-MD5?#1603acc6965a78668bacb2e62ca6b027d3c5d0df + id: 1199861 + name: perl-Digest-MD5 + nvr: perl-Digest-MD5-2.55-397.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 2404 + package_name: perl-Digest-MD5 + release: 397.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Digest-MD5#1603acc6965a78668bacb2e62ca6b027d3c5d0df + start_time: '2020-05-21 14:28:59.425078' + start_ts: 1590071339.42508 + state: 1 + task_id: 28736871 + version: '2.55' + volume_id: 9 + volume_name: rhel-8 +1199862: + build_id: 1199862 + cg_id: null + cg_name: null + completion_time: '2020-05-21 21:47:02.407838' + completion_ts: 1590097622.40784 + creation_event_id: 31616669 + creation_time: '2020-05-21 14:29:15.244590' + creation_ts: 1590071355.24459 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Data-Dumper?#1d21269add12fd8fbe360cdc09017174847a4060 + id: 1199862 + name: perl-Data-Dumper + nvr: perl-Data-Dumper-2.174-440.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 35642 + package_name: perl-Data-Dumper + release: 440.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Data-Dumper#1d21269add12fd8fbe360cdc09017174847a4060 + start_time: '2020-05-21 14:29:15.237710' + start_ts: 1590071355.23771 + state: 1 + task_id: 28736919 + version: '2.174' + volume_id: 9 + volume_name: rhel-8 +1199865: + build_id: 1199865 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:31:41.533999' + completion_ts: 1590071501.534 + creation_event_id: 31616688 + creation_time: '2020-05-21 14:29:49.329974' + creation_ts: 1590071389.32997 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Digest?#9dc1b1346b24716e70d3f5cb8f5420f84bc55c67 + id: 1199865 + name: perl-Digest + nvr: perl-Digest-1.17-396.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 36160 + package_name: perl-Digest + release: 396.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Digest#9dc1b1346b24716e70d3f5cb8f5420f84bc55c67 + start_time: '2020-05-21 14:29:49.322950' + start_ts: 1590071389.32295 + state: 1 + task_id: 28736878 + version: '1.17' + volume_id: 9 + volume_name: rhel-8 +1199877: + build_id: 1199877 + cg_id: null + cg_name: null + completion_time: '2020-05-21 14:32:55.881953' + completion_ts: 1590071575.88195 + creation_event_id: 31616771 + creation_time: '2020-05-21 14:31:18.755153' + creation_ts: 1590071478.75515 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl-Carp?#04c91a3b8ec529e0e5235662631fc89245a2ff68 + id: 1199877 + name: perl-Carp + nvr: perl-Carp-1.50-439.module+el8.3.0+6718+7f269185 + owner_id: 4066 + owner_name: mbs + package_id: 36159 + package_name: perl-Carp + release: 439.module+el8.3.0+6718+7f269185 + source: git://pkgs.devel.redhat.com/rpms/perl-Carp#04c91a3b8ec529e0e5235662631fc89245a2ff68 + start_time: '2020-05-21 14:31:18.748915' + start_ts: 1590071478.74891 + state: 1 + task_id: 28736967 + version: '1.50' + volume_id: 9 + volume_name: rhel-8 +1201056: + build_id: 1201056 + cg_id: null + cg_name: null + completion_time: '2020-05-22 10:41:32.240704' + completion_ts: 1590144092.2407 + creation_event_id: 31635781 + creation_time: '2020-05-22 10:34:23.822607' + creation_ts: 1590143663.82261 + epoch: 14 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libpcap#b73f453589e6d72199ceb11583a7fe2cf4686e81 + id: 1201056 + name: libpcap + nvr: libpcap-1.9.1-4.el8 + owner_id: 3573 + owner_name: mruprich + package_id: 1953 + package_name: libpcap + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libpcap#b73f453589e6d72199ceb11583a7fe2cf4686e81 + start_time: '2020-05-22 10:34:23.753027' + start_ts: 1590143663.75303 + state: 1 + task_id: 28754143 + version: 1.9.1 + volume_id: 9 + volume_name: rhel-8 +1201127: + build_id: 1201127 + cg_id: null + cg_name: null + completion_time: '2020-05-22 11:47:01.135038' + completion_ts: 1590148021.13504 + creation_event_id: 31636603 + creation_time: '2020-05-22 11:43:37.897300' + creation_ts: 1590147817.8973 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libcap#a9adb530869e5daea60e6843b25ad9366ce1e461 + id: 1201127 + name: libcap + nvr: libcap-2.26-4.el8 + owner_id: 3737 + owner_name: jvymazal + package_id: 1879 + package_name: libcap + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libcap#a9adb530869e5daea60e6843b25ad9366ce1e461 + start_time: '2020-05-22 11:43:37.876637' + start_ts: 1590147817.87664 + state: 1 + task_id: 28755520 + version: '2.26' + volume_id: 9 + volume_name: rhel-8 +1204647: + build_id: 1204647 + cg_id: null + cg_name: null + completion_time: '2020-05-26 06:48:50.272742' + completion_ts: 1590475730.27274 + creation_event_id: 31711810 + creation_time: '2020-05-26 06:43:15.847436' + creation_ts: 1590475395.84744 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cups#b18a6b32f934fb8aa3222bcdbdea84927f083ece + id: 1204647 + name: cups + nvr: cups-2.2.6-38.el8 + owner_id: 3328 + owner_name: zdohnal + package_id: 316 + package_name: cups + release: 38.el8 + source: git://pkgs.devel.redhat.com/rpms/cups#b18a6b32f934fb8aa3222bcdbdea84927f083ece + start_time: '2020-05-26 06:43:15.842658' + start_ts: 1590475395.84266 + state: 1 + task_id: 28826239 + version: 2.2.6 + volume_id: 9 + volume_name: rhel-8 +1204768: + build_id: 1204768 + cg_id: null + cg_name: null + completion_time: '2020-05-26 11:14:45.864224' + completion_ts: 1590491685.86422 + creation_event_id: 31715954 + creation_time: '2020-05-26 11:10:52.183228' + creation_ts: 1590491452.18323 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/lz4#ca2d5612332f6948dce147ec43cb271ccfdfb735 + id: 1204768 + name: lz4 + nvr: lz4-1.8.3-2.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 57477 + package_name: lz4 + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/lz4#ca2d5612332f6948dce147ec43cb271ccfdfb735 + start_time: '2020-05-26 11:10:52.174674' + start_ts: 1590491452.17467 + state: 1 + task_id: 28833947 + version: 1.8.3 + volume_id: 9 + volume_name: rhel-8 +1204919: + build_id: 1204919 + cg_id: null + cg_name: null + completion_time: '2020-05-26 17:42:37.876652' + completion_ts: 1590514957.87665 + creation_event_id: 31720981 + creation_time: '2020-05-26 17:05:28.620475' + creation_ts: 1590512728.62048 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libkcapi#e7c75f28b61bc90589c65f538e639844b1df7c82 + id: 1204919 + name: libkcapi + nvr: libkcapi-1.2.0-2.el8 + owner_id: 5442 + owner_name: shebburn + package_id: 67846 + package_name: libkcapi + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libkcapi#e7c75f28b61bc90589c65f538e639844b1df7c82 + start_time: '2020-05-26 17:05:28.613633' + start_ts: 1590512728.61363 + state: 1 + task_id: 28842358 + version: 1.2.0 + volume_id: 9 + volume_name: rhel-8 +1207223: + build_id: 1207223 + cg_id: null + cg_name: null + completion_time: '2020-05-28 12:41:58.867376' + completion_ts: 1590669718.86738 + creation_event_id: 31751282 + creation_time: '2020-05-28 12:35:41.006615' + creation_ts: 1590669341.00661 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/unbound#d7853b8bd50cf012cb548ce7b3a0e7cb3f3b150f + id: 1207223 + name: unbound + nvr: unbound-1.7.3-14.el8 + owner_id: 3783 + owner_name: akhaitov + package_id: 17573 + package_name: unbound + release: 14.el8 + source: git://pkgs.devel.redhat.com/rpms/unbound#d7853b8bd50cf012cb548ce7b3a0e7cb3f3b150f + start_time: '2020-05-28 12:35:40.985083' + start_ts: 1590669340.98508 + state: 1 + task_id: 28888717 + version: 1.7.3 + volume_id: 9 + volume_name: rhel-8 +1207296: + build_id: 1207296 + cg_id: null + cg_name: null + completion_time: '2020-05-28 17:07:58.443299' + completion_ts: 1590685678.4433 + creation_event_id: 31753614 + creation_time: '2020-05-28 16:59:06.106200' + creation_ts: 1590685146.1062 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pcre2#883d23d3f0c3e873fd4cf0e8d312f7f88d65c922 + id: 1207296 + name: pcre2 + nvr: pcre2-10.32-2.el8 + owner_id: 1207 + owner_name: ppisar + package_id: 61793 + package_name: pcre2 + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/pcre2#883d23d3f0c3e873fd4cf0e8d312f7f88d65c922 + start_time: '2020-05-28 16:59:06.086978' + start_ts: 1590685146.08698 + state: 1 + task_id: 28891915 + version: '10.32' + volume_id: 9 + volume_name: rhel-8 +1212651: + build_id: 1212651 + cg_id: null + cg_name: null + completion_time: '2020-06-01 22:49:06.035580' + completion_ts: 1591051746.03558 + creation_event_id: 31828022 + creation_time: '2020-06-01 22:41:16.787442' + creation_ts: 1591051276.78744 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gpgme#c5b0bb35458b00686ad55ba854a03ca66ade501e + id: 1212651 + name: gpgme + nvr: gpgme-1.13.1-3.el8 + owner_id: 4262 + owner_name: jkucera + package_id: 4527 + package_name: gpgme + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/gpgme#c5b0bb35458b00686ad55ba854a03ca66ade501e + start_time: '2020-06-01 22:41:16.780363' + start_ts: 1591051276.78036 + state: 1 + task_id: 28983574 + version: 1.13.1 + volume_id: 9 + volume_name: rhel-8 +1213699: + build_id: 1213699 + cg_id: null + cg_name: null + completion_time: '2020-06-03 09:17:51.389797' + completion_ts: 1591175871.3898 + creation_event_id: 31910138 + creation_time: '2020-06-03 09:05:05.660670' + creation_ts: 1591175105.66067 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/vim#fdc3ac9d1ef5d34358fb91217d31697cb542cf7a + id: 1213699 + name: vim + nvr: vim-8.0.1763-15.el8 + owner_id: 3328 + owner_name: zdohnal + package_id: 1179 + package_name: vim + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/vim#fdc3ac9d1ef5d34358fb91217d31697cb542cf7a + start_time: '2020-06-03 09:05:05.655534' + start_ts: 1591175105.65553 + state: 1 + task_id: 29032476 + version: 8.0.1763 + volume_id: 9 + volume_name: rhel-8 +1215431: + build_id: 1215431 + cg_id: null + cg_name: null + completion_time: '2020-06-04 15:54:52.610736' + completion_ts: 1591286092.61074 + creation_event_id: 31945895 + creation_time: '2020-06-04 15:50:04.403626' + creation_ts: 1591285804.40363 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libtalloc#3687b59e6cf4aaf3d0da25a16e094674d2214cf3 + id: 1215431 + name: libtalloc + nvr: libtalloc-2.3.1-2.el8 + owner_id: 5169 + owner_name: yboukris + package_id: 18056 + package_name: libtalloc + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libtalloc#3687b59e6cf4aaf3d0da25a16e094674d2214cf3 + start_time: '2020-06-04 15:50:04.397732' + start_ts: 1591285804.39773 + state: 1 + task_id: 29074961 + version: 2.3.1 + volume_id: 9 + volume_name: rhel-8 +1215433: + build_id: 1215433 + cg_id: null + cg_name: null + completion_time: '2020-06-04 16:02:08.548244' + completion_ts: 1591286528.54824 + creation_event_id: 31945966 + creation_time: '2020-06-04 15:51:41.815452' + creation_ts: 1591285901.81545 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libtdb#1006b8a06600b7d78afcbb2dd342e183688df57a + id: 1215433 + name: libtdb + nvr: libtdb-1.4.3-1.el8 + owner_id: 5169 + owner_name: yboukris + package_id: 18057 + package_name: libtdb + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libtdb#1006b8a06600b7d78afcbb2dd342e183688df57a + start_time: '2020-06-04 15:51:41.808581' + start_ts: 1591285901.80858 + state: 1 + task_id: 29074981 + version: 1.4.3 + volume_id: 9 + volume_name: rhel-8 +1215600: + build_id: 1215600 + cg_id: null + cg_name: null + completion_time: '2020-06-04 17:16:35.980679' + completion_ts: 1591290995.98068 + creation_event_id: 31947308 + creation_time: '2020-06-04 17:11:49.737302' + creation_ts: 1591290709.7373 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libpsl#752b285122bce7c00a05be51e81f253d6ee8c00a + id: 1215600 + name: libpsl + nvr: libpsl-0.20.2-6.el8 + owner_id: 889 + owner_name: kdudka + package_id: 59664 + package_name: libpsl + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/libpsl#752b285122bce7c00a05be51e81f253d6ee8c00a + start_time: '2020-06-04 17:11:49.731555' + start_ts: 1591290709.73155 + state: 1 + task_id: 29076641 + version: 0.20.2 + volume_id: 9 + volume_name: rhel-8 +1215701: + build_id: 1215701 + cg_id: null + cg_name: null + completion_time: '2020-06-04 18:13:03.513394' + completion_ts: 1591294383.51339 + creation_event_id: 31948092 + creation_time: '2020-06-04 18:07:33.451389' + creation_ts: 1591294053.45139 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/xfsprogs#987337e3705b179fdad99c3c5217eb137d463de4 + id: 1215701 + name: xfsprogs + nvr: xfsprogs-5.0.0-4.el8 + owner_id: 427 + owner_name: esandeen + package_id: 796 + package_name: xfsprogs + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/xfsprogs#987337e3705b179fdad99c3c5217eb137d463de4 + start_time: '2020-06-04 18:07:33.444621' + start_ts: 1591294053.44462 + state: 1 + task_id: 29078082 + version: 5.0.0 + volume_id: 9 + volume_name: rhel-8 +1216822: + build_id: 1216822 + cg_id: null + cg_name: null + completion_time: '2020-06-05 09:26:22.557467' + completion_ts: 1591349182.55747 + creation_event_id: 31980500 + creation_time: '2020-06-05 09:19:41.200397' + creation_ts: 1591348781.2004 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/zstd#41d137254dabfa495e5585021335d646538846d8 + id: 1216822 + name: zstd + nvr: zstd-1.4.4-1.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 63328 + package_name: zstd + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/zstd#41d137254dabfa495e5585021335d646538846d8 + start_time: '2020-06-05 09:19:41.186356' + start_ts: 1591348781.18636 + state: 1 + task_id: 29104995 + version: 1.4.4 + volume_id: 9 + volume_name: rhel-8 +1216878: + build_id: 1216878 + cg_id: null + cg_name: null + completion_time: '2020-06-05 10:38:49.585144' + completion_ts: 1591353529.58514 + creation_event_id: 31987510 + creation_time: '2020-06-05 10:34:14.958914' + creation_ts: 1591353254.95891 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libtevent#7e7b590ff5452d788edffcc35486d00506de7ce8 + id: 1216878 + name: libtevent + nvr: libtevent-0.10.2-2.el8 + owner_id: 5169 + owner_name: yboukris + package_id: 18318 + package_name: libtevent + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libtevent#7e7b590ff5452d788edffcc35486d00506de7ce8 + start_time: '2020-06-05 10:34:14.952881' + start_ts: 1591353254.95288 + state: 1 + task_id: 29108965 + version: 0.10.2 + volume_id: 9 + volume_name: rhel-8 +1217001: + build_id: 1217001 + cg_id: null + cg_name: null + completion_time: '2020-06-05 14:34:22.987029' + completion_ts: 1591367662.98703 + creation_event_id: 31994894 + creation_time: '2020-06-05 14:25:01.839372' + creation_ts: 1591367101.83937 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/mdadm#f0157db1894a16dce63b5ece7e22078bf900b926 + id: 1217001 + name: mdadm + nvr: mdadm-4.1-14.el8 + owner_id: 3058 + owner_name: xni + package_id: 2117 + package_name: mdadm + release: 14.el8 + source: git://pkgs.devel.redhat.com/rpms/mdadm#f0157db1894a16dce63b5ece7e22078bf900b926 + start_time: '2020-06-05 14:25:01.804533' + start_ts: 1591367101.80453 + state: 1 + task_id: 29114310 + version: '4.1' + volume_id: 9 + volume_name: rhel-8 +1220066: + build_id: 1220066 + cg_id: null + cg_name: null + completion_time: '2020-06-08 10:37:16.749987' + completion_ts: 1591612636.74999 + creation_event_id: 32047437 + creation_time: '2020-06-08 09:39:57.016657' + creation_ts: 1591609197.01666 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/e2fsprogs#d1d411f01b969d28a07c0f6116572ede4a293147 + id: 1220066 + name: e2fsprogs + nvr: e2fsprogs-1.45.6-1.el8 + owner_id: 1304 + owner_name: lczerner + package_id: 395 + package_name: e2fsprogs + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/e2fsprogs#d1d411f01b969d28a07c0f6116572ede4a293147 + start_time: '2020-06-08 09:39:56.956868' + start_ts: 1591609196.95687 + state: 1 + task_id: 29165228 + version: 1.45.6 + volume_id: 9 + volume_name: rhel-8 +1221066: + build_id: 1221066 + cg_id: null + cg_name: null + completion_time: '2020-06-09 06:25:22.749067' + completion_ts: 1591683922.74907 + creation_event_id: 32097647 + creation_time: '2020-06-09 06:07:58.473447' + creation_ts: 1591682878.47345 + epoch: 4 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/perl?#15fcb30bd102c63b5fd6e2913ff4829b7969b4f7 + id: 1221066 + name: perl + nvr: perl-5.30.1-451.module+el8.3.0+6961+31ca2e7a + owner_id: 4066 + owner_name: mbs + package_id: 2372 + package_name: perl + release: 451.module+el8.3.0+6961+31ca2e7a + source: git://pkgs.devel.redhat.com/rpms/perl#15fcb30bd102c63b5fd6e2913ff4829b7969b4f7 + start_time: '2020-06-09 06:07:58.468693' + start_ts: 1591682878.46869 + state: 1 + task_id: 29201505 + version: 5.30.1 + volume_id: 9 + volume_name: rhel-8 +1221242: + build_id: 1221242 + cg_id: null + cg_name: null + completion_time: '2020-06-09 08:49:27.280149' + completion_ts: 1591692567.28015 + creation_event_id: 32106194 + creation_time: '2020-06-09 08:44:36.982270' + creation_ts: 1591692276.98227 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmaxminddb#859e23b7d126fb01c87498e423c42d48e1b8cee1 + id: 1221242 + name: libmaxminddb + nvr: libmaxminddb-1.2.0-10.el8 + owner_id: 3573 + owner_name: mruprich + package_id: 69923 + package_name: libmaxminddb + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/libmaxminddb#859e23b7d126fb01c87498e423c42d48e1b8cee1 + start_time: '2020-06-09 08:44:36.966792' + start_ts: 1591692276.96679 + state: 1 + task_id: 29204790 + version: 1.2.0 + volume_id: 9 + volume_name: rhel-8 +1221598: + build_id: 1221598 + cg_id: null + cg_name: null + completion_time: '2020-06-09 11:39:15.562387' + completion_ts: 1591702755.56239 + creation_event_id: 32123679 + creation_time: '2020-06-09 11:28:03.068684' + creation_ts: 1591702083.06868 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nghttp2#eea201c136d170f4497695a3bfa4ce716780d2ea + id: 1221598 + name: nghttp2 + nvr: nghttp2-1.33.0-3.el8_2.1 + owner_id: 889 + owner_name: kdudka + package_id: 54911 + package_name: nghttp2 + release: 3.el8_2.1 + source: git://pkgs.devel.redhat.com/rpms/nghttp2#eea201c136d170f4497695a3bfa4ce716780d2ea + start_time: '2020-06-09 11:28:03.019533' + start_ts: 1591702083.01953 + state: 1 + task_id: 29212718 + version: 1.33.0 + volume_id: 9 + volume_name: rhel-8 +1222084: + build_id: 1222084 + cg_id: null + cg_name: null + completion_time: '2020-06-10 02:28:46.193492' + completion_ts: 1591756126.19349 + creation_event_id: 32156008 + creation_time: '2020-06-10 02:15:31.914549' + creation_ts: 1591755331.91455 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rdma-core#0a5b99f09eaf000ad82cfc499faf0fd739913f66 + id: 1222084 + name: rdma-core + nvr: rdma-core-29.0-3.el8 + owner_id: 1864 + owner_name: honli + package_id: 61658 + package_name: rdma-core + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/rdma-core#0a5b99f09eaf000ad82cfc499faf0fd739913f66 + start_time: '2020-06-10 02:15:31.908401' + start_ts: 1591755331.9084 + state: 1 + task_id: 29246914 + version: '29.0' + volume_id: 9 + volume_name: rhel-8 +1222471: + build_id: 1222471 + cg_id: null + cg_name: null + completion_time: '2020-06-10 12:52:43.258368' + completion_ts: 1591793563.25837 + creation_event_id: 32186514 + creation_time: '2020-06-10 12:44:23.576737' + creation_ts: 1591793063.57674 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nfs-utils#509154883a37fa97e75249a4926b07447add13c4 + id: 1222471 + name: nfs-utils + nvr: nfs-utils-2.3.3-35.el8 + owner_id: 150 + owner_name: steved + package_id: 2269 + package_name: nfs-utils + release: 35.el8 + source: git://pkgs.devel.redhat.com/rpms/nfs-utils#509154883a37fa97e75249a4926b07447add13c4 + start_time: '2020-06-10 12:44:23.572812' + start_ts: 1591793063.57281 + state: 1 + task_id: 29268256 + version: 2.3.3 + volume_id: 9 + volume_name: rhel-8 +1224505: + build_id: 1224505 + cg_id: null + cg_name: null + completion_time: '2020-06-11 18:11:58.362838' + completion_ts: 1591899118.36284 + creation_event_id: 32255423 + creation_time: '2020-06-11 18:04:04.261832' + creation_ts: 1591898644.26183 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/elfutils#9d6f4c65dd0ca3074a395b5165680d5e88f0fa65 + id: 1224505 + name: elfutils + nvr: elfutils-0.180-1.el8 + owner_id: 395 + owner_name: mwielaar + package_id: 420 + package_name: elfutils + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/elfutils#9d6f4c65dd0ca3074a395b5165680d5e88f0fa65 + start_time: '2020-06-11 18:04:04.254476' + start_ts: 1591898644.25448 + state: 1 + task_id: 29332498 + version: '0.180' + volume_id: 9 + volume_name: rhel-8 +1225800: + build_id: 1225800 + cg_id: null + cg_name: null + completion_time: '2020-06-15 16:27:31.342045' + completion_ts: 1592238451.34205 + creation_event_id: 32326633 + creation_time: '2020-06-15 16:19:40.180879' + creation_ts: 1592237980.18088 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libgcrypt#87f3355e783bc163915dfee59b7d8f51b370b339 + id: 1225800 + name: libgcrypt + nvr: libgcrypt-1.8.5-4.el8 + owner_id: 118 + owner_name: tmraz + package_id: 1904 + package_name: libgcrypt + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libgcrypt#87f3355e783bc163915dfee59b7d8f51b370b339 + start_time: '2020-06-15 16:19:40.176100' + start_ts: 1592237980.1761 + state: 1 + task_id: 29402410 + version: 1.8.5 + volume_id: 9 + volume_name: rhel-8 +1226201: + build_id: 1226201 + cg_id: null + cg_name: null + completion_time: '2020-06-15 19:39:44.802832' + completion_ts: 1592249984.80283 + creation_event_id: 32328909 + creation_time: '2020-06-15 19:08:06.635137' + creation_ts: 1592248086.63514 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/git#70a92cb44f4edfb96da7b1e618afc8d8e8711c6c + id: 1226201 + name: git + nvr: git-2.27.0-1.el8 + owner_id: 5313 + owner_name: opohorel + package_id: 547 + package_name: git + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/git#70a92cb44f4edfb96da7b1e618afc8d8e8711c6c + start_time: '2020-06-15 19:08:06.630150' + start_ts: 1592248086.63015 + state: 1 + task_id: 29406344 + version: 2.27.0 + volume_id: 9 + volume_name: rhel-8 +1228272: + build_id: 1228272 + cg_id: null + cg_name: null + completion_time: '2020-06-17 08:57:07.004949' + completion_ts: 1592384227.00495 + creation_event_id: 32411619 + creation_time: '2020-06-17 08:49:27.308592' + creation_ts: 1592383767.30859 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/kbd#7609cc52c24617dba9e337acbdb2277a5238d634 + id: 1228272 + name: kbd + nvr: kbd-2.0.4-10.el8 + owner_id: 502 + owner_name: vcrhonek + package_id: 1084 + package_name: kbd + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/kbd#7609cc52c24617dba9e337acbdb2277a5238d634 + start_time: '2020-06-17 08:49:27.303267' + start_ts: 1592383767.30327 + state: 1 + task_id: 29454923 + version: 2.0.4 + volume_id: 9 + volume_name: rhel-8 +1228342: + build_id: 1228342 + cg_id: null + cg_name: null + completion_time: '2020-06-17 12:18:24.931340' + completion_ts: 1592396304.93134 + creation_event_id: 32413933 + creation_time: '2020-06-17 12:09:45.525011' + creation_ts: 1592395785.52501 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/brotli#3a441cd0c65fd6a27f1a178c0726318e7375e32f + id: 1228342 + name: brotli + nvr: brotli-1.0.6-2.el8 + owner_id: 2247 + owner_name: erathke + package_id: 67794 + package_name: brotli + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/brotli#3a441cd0c65fd6a27f1a178c0726318e7375e32f + start_time: '2020-06-17 12:09:45.520190' + start_ts: 1592395785.52019 + state: 1 + task_id: 29458139 + version: 1.0.6 + volume_id: 9 + volume_name: rhel-8 +1228713: + build_id: 1228713 + cg_id: null + cg_name: null + completion_time: '2020-06-18 06:55:07.989342' + completion_ts: 1592463307.98934 + creation_event_id: 32436139 + creation_time: '2020-06-18 06:37:28.600928' + creation_ts: 1592462248.60093 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libdb#e52594e19b9d11e837d307abc58f108784ced996 + id: 1228713 + name: libdb + nvr: libdb-5.3.28-39.el8 + owner_id: 3482 + owner_name: pkubat + package_id: 33932 + package_name: libdb + release: 39.el8 + source: git://pkgs.devel.redhat.com/rpms/libdb#e52594e19b9d11e837d307abc58f108784ced996 + start_time: '2020-06-18 06:37:28.592474' + start_ts: 1592462248.59247 + state: 1 + task_id: 29479488 + version: 5.3.28 + volume_id: 9 + volume_name: rhel-8 +1228733: + build_id: 1228733 + cg_id: null + cg_name: null + completion_time: '2020-06-18 08:26:02.309347' + completion_ts: 1592468762.30935 + creation_event_id: 32437630 + creation_time: '2020-06-18 08:19:05.238751' + creation_ts: 1592468345.23875 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openldap#616d3708bec613f7647fd5dd6140e6d5c1705968 + id: 1228733 + name: openldap + nvr: openldap-2.4.46-15.el8 + owner_id: 2963 + owner_name: mhonek + package_id: 2313 + package_name: openldap + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/openldap#616d3708bec613f7647fd5dd6140e6d5c1705968 + start_time: '2020-06-18 08:19:05.233245' + start_ts: 1592468345.23324 + state: 1 + task_id: 29479858 + version: 2.4.46 + volume_id: 9 + volume_name: rhel-8 +1229779: + build_id: 1229779 + cg_id: null + cg_name: null + completion_time: '2020-06-19 10:14:40.068282' + completion_ts: 1592561680.06828 + creation_event_id: 32545383 + creation_time: '2020-06-19 10:06:02.047539' + creation_ts: 1592561162.04754 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/authselect#2a06666212e203757373d8337e369ed67418b333 + id: 1229779 + name: authselect + nvr: authselect-1.2.1-2.el8 + owner_id: 2013 + owner_name: pbrezina + package_id: 64580 + package_name: authselect + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/authselect#2a06666212e203757373d8337e369ed67418b333 + start_time: '2020-06-19 10:06:02.043381' + start_ts: 1592561162.04338 + state: 1 + task_id: 29547542 + version: 1.2.1 + volume_id: 9 + volume_name: rhel-8 +1229781: + build_id: 1229781 + cg_id: null + cg_name: null + completion_time: '2020-06-19 10:32:11.223455' + completion_ts: 1592562731.22345 + creation_event_id: 32545449 + creation_time: '2020-06-19 10:13:38.679219' + creation_ts: 1592561618.67922 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/tar#cdd5b9f08090db9739f730ef2b8389d4a8df7dfb + id: 1229781 + name: tar + nvr: tar-1.30-5.el8 + owner_id: 4932 + owner_name: odubaj + package_id: 3151 + package_name: tar + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/tar#cdd5b9f08090db9739f730ef2b8389d4a8df7dfb + start_time: '2020-06-19 10:13:38.673642' + start_ts: 1592561618.67364 + state: 1 + task_id: 29547629 + version: '1.30' + volume_id: 9 + volume_name: rhel-8 +1234030: + build_id: 1234030 + cg_id: null + cg_name: null + completion_time: '2020-06-22 23:19:38.583148' + completion_ts: 1592867978.58315 + creation_event_id: 32609334 + creation_time: '2020-06-22 23:18:07.421725' + creation_ts: 1592867887.42173 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ca-certificates#08eaaed43b44f1cf81d1d3ff73133f69d2fc1f38 + id: 1234030 + name: ca-certificates + nvr: ca-certificates-2020.2.41-80.0.el8_2 + owner_id: 360 + owner_name: rrelyea + package_id: 11840 + package_name: ca-certificates + release: 80.0.el8_2 + source: git://pkgs.devel.redhat.com/rpms/ca-certificates#08eaaed43b44f1cf81d1d3ff73133f69d2fc1f38 + start_time: '2020-06-22 23:18:07.416595' + start_ts: 1592867887.41659 + state: 1 + task_id: 29618121 + version: 2020.2.41 + volume_id: 9 + volume_name: rhel-8 +1234878: + build_id: 1234878 + cg_id: null + cg_name: null + completion_time: '2020-06-23 10:36:35.530860' + completion_ts: 1592908595.53086 + creation_event_id: 32622808 + creation_time: '2020-06-23 10:34:57.765527' + creation_ts: 1592908497.76553 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cloud-utils-growpart#8309c9861cd0be0b8ecc6029584d4ba51b72ff06 + id: 1234878 + name: cloud-utils-growpart + nvr: cloud-utils-growpart-0.31-1.el8 + owner_id: 916 + owner_name: mrezanin + package_id: 45591 + package_name: cloud-utils-growpart + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/cloud-utils-growpart#8309c9861cd0be0b8ecc6029584d4ba51b72ff06 + start_time: '2020-06-23 10:34:57.761769' + start_ts: 1592908497.76177 + state: 1 + task_id: 29627530 + version: '0.31' + volume_id: 9 + volume_name: rhel-8 +1237213: + build_id: 1237213 + cg_id: null + cg_name: null + completion_time: '2020-06-25 14:22:16.664270' + completion_ts: 1593094936.66427 + creation_event_id: 32663242 + creation_time: '2020-06-25 14:07:37.871224' + creation_ts: 1593094057.87122 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libssh#a81cda4aa0c730dcc426de8ceebd961670e2d3af + id: 1237213 + name: libssh + nvr: libssh-0.9.4-2.el8 + owner_id: 4150 + owner_name: ansasaki + package_id: 33952 + package_name: libssh + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libssh#a81cda4aa0c730dcc426de8ceebd961670e2d3af + start_time: '2020-06-25 14:07:37.864731' + start_ts: 1593094057.86473 + state: 1 + task_id: 29685939 + version: 0.9.4 + volume_id: 9 + volume_name: rhel-8 +1238207: + build_id: 1238207 + cg_id: null + cg_name: null + completion_time: '2020-06-26 07:47:14.932102' + completion_ts: 1593157634.9321 + creation_event_id: 32677779 + creation_time: '2020-06-26 07:40:15.724109' + creation_ts: 1593157215.72411 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/util-linux#c7ef56e7205e7334ed56d6bf1d163c18794235e7 + id: 1238207 + name: util-linux + nvr: util-linux-2.32.1-24.el8 + owner_id: 148 + owner_name: kzak + package_id: 1197 + package_name: util-linux + release: 24.el8 + source: git://pkgs.devel.redhat.com/rpms/util-linux#c7ef56e7205e7334ed56d6bf1d163c18794235e7 + start_time: '2020-06-26 07:40:15.719336' + start_ts: 1593157215.71934 + state: 1 + task_id: 29705750 + version: 2.32.1 + volume_id: 9 + volume_name: rhel-8 +1238540: + build_id: 1238540 + cg_id: null + cg_name: null + completion_time: '2020-06-26 15:06:07.808100' + completion_ts: 1593183967.8081 + creation_event_id: 32688422 + creation_time: '2020-06-26 15:01:14.647760' + creation_ts: 1593183674.64776 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rpm#11e7b7c768e90cb93312c052542c0c2c8921fb4f + id: 1238540 + name: rpm + nvr: rpm-4.14.3-4.el8 + owner_id: 1943 + owner_name: mdomonko + package_id: 2930 + package_name: rpm + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/rpm#11e7b7c768e90cb93312c052542c0c2c8921fb4f + start_time: '2020-06-26 15:01:14.642918' + start_ts: 1593183674.64292 + state: 1 + task_id: 29715014 + version: 4.14.3 + volume_id: 9 + volume_name: rhel-8 +1238552: + build_id: 1238552 + cg_id: null + cg_name: null + completion_time: '2020-06-26 15:25:04.180811' + completion_ts: 1593185104.18081 + creation_event_id: 32688591 + creation_time: '2020-06-26 15:21:53.880016' + creation_ts: 1593184913.88002 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/oniguruma#6bd7bdc6d75bb8fe46d367d63b0a1d8b58fbf737 + id: 1238552 + name: oniguruma + nvr: oniguruma-6.8.2-2.el8 + owner_id: 4262 + owner_name: jkucera + package_id: 12214 + package_name: oniguruma + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/oniguruma#6bd7bdc6d75bb8fe46d367d63b0a1d8b58fbf737 + start_time: '2020-06-26 15:21:53.874913' + start_ts: 1593184913.87491 + state: 1 + task_id: 29715190 + version: 6.8.2 + volume_id: 9 + volume_name: rhel-8 +1241839: + build_id: 1241839 + cg_id: null + cg_name: null + completion_time: '2020-06-29 14:36:34.636202' + completion_ts: 1593441394.6362 + creation_event_id: 32716737 + creation_time: '2020-06-29 14:31:52.492729' + creation_ts: 1593441112.49273 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/iproute#ff4f24ce31934491315461f33f28c302f9d7595c + id: 1241839 + name: iproute + nvr: iproute-5.3.0-5.el8 + owner_id: 4597 + owner_name: aclaudi + package_id: 909 + package_name: iproute + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/iproute#ff4f24ce31934491315461f33f28c302f9d7595c + start_time: '2020-06-29 14:31:52.485651' + start_ts: 1593441112.48565 + state: 1 + task_id: 29760416 + version: 5.3.0 + volume_id: 9 + volume_name: rhel-8 +1241882: + build_id: 1241882 + cg_id: null + cg_name: null + completion_time: '2020-06-29 15:32:14.224372' + completion_ts: 1593444734.22437 + creation_event_id: 32720205 + creation_time: '2020-06-29 15:28:20.630330' + creation_ts: 1593444500.63033 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsemanage#56a1109123e72a736b7b4488ce732e44e47ae04a + id: 1241882 + name: libsemanage + nvr: libsemanage-2.9-3.el8 + owner_id: 3775 + owner_name: vmojzis + package_id: 1969 + package_name: libsemanage + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libsemanage#56a1109123e72a736b7b4488ce732e44e47ae04a + start_time: '2020-06-29 15:28:20.625963' + start_ts: 1593444500.62596 + state: 1 + task_id: 29762948 + version: '2.9' + volume_id: 9 + volume_name: rhel-8 +1242727: + build_id: 1242727 + cg_id: null + cg_name: null + completion_time: '2020-06-30 18:19:58.669470' + completion_ts: 1593541198.66947 + creation_event_id: 32751270 + creation_time: '2020-06-30 17:46:22.893183' + creation_ts: 1593539182.89318 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/setools#d8c4a5a74066a4b796930fc53d92563a0ab54549 + id: 1242727 + name: setools + nvr: setools-4.3.0-2.el8 + owner_id: 3775 + owner_name: vmojzis + package_id: 3004 + package_name: setools + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/setools#d8c4a5a74066a4b796930fc53d92563a0ab54549 + start_time: '2020-06-30 17:46:22.691320' + start_ts: 1593539182.69132 + state: 1 + task_id: 29784343 + version: 4.3.0 + volume_id: 9 + volume_name: rhel-8 +1246935: + build_id: 1246935 + cg_id: null + cg_name: null + completion_time: '2020-07-03 19:35:36.534648' + completion_ts: 1593804936.53465 + creation_event_id: 32875005 + creation_time: '2020-07-03 19:32:29.016466' + creation_ts: 1593804749.01647 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/psmisc#3a06857783b353b3e2394294754747d583441890 + id: 1246935 + name: psmisc + nvr: psmisc-23.1-5.el8 + owner_id: 3430 + owner_name: jrybar + package_id: 2560 + package_name: psmisc + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/psmisc#3a06857783b353b3e2394294754747d583441890 + start_time: '2020-07-03 19:32:29.012112' + start_ts: 1593804749.01211 + state: 1 + task_id: 29866606 + version: '23.1' + volume_id: 9 + volume_name: rhel-8 +1254929: + build_id: 1254929 + cg_id: null + cg_name: null + completion_time: '2020-07-14 01:55:48.559173' + completion_ts: 1594691748.55917 + creation_event_id: 33078122 + creation_time: '2020-07-14 01:52:24.893633' + creation_ts: 1594691544.89363 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/device-mapper-multipath#61cf9b84be8ee62bca5f72f5b1c21b35e5422265 + id: 1254929 + name: device-mapper-multipath + nvr: device-mapper-multipath-0.8.4-5.el8 + owner_id: 137 + owner_name: bmarzins + package_id: 346 + package_name: device-mapper-multipath + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/device-mapper-multipath#61cf9b84be8ee62bca5f72f5b1c21b35e5422265 + start_time: '2020-07-14 01:52:24.887964' + start_ts: 1594691544.88796 + state: 1 + task_id: 30091384 + version: 0.8.4 + volume_id: 9 + volume_name: rhel-8 +1257082: + build_id: 1257082 + cg_id: null + cg_name: null + completion_time: '2020-07-15 21:36:39.567303' + completion_ts: 1594848999.5673 + creation_event_id: 33135851 + creation_time: '2020-07-15 21:28:44.388101' + creation_ts: 1594848524.3881 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/jq#3d5870ed8710ec32d0b3e01254f9095c534d25e1 + id: 1257082 + name: jq + nvr: jq-1.6-2.el8 + owner_id: 2651 + owner_name: yselkowi + package_id: 48021 + package_name: jq + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/jq#3d5870ed8710ec32d0b3e01254f9095c534d25e1 + start_time: '2020-07-15 21:28:44.382862' + start_ts: 1594848524.38286 + state: 1 + task_id: 30136334 + version: '1.6' + volume_id: 9 + volume_name: rhel-8 +1266185: + build_id: 1266185 + cg_id: null + cg_name: null + completion_time: '2020-07-24 12:26:36.041868' + completion_ts: 1595593596.04187 + creation_event_id: 33260136 + creation_time: '2020-07-24 12:18:47.566102' + creation_ts: 1595593127.5661 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/initscripts#7706a2f058bd48b3f30a80e774c7f3c91349cd5e + id: 1266185 + name: initscripts + nvr: initscripts-10.00.9-1.el8 + owner_id: 4969 + owner_name: jamacku + package_id: 899 + package_name: initscripts + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/initscripts#7706a2f058bd48b3f30a80e774c7f3c91349cd5e + start_time: '2020-07-24 12:18:47.561627' + start_ts: 1595593127.56163 + state: 1 + task_id: 30305682 + version: 10.00.9 + volume_id: 9 + volume_name: rhel-8 +1277281: + build_id: 1277281 + cg_id: null + cg_name: null + completion_time: '2020-08-04 19:05:57.733273' + completion_ts: 1596567957.73327 + creation_event_id: 33462813 + creation_time: '2020-08-04 18:33:01.294706' + creation_ts: 1596565981.29471 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/krb5#4707cea21f660bb5919812502c7e6daa462a2eab + id: 1277281 + name: krb5 + nvr: krb5-1.18.2-5.el8 + owner_id: 2717 + owner_name: rharwood + package_id: 1793 + package_name: krb5 + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/krb5#4707cea21f660bb5919812502c7e6daa462a2eab + start_time: '2020-08-04 18:33:01.289009' + start_ts: 1596565981.28901 + state: 1 + task_id: 30551447 + version: 1.18.2 + volume_id: 9 + volume_name: rhel-8 +1278608: + build_id: 1278608 + cg_id: null + cg_name: null + completion_time: '2020-08-06 04:29:57.828583' + completion_ts: 1596688197.82858 + creation_event_id: 33480728 + creation_time: '2020-08-06 04:24:34.910362' + creation_ts: 1596687874.91036 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/memstrack#bb6494e2ea10eb7d23b5987dc8236811f08acdd4 + id: 1278608 + name: memstrack + nvr: memstrack-0.1.11-1.el8 + owner_id: 4389 + owner_name: kasong + package_id: 74541 + package_name: memstrack + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/memstrack#bb6494e2ea10eb7d23b5987dc8236811f08acdd4 + start_time: '2020-08-06 04:24:34.905504' + start_ts: 1596687874.9055 + state: 1 + task_id: 30577867 + version: 0.1.11 + volume_id: 9 + volume_name: rhel-8 +1280583: + build_id: 1280583 + cg_id: null + cg_name: null + completion_time: '2020-08-07 06:50:26.251346' + completion_ts: 1596783026.25135 + creation_event_id: 33513182 + creation_time: '2020-08-07 06:22:22.774388' + creation_ts: 1596781342.77439 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/sqlite#c797874023085ef8bb81ee4f5abd36f2dea962c1 + id: 1280583 + name: sqlite + nvr: sqlite-3.26.0-11.el8 + owner_id: 4932 + owner_name: odubaj + package_id: 3060 + package_name: sqlite + release: 11.el8 + source: git://pkgs.devel.redhat.com/rpms/sqlite#c797874023085ef8bb81ee4f5abd36f2dea962c1 + start_time: '2020-08-07 06:22:22.769238' + start_ts: 1596781342.76924 + state: 1 + task_id: 30614696 + version: 3.26.0 + volume_id: 9 + volume_name: rhel-8 +1281105: + build_id: 1281105 + cg_id: null + cg_name: null + completion_time: '2020-08-07 13:59:56.741092' + completion_ts: 1596808796.74109 + creation_event_id: 33522724 + creation_time: '2020-08-07 13:52:18.216218' + creation_ts: 1596808338.21622 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/shadow-utils#345e1be7cd68e2e6c541692d2e3ce8e23931a0f8 + id: 1281105 + name: shadow-utils + nvr: shadow-utils-4.6-11.el8 + owner_id: 5361 + owner_name: ipedrosa + package_id: 3014 + package_name: shadow-utils + release: 11.el8 + source: git://pkgs.devel.redhat.com/rpms/shadow-utils#345e1be7cd68e2e6c541692d2e3ce8e23931a0f8 + start_time: '2020-08-07 13:52:18.210576' + start_ts: 1596808338.21058 + state: 1 + task_id: 30623391 + version: '4.6' + volume_id: 9 + volume_name: rhel-8 +1281305: + build_id: 1281305 + cg_id: null + cg_name: null + completion_time: '2020-08-07 17:15:03.567445' + completion_ts: 1596820503.56745 + creation_event_id: 33526730 + creation_time: '2020-08-07 17:12:41.848554' + creation_ts: 1596820361.84855 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/firewalld#1433f02f2c61d62fcb11afe53101926b9da07e1c + id: 1281305 + name: firewalld + nvr: firewalld-0.8.2-2.el8 + owner_id: 3439 + owner_name: egarver + package_id: 36096 + package_name: firewalld + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/firewalld#1433f02f2c61d62fcb11afe53101926b9da07e1c + start_time: '2020-08-07 17:12:41.843066' + start_ts: 1596820361.84307 + state: 1 + task_id: 30626853 + version: 0.8.2 + volume_id: 9 + volume_name: rhel-8 +1281520: + build_id: 1281520 + cg_id: null + cg_name: null + completion_time: '2020-08-07 23:00:35.539258' + completion_ts: 1596841235.53926 + creation_event_id: 33528838 + creation_time: '2020-08-07 22:54:27.628522' + creation_ts: 1596840867.62852 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nftables#898a628e1456d3a79caa9ae4334fe1ff92aea666 + id: 1281520 + name: nftables + nvr: nftables-0.9.3-16.el8 + owner_id: 3021 + owner_name: psutter + package_id: 58416 + package_name: nftables + release: 16.el8 + source: git://pkgs.devel.redhat.com/rpms/nftables#898a628e1456d3a79caa9ae4334fe1ff92aea666 + start_time: '2020-08-07 22:54:27.622694' + start_ts: 1596840867.62269 + state: 1 + task_id: 30629294 + version: 0.9.3 + volume_id: 9 + volume_name: rhel-8 +1286148: + build_id: 1286148 + cg_id: null + cg_name: null + completion_time: '2020-08-12 14:34:14.997549' + completion_ts: 1597242854.99755 + creation_event_id: 33648373 + creation_time: '2020-08-12 14:31:02.399050' + creation_ts: 1597242662.39905 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libusbx#ca5dec750fe81d6a60c442ecbffb1bde77a86d94 + id: 1286148 + name: libusbx + nvr: libusbx-1.0.23-4.el8 + owner_id: 3238 + owner_name: vtosodec + package_id: 36467 + package_name: libusbx + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libusbx#ca5dec750fe81d6a60c442ecbffb1bde77a86d94 + start_time: '2020-08-12 14:31:02.392819' + start_ts: 1597242662.39282 + state: 1 + task_id: 30721770 + version: 1.0.23 + volume_id: 9 + volume_name: rhel-8 +1287749: + build_id: 1287749 + cg_id: null + cg_name: null + completion_time: '2020-08-14 09:42:58.081257' + completion_ts: 1597398178.08126 + creation_event_id: 33677077 + creation_time: '2020-08-14 09:39:02.157478' + creation_ts: 1597397942.15748 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/adcli#b8ad2c2b2ae32c5c60d284612c4c01c0e00026f8 + id: 1287749 + name: adcli + nvr: adcli-0.8.2-7.el8 + owner_id: 915 + owner_name: sbose + package_id: 38169 + package_name: adcli + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/adcli#b8ad2c2b2ae32c5c60d284612c4c01c0e00026f8 + start_time: '2020-08-14 09:39:02.152230' + start_ts: 1597397942.15223 + state: 1 + task_id: 30753411 + version: 0.8.2 + volume_id: 9 + volume_name: rhel-8 +1288561: + build_id: 1288561 + cg_id: null + cg_name: null + completion_time: '2020-08-17 09:23:45.864296' + completion_ts: 1597656225.8643 + creation_event_id: 33716409 + creation_time: '2020-08-17 09:19:48.686724' + creation_ts: 1597655988.68672 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/librepo#81af7f57af293abd229954d45c93167a05fed74f + id: 1288561 + name: librepo + nvr: librepo-1.12.0-2.el8 + owner_id: 5093 + owner_name: amatej + package_id: 49263 + package_name: librepo + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/librepo#81af7f57af293abd229954d45c93167a05fed74f + start_time: '2020-08-17 09:19:48.676867' + start_ts: 1597655988.67687 + state: 1 + task_id: 30772673 + version: 1.12.0 + volume_id: 9 + volume_name: rhel-8 +1289873: + build_id: 1289873 + cg_id: null + cg_name: null + completion_time: '2020-08-18 13:41:12.461156' + completion_ts: 1597758072.46116 + creation_event_id: 33742408 + creation_time: '2020-08-18 12:24:50.180414' + creation_ts: 1597753490.18041 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python3#bb230d79dc3617eb15c39b13526f931595ce31e2 + id: 1289873 + name: python3 + nvr: python3-3.6.8-31.el8 + owner_id: 3344 + owner_name: torsava + package_id: 34040 + package_name: python3 + release: 31.el8 + source: git://pkgs.devel.redhat.com/rpms/python3#bb230d79dc3617eb15c39b13526f931595ce31e2 + start_time: '2020-08-18 12:24:50.176159' + start_ts: 1597753490.17616 + state: 1 + task_id: 30802105 + version: 3.6.8 + volume_id: 9 + volume_name: rhel-8 +1290417: + build_id: 1290417 + cg_id: null + cg_name: null + completion_time: '2020-08-19 06:48:46.550598' + completion_ts: 1597819726.5506 + creation_event_id: 33751900 + creation_time: '2020-08-19 06:37:14.064441' + creation_ts: 1597819034.06444 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libreport#cd702428f310bfec7ef6fb24f959a8ba3d1e7a99 + id: 1290417 + name: libreport + nvr: libreport-2.9.5-15.el8 + owner_id: 4797 + owner_name: ekulik + package_id: 32834 + package_name: libreport + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/libreport#cd702428f310bfec7ef6fb24f959a8ba3d1e7a99 + start_time: '2020-08-19 06:37:14.060331' + start_ts: 1597819034.06033 + state: 1 + task_id: 30816496 + version: 2.9.5 + volume_id: 9 + volume_name: rhel-8 +1290727: + build_id: 1290727 + cg_id: null + cg_name: null + completion_time: '2020-08-19 15:35:06.934312' + completion_ts: 1597851306.93431 + creation_event_id: 33766270 + creation_time: '2020-08-19 15:32:48.500706' + creation_ts: 1597851168.50071 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-pip#41a7ad806853a43e10b8e33ba86a4d8590934f74 + id: 1290727 + name: python-pip + nvr: python-pip-9.0.3-18.el8 + owner_id: 3344 + owner_name: torsava + package_id: 34258 + package_name: python-pip + release: 18.el8 + source: git://pkgs.devel.redhat.com/rpms/python-pip#41a7ad806853a43e10b8e33ba86a4d8590934f74 + start_time: '2020-08-19 15:32:48.495945' + start_ts: 1597851168.49594 + state: 1 + task_id: 30829037 + version: 9.0.3 + volume_id: 9 + volume_name: rhel-8 +1291973: + build_id: 1291973 + cg_id: null + cg_name: null + completion_time: '2020-08-20 20:31:42.589896' + completion_ts: 1597955502.5899 + creation_event_id: 33791943 + creation_time: '2020-08-20 20:26:18.953252' + creation_ts: 1597955178.95325 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/snappy?#255100f8120b38c464dcf6b0d88ab4e8ba55eeac + id: 1291973 + name: snappy + nvr: snappy-1.1.8-3.el8 + owner_id: 3766 + owner_name: bhsharma + package_id: 42124 + package_name: snappy + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/snappy#255100f8120b38c464dcf6b0d88ab4e8ba55eeac + start_time: '2020-08-20 20:26:18.949010' + start_ts: 1597955178.94901 + state: 1 + task_id: 30859019 + version: 1.1.8 + volume_id: 9 + volume_name: rhel-8 +1291996: + build_id: 1291996 + cg_id: null + cg_name: null + completion_time: '2020-08-20 20:48:00.973939' + completion_ts: 1597956480.97394 + creation_event_id: 33792063 + creation_time: '2020-08-20 20:42:42.768487' + creation_ts: 1597956162.76849 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/iscsi-initiator-utils#3a26d8c98f87679854f3e3b0e2f82c73a6316f54 + id: 1291996 + name: iscsi-initiator-utils + nvr: iscsi-initiator-utils-6.2.0.878-5.gitd791ce0.el8 + owner_id: 1955 + owner_name: cleech + package_id: 925 + package_name: iscsi-initiator-utils + release: 5.gitd791ce0.el8 + source: git://pkgs.devel.redhat.com/rpms/iscsi-initiator-utils#3a26d8c98f87679854f3e3b0e2f82c73a6316f54 + start_time: '2020-08-20 20:42:42.763800' + start_ts: 1597956162.7638 + state: 1 + task_id: 30859241 + version: 6.2.0.878 + volume_id: 9 + volume_name: rhel-8 +1293877: + build_id: 1293877 + cg_id: null + cg_name: null + completion_time: '2020-08-21 18:21:54.905096' + completion_ts: 1598034114.9051 + creation_event_id: 33832366 + creation_time: '2020-08-21 18:11:52.586661' + creation_ts: 1598033512.58666 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/device-mapper-persistent-data#0b5e1741d7b765a22354180c5b0fc63c4eea3551 + id: 1293877 + name: device-mapper-persistent-data + nvr: device-mapper-persistent-data-0.8.5-4.el8 + owner_id: 846 + owner_name: mcsontos + package_id: 34673 + package_name: device-mapper-persistent-data + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/device-mapper-persistent-data#0b5e1741d7b765a22354180c5b0fc63c4eea3551 + start_time: '2020-08-21 18:11:52.581703' + start_ts: 1598033512.5817 + state: 1 + task_id: 30892900 + version: 0.8.5 + volume_id: 9 + volume_name: rhel-8 +1295508: + build_id: 1295508 + cg_id: null + cg_name: null + completion_time: '2020-08-24 12:39:39.729342' + completion_ts: 1598272779.72934 + creation_event_id: 33883754 + creation_time: '2020-08-24 12:34:57.981252' + creation_ts: 1598272497.98125 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rsync#503c18c07abe176c6d81fc6aa7aaf0e22427091a + id: 1295508 + name: rsync + nvr: rsync-3.1.3-9.el8 + owner_id: 3573 + owner_name: mruprich + package_id: 2941 + package_name: rsync + release: 9.el8 + source: git://pkgs.devel.redhat.com/rpms/rsync#503c18c07abe176c6d81fc6aa7aaf0e22427091a + start_time: '2020-08-24 12:34:57.975985' + start_ts: 1598272497.97599 + state: 1 + task_id: 30926328 + version: 3.1.3 + volume_id: 9 + volume_name: rhel-8 +1302631: + build_id: 1302631 + cg_id: null + cg_name: null + completion_time: '2020-08-31 13:19:13.919015' + completion_ts: 1598879953.91901 + creation_event_id: 34035208 + creation_time: '2020-08-31 13:14:41.493946' + creation_ts: 1598879681.49395 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cryptsetup#7e29a35decb44ea6f1c4eb8abd6591b75df0945a + id: 1302631 + name: cryptsetup + nvr: cryptsetup-2.3.3-2.el8 + owner_id: 2012 + owner_name: okozina + package_id: 311 + package_name: cryptsetup + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/cryptsetup#7e29a35decb44ea6f1c4eb8abd6591b75df0945a + start_time: '2020-08-31 13:14:41.486393' + start_ts: 1598879681.48639 + state: 1 + task_id: 31040759 + version: 2.3.3 + volume_id: 9 + volume_name: rhel-8 +1307839: + build_id: 1307839 + cg_id: null + cg_name: null + completion_time: '2020-09-03 15:02:15.813873' + completion_ts: 1599145335.81387 + creation_event_id: 34088836 + creation_time: '2020-09-03 14:57:44.386247' + creation_ts: 1599145064.38625 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libteam#0d156b1a08b185954154e2882e7a84f2e5e17c52 + id: 1307839 + name: libteam + nvr: libteam-1.31-2.el8 + owner_id: 2832 + owner_name: lxin + package_id: 37785 + package_name: libteam + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libteam#0d156b1a08b185954154e2882e7a84f2e5e17c52 + start_time: '2020-09-03 14:57:44.379544' + start_ts: 1599145064.37954 + state: 1 + task_id: 31131828 + version: '1.31' + volume_id: 9 + volume_name: rhel-8 +1313163: + build_id: 1313163 + cg_id: null + cg_name: null + completion_time: '2020-09-08 16:38:38.390984' + completion_ts: 1599583118.39098 + creation_event_id: 34297433 + creation_time: '2020-09-08 16:27:59.535854' + creation_ts: 1599582479.53585 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/glusterfs#f1c67f472a1c830eb4bba3605ee012d047b288a1 + id: 1313163 + name: glusterfs + nvr: glusterfs-6.0-37.2.el8 + owner_id: 2670 + owner_name: rkothiya + package_id: 14351 + package_name: glusterfs + release: 37.2.el8 + source: git://pkgs.devel.redhat.com/rpms/glusterfs#f1c67f472a1c830eb4bba3605ee012d047b288a1 + start_time: '2020-09-08 16:27:59.529072' + start_ts: 1599582479.52907 + state: 1 + task_id: 31220738 + version: '6.0' + volume_id: 9 + volume_name: rhel-8 +1319590: + build_id: 1319590 + cg_id: null + cg_name: null + completion_time: '2020-09-14 18:47:37.324609' + completion_ts: 1600109257.32461 + creation_event_id: 34417099 + creation_time: '2020-09-14 18:41:25.372129' + creation_ts: 1600108885.37213 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/sssd#3af209827af9656086e076d27aa0c516ae0dd6dd + id: 1319590 + name: sssd + nvr: sssd-2.3.0-9.el8 + owner_id: 5260 + owner_name: atikhono + package_id: 17261 + package_name: sssd + release: 9.el8 + source: git://pkgs.devel.redhat.com/rpms/sssd#3af209827af9656086e076d27aa0c516ae0dd6dd + start_time: '2020-09-14 18:41:25.368015' + start_ts: 1600108885.36802 + state: 1 + task_id: 31329828 + version: 2.3.0 + volume_id: 9 + volume_name: rhel-8 +1327509: + build_id: 1327509 + cg_id: null + cg_name: null + completion_time: '2020-09-21 10:12:38.678078' + completion_ts: 1600683158.67808 + creation_event_id: 34543264 + creation_time: '2020-09-21 10:10:18.591516' + creation_ts: 1600683018.59152 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/hwdata#7952a6c4680996895f9174213535c9adb5e26604 + id: 1327509 + name: hwdata + nvr: hwdata-0.314-8.6.el8 + owner_id: 502 + owner_name: vcrhonek + package_id: 879 + package_name: hwdata + release: 8.6.el8 + source: git://pkgs.devel.redhat.com/rpms/hwdata#7952a6c4680996895f9174213535c9adb5e26604 + start_time: '2020-09-21 10:10:18.588302' + start_ts: 1600683018.5883 + state: 1 + task_id: 31449582 + version: '0.314' + volume_id: 9 + volume_name: rhel-8 +1333209: + build_id: 1333209 + cg_id: null + cg_name: null + completion_time: '2020-09-28 14:28:24.334062' + completion_ts: 1601303304.33406 + creation_event_id: 34643529 + creation_time: '2020-09-28 14:24:38.487922' + creation_ts: 1601303078.48792 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/conmon#d0d7ede24abdd220a5e5b903f1bd9d18960b4f12 + id: 1333209 + name: conmon + nvr: conmon-2.0.21-2.rhaos4.6.el8 + owner_id: 5527 + owner_name: pehunt + package_id: 73186 + package_name: conmon + release: 2.rhaos4.6.el8 + source: git://pkgs.devel.redhat.com/rpms/conmon#d0d7ede24abdd220a5e5b903f1bd9d18960b4f12 + start_time: '2020-09-28 14:24:38.483384' + start_ts: 1601303078.48338 + state: 1 + task_id: 31580040 + version: 2.0.21 + volume_id: 9 + volume_name: rhel-8 +1338046: + build_id: 1338046 + cg_id: null + cg_name: null + completion_time: '2020-10-01 19:06:09.067323' + completion_ts: 1601579169.06732 + creation_event_id: 34754752 + creation_time: '2020-10-01 19:02:55.063464' + creation_ts: 1601578975.06346 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libselinux#da25ff228b00ed73b717f9558993df7ba3a409a2 + id: 1338046 + name: libselinux + nvr: libselinux-2.9-4.el8_3 + owner_id: 3775 + owner_name: vmojzis + package_id: 1968 + package_name: libselinux + release: 4.el8_3 + source: git://pkgs.devel.redhat.com/rpms/libselinux#da25ff228b00ed73b717f9558993df7ba3a409a2 + start_time: '2020-10-01 19:02:55.056692' + start_ts: 1601578975.05669 + state: 1 + task_id: 31694949 + version: '2.9' + volume_id: 9 + volume_name: rhel-8 +1374943: + build_id: 1374943 + cg_id: null + cg_name: null + completion_time: '2020-11-03 12:38:23.585490' + completion_ts: 1604407103.58549 + creation_event_id: 35459004 + creation_time: '2020-11-03 12:30:48.662930' + creation_ts: 1604406648.66293 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/clevis#1b16b6c88a9614b8772c2b7eb58947b73cdb3cb5 + id: 1374943 + name: clevis + nvr: clevis-15-1.el8 + owner_id: 5120 + owner_name: solindab + package_id: 61815 + package_name: clevis + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/clevis#1b16b6c88a9614b8772c2b7eb58947b73cdb3cb5 + start_time: '2020-11-03 12:30:48.660050' + start_ts: 1604406648.66005 + state: 1 + task_id: 32776234 + version: '15' + volume_id: 9 + volume_name: rhel-8 +1384936: + build_id: 1384936 + cg_id: null + cg_name: null + completion_time: '2020-11-13 11:16:13.630124' + completion_ts: 1605266173.63012 + creation_event_id: 35656982 + creation_time: '2020-11-13 11:10:42.080301' + creation_ts: 1605265842.0803 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/iptables#f6c64af6bfed14da1f34ff285b90732276cde7ed + id: 1384936 + name: iptables + nvr: iptables-1.8.4-15.el8_3.3 + owner_id: 3021 + owner_name: psutter + package_id: 912 + package_name: iptables + release: 15.el8_3.3 + source: git://pkgs.devel.redhat.com/rpms/iptables#f6c64af6bfed14da1f34ff285b90732276cde7ed + start_time: '2020-11-13 11:10:42.075662' + start_ts: 1605265842.07566 + state: 1 + task_id: 33071583 + version: 1.8.4 + volume_id: 9 + volume_name: rhel-8 +1390917: + build_id: 1390917 + cg_id: null + cg_name: null + completion_time: '2020-11-23 16:40:24.943523' + completion_ts: 1606149624.94352 + creation_event_id: 35793012 + creation_time: '2020-11-23 16:11:46.792006' + creation_ts: 1606147906.79201 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/curl#59e09aa818c61b2e669dde307d79e9278a8a8fd4 + id: 1390917 + name: curl + nvr: curl-7.61.1-14.el8_3.1 + owner_id: 889 + owner_name: kdudka + package_id: 317 + package_name: curl + release: 14.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/curl#59e09aa818c61b2e669dde307d79e9278a8a8fd4 + start_time: '2020-11-23 16:11:46.786794' + start_ts: 1606147906.78679 + state: 1 + task_id: 33231261 + version: 7.61.1 + volume_id: 9 + volume_name: rhel-8 +1391289: + build_id: 1391289 + cg_id: null + cg_name: null + completion_time: '2020-11-23 17:16:23.512266' + completion_ts: 1606151783.51227 + creation_event_id: 35796828 + creation_time: '2020-11-23 17:14:47.582712' + creation_ts: 1606151687.58271 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/console-login-helper-messages#c5bca0780a50fede544c180d4537dcb154e35bb3 + id: 1391289 + name: console-login-helper-messages + nvr: console-login-helper-messages-0.20.3-1.rhaos4.7.el8 + owner_id: 5668 + owner_name: kfan + package_id: 71626 + package_name: console-login-helper-messages + release: 1.rhaos4.7.el8 + source: git://pkgs.devel.redhat.com/rpms/console-login-helper-messages#c5bca0780a50fede544c180d4537dcb154e35bb3 + start_time: '2020-11-23 17:14:47.577083' + start_ts: 1606151687.57708 + state: 1 + task_id: 33233773 + version: 0.20.3 + volume_id: 9 + volume_name: rhel-8 +1401896: + build_id: 1401896 + cg_id: null + cg_name: null + completion_time: '2020-12-04 18:19:16.651227' + completion_ts: 1607105956.65123 + creation_event_id: 35991118 + creation_time: '2020-12-04 17:41:07.684179' + creation_ts: 1607103667.68418 + epoch: 0 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/samba#47cc0df2cd8d4232b06569c6d94b9e295f99b82a + id: 1401896 + name: samba + nvr: samba-4.12.3-14.el8_3 + owner_id: 1591 + owner_name: anschnei + package_id: 2955 + package_name: samba + release: 14.el8_3 + source: git://pkgs.devel.redhat.com/rpms/samba#47cc0df2cd8d4232b06569c6d94b9e295f99b82a + start_time: '2020-12-04 17:41:07.669174' + start_ts: 1607103667.66917 + state: 1 + task_id: 33493597 + version: 4.12.3 + volume_id: 9 + volume_name: rhel-8 +1404329: + build_id: 1404329 + cg_id: null + cg_name: null + completion_time: '2020-12-07 14:03:24.069454' + completion_ts: 1607349804.06945 + creation_event_id: 36014058 + creation_time: '2020-12-07 14:00:44.835007' + creation_ts: 1607349644.83501 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/linux-firmware#a00f61715e93a9f738631e00a53344ea38d871f9 + id: 1404329 + name: linux-firmware + nvr: linux-firmware-20200619-101.git3890db36.el8_3 + owner_id: 1366 + owner_name: fhrbata + package_id: 33957 + package_name: linux-firmware + release: 101.git3890db36.el8_3 + source: git://pkgs.devel.redhat.com/rpms/linux-firmware#a00f61715e93a9f738631e00a53344ea38d871f9 + start_time: '2020-12-07 14:00:44.826638' + start_ts: 1607349644.82664 + state: 1 + task_id: 33530305 + version: '20200619' + volume_id: 9 + volume_name: rhel-8 +1410255: + build_id: 1410255 + cg_id: null + cg_name: null + completion_time: '2020-12-09 12:01:43.909733' + completion_ts: 1607515303.90973 + creation_event_id: 36139085 + creation_time: '2020-12-09 11:54:53.260489' + creation_ts: 1607514893.26049 + epoch: 8 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/lvm2#820f8dfce7bd61166c86b1ce7e39f81cbd295d13 + id: 1410255 + name: lvm2 + nvr: lvm2-2.03.09-5.el8_3.2 + owner_id: 846 + owner_name: mcsontos + package_id: 2069 + package_name: lvm2 + release: 5.el8_3.2 + source: git://pkgs.devel.redhat.com/rpms/lvm2#820f8dfce7bd61166c86b1ce7e39f81cbd295d13 + start_time: '2020-12-09 11:54:53.252056' + start_ts: 1607514893.25206 + state: 1 + task_id: 33603653 + version: 2.03.09 + volume_id: 9 + volume_name: rhel-8 +1410436: + build_id: 1410436 + cg_id: null + cg_name: null + completion_time: '2020-12-09 17:03:59.639880' + completion_ts: 1607533439.63988 + creation_event_id: 36145645 + creation_time: '2020-12-09 16:56:46.516508' + creation_ts: 1607533006.51651 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ostree#447af029cd34b3e8aef7c417369b9e2384911905 + id: 1410436 + name: ostree + nvr: ostree-2020.7-1.el8_3 + owner_id: 2544 + owner_name: jlebon + package_id: 46299 + package_name: ostree + release: 1.el8_3 + source: git://pkgs.devel.redhat.com/rpms/ostree#447af029cd34b3e8aef7c417369b9e2384911905 + start_time: '2020-12-09 16:56:46.488956' + start_ts: 1607533006.48896 + state: 1 + task_id: 33613347 + version: '2020.7' + volume_id: 9 + volume_name: rhel-8 +1410472: + build_id: 1410472 + cg_id: null + cg_name: null + completion_time: '2020-12-15 16:20:47.724573' + completion_ts: 1608049247.72457 + creation_event_id: 36249843 + creation_time: '2020-12-15 15:55:42.594187' + creation_ts: 1608047742.59419 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rpm-ostree#99c9a5ced90cfa1835b75c4361f7e76597c5b2cc + id: 1410472 + name: rpm-ostree + nvr: rpm-ostree-2020.7-1.el8_3 + owner_id: 2544 + owner_name: jlebon + package_id: 46300 + package_name: rpm-ostree + release: 1.el8_3 + source: git://pkgs.devel.redhat.com/rpms/rpm-ostree#99c9a5ced90cfa1835b75c4361f7e76597c5b2cc + start_time: '2020-12-15 15:55:42.534629' + start_ts: 1608047742.53463 + state: 1 + task_id: 33758219 + version: '2020.7' + volume_id: 9 + volume_name: rhel-8 +1416174: + build_id: 1416174 + cg_id: null + cg_name: null + completion_time: '2020-12-15 16:55:09.601348' + completion_ts: 1608051309.60135 + creation_event_id: 36250856 + creation_time: '2020-12-15 16:17:00.532978' + creation_ts: 1608049020.53298 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rust-afterburn#2e2b790a0f5a47e3a56a91c2f2dc84903ccb5ae9 + id: 1416174 + name: rust-afterburn + nvr: rust-afterburn-4.6.0-1.rhaos4.7.el8 + owner_id: 5511 + owner_name: skunkerk + package_id: 71931 + package_name: rust-afterburn + release: 1.rhaos4.7.el8 + source: git://pkgs.devel.redhat.com/rpms/rust-afterburn#2e2b790a0f5a47e3a56a91c2f2dc84903ccb5ae9 + start_time: '2020-12-15 16:17:00.478992' + start_ts: 1608049020.47899 + state: 1 + task_id: 33759010 + version: 4.6.0 + volume_id: 9 + volume_name: rhel-8 +1416853: + build_id: 1416853 + cg_id: null + cg_name: null + completion_time: '2020-12-15 13:15:07.009362' + completion_ts: 1608038107.00936 + creation_event_id: 36246236 + creation_time: '2020-12-15 13:09:17.574586' + creation_ts: 1608037757.57459 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dracut#7f6c90a5a3f778a3f3ffd3313cf10ea0f131092f + id: 1416853 + name: dracut + nvr: dracut-049-95.git20200804.el8_3.4 + owner_id: 1615 + owner_name: lnykryn + package_id: 18069 + package_name: dracut + release: 95.git20200804.el8_3.4 + source: git://pkgs.devel.redhat.com/rpms/dracut#7f6c90a5a3f778a3f3ffd3313cf10ea0f131092f + start_time: '2020-12-15 13:09:17.462936' + start_ts: 1608037757.46294 + state: 1 + task_id: 33753524 + version: 049 + volume_id: 9 + volume_name: rhel-8 +1420639: + build_id: 1420639 + cg_id: null + cg_name: null + completion_time: '2020-12-17 12:29:30.931543' + completion_ts: 1608208170.93154 + creation_event_id: 36306335 + creation_time: '2020-12-17 12:26:17.410705' + creation_ts: 1608207977.41071 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dnsmasq#8351daeab56abef870fe96e1dc4f08f0207f6346 + id: 1420639 + name: dnsmasq + nvr: dnsmasq-2.79-13.el8_3.1 + owner_id: 3655 + owner_name: pemensik + package_id: 3857 + package_name: dnsmasq + release: 13.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/dnsmasq#8351daeab56abef870fe96e1dc4f08f0207f6346 + start_time: '2020-12-17 12:26:17.401683' + start_ts: 1608207977.40168 + state: 1 + task_id: 33819694 + version: '2.79' + volume_id: 9 + volume_name: rhel-8 +1447987: + build_id: 1447987 + cg_id: null + cg_name: null + completion_time: '2021-01-07 18:14:13.705489' + completion_ts: 1610043253.70549 + creation_event_id: 36581520 + creation_time: '2021-01-07 17:04:51.318497' + creation_ts: 1610039091.3185 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/glibc#f7e70c52e79b375f6aeb12732eada22f4f699fd7 + id: 1447987 + name: glibc + nvr: glibc-2.28-127.el8_3.2 + owner_id: 1852 + owner_name: fweimer + package_id: 556 + package_name: glibc + release: 127.el8_3.2 + source: git://pkgs.devel.redhat.com/rpms/glibc#f7e70c52e79b375f6aeb12732eada22f4f699fd7 + start_time: '2021-01-07 17:04:51.292733' + start_ts: 1610039091.29273 + state: 1 + task_id: 34125804 + version: '2.28' + volume_id: 9 + volume_name: rhel-8 +1453077: + build_id: 1453077 + cg_id: null + cg_name: null + completion_time: '2021-01-11 11:32:58.214163' + completion_ts: 1610364778.21416 + creation_event_id: 36636924 + creation_time: '2021-01-11 11:26:35.464159' + creation_ts: 1610364395.46416 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/kexec-tools#af44fd46d97423dea4488dec9b4b7d610ffbf73c + id: 1453077 + name: kexec-tools + nvr: kexec-tools-2.0.20-34.el8_3.2 + owner_id: 3713 + owner_name: piliu + package_id: 1765 + package_name: kexec-tools + release: 34.el8_3.2 + source: git://pkgs.devel.redhat.com/rpms/kexec-tools#af44fd46d97423dea4488dec9b4b7d610ffbf73c + start_time: '2021-01-11 11:26:35.366672' + start_ts: 1610364395.36667 + state: 1 + task_id: 34181803 + version: 2.0.20 + volume_id: 9 + volume_name: rhel-8 +1455013: + build_id: 1455013 + cg_id: null + cg_name: null + completion_time: '2021-01-12 11:06:17.680841' + completion_ts: 1610449577.68084 + creation_event_id: 36654381 + creation_time: '2021-01-12 11:00:48.554185' + creation_ts: 1610449248.55418 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/kmod#2959feac6180942ab727299d338cd43ab3f13df4 + id: 1455013 + name: kmod + nvr: kmod-25-16.el8_3.1 + owner_id: 3579 + owner_name: ykaliuta + package_id: 35350 + package_name: kmod + release: 16.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/kmod#2959feac6180942ab727299d338cd43ab3f13df4 + start_time: '2021-01-12 11:00:48.540002' + start_ts: 1610449248.54 + state: 1 + task_id: 34208968 + version: '25' + volume_id: 9 + volume_name: rhel-8 +1458974: + build_id: 1458974 + cg_id: null + cg_name: null + completion_time: '2021-01-14 12:56:03.666204' + completion_ts: 1610628963.6662 + creation_event_id: 36718485 + creation_time: '2021-01-14 12:50:02.429379' + creation_ts: 1610628602.42938 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dbus#ceb28f578b07b4785897cedbe04c0972cb59a92f + id: 1458974 + name: dbus + nvr: dbus-1.12.8-12.el8_3 + owner_id: 2473 + owner_name: dking + package_id: 333 + package_name: dbus + release: 12.el8_3 + source: git://pkgs.devel.redhat.com/rpms/dbus#ceb28f578b07b4785897cedbe04c0972cb59a92f + start_time: '2021-01-14 12:50:02.384884' + start_ts: 1610628602.38488 + state: 1 + task_id: 34273867 + version: 1.12.8 + volume_id: 9 + volume_name: rhel-8 +1460998: + build_id: 1460998 + cg_id: null + cg_name: null + completion_time: '2021-01-15 19:17:31.868400' + completion_ts: 1610738251.8684 + creation_event_id: 36750321 + creation_time: '2021-01-15 19:08:51.592826' + creation_ts: 1610737731.59283 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/coreos-installer#5bcd6a570f353a0aa72e42acf9370869eb3d8c2b + id: 1460998 + name: coreos-installer + nvr: coreos-installer-0.8.0-3.rhaos4.7.el8 + owner_id: 5585 + owner_name: bgilbert + package_id: 71663 + package_name: coreos-installer + release: 3.rhaos4.7.el8 + source: git://pkgs.devel.redhat.com/rpms/coreos-installer#5bcd6a570f353a0aa72e42acf9370869eb3d8c2b + start_time: '2021-01-15 19:08:51.580384' + start_ts: 1610737731.58038 + state: 1 + task_id: 34300588 + version: 0.8.0 + volume_id: 9 + volume_name: rhel-8 +1467505: + build_id: 1467505 + cg_id: null + cg_name: null + completion_time: '2021-01-20 16:42:31.257022' + completion_ts: 1611160951.25702 + creation_event_id: 36827729 + creation_time: '2021-01-20 16:34:16.659118' + creation_ts: 1611160456.65912 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/sudo#ebed9890d3007d968ef9e6069e6239788b3d751c + id: 1467505 + name: sudo + nvr: sudo-1.8.29-6.el8_3.1 + owner_id: 3112 + owner_name: rsroka + package_id: 3095 + package_name: sudo + release: 6.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/sudo#ebed9890d3007d968ef9e6069e6239788b3d751c + start_time: '2021-01-20 16:34:16.644605' + start_ts: 1611160456.6446 + state: 1 + task_id: 34391395 + version: 1.8.29 + volume_id: 9 + volume_name: rhel-8 +1473607: + build_id: 1473607 + cg_id: null + cg_name: null + completion_time: '2021-01-25 16:31:55.129287' + completion_ts: 1611592315.12929 + creation_event_id: 36903833 + creation_time: '2021-01-25 16:28:55.385468' + creation_ts: 1611592135.38547 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/tzdata#6c957bbd5068cc19b01658b1e8a8f664c929f96b + id: 1473607 + name: tzdata + nvr: tzdata-2021a-1.el8 + owner_id: 1849 + owner_name: pfrankli + package_id: 1228 + package_name: tzdata + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/tzdata#6c957bbd5068cc19b01658b1e8a8f664c929f96b + start_time: '2021-01-25 16:28:55.359733' + start_ts: 1611592135.35973 + state: 1 + task_id: 34499125 + version: 2021a + volume_id: 9 + volume_name: rhel-8 +1477522: + build_id: 1477522 + cg_id: null + cg_name: null + completion_time: '2021-01-27 20:49:20.372225' + completion_ts: 1611780560.37223 + creation_event_id: 36978060 + creation_time: '2021-01-27 20:47:24.135105' + creation_ts: 1611780444.1351 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openvswitch-selinux-extra-policy#f5aa402314121d23e5aee15237210469ddbd3731 + id: 1477522 + name: openvswitch-selinux-extra-policy + nvr: openvswitch-selinux-extra-policy-1.0-28.el8fdp + owner_id: 3130 + owner_name: aconole + package_id: 67517 + package_name: openvswitch-selinux-extra-policy + release: 28.el8fdp + source: git://pkgs.devel.redhat.com/rpms/openvswitch-selinux-extra-policy#f5aa402314121d23e5aee15237210469ddbd3731 + start_time: '2021-01-27 20:47:24.123929' + start_ts: 1611780444.12393 + state: 1 + task_id: 34566254 + version: '1.0' + volume_id: 9 + volume_name: rhel-8 +1478778: + build_id: 1478778 + cg_id: null + cg_name: null + completion_time: '2021-01-28 14:05:41.232900' + completion_ts: 1611842741.2329 + creation_event_id: 36990965 + creation_time: '2021-01-28 13:58:43.106627' + creation_ts: 1611842323.10663 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/procps-ng#f6d1c03dafa90a97bfde1d7fa8f828a2c50c357d + id: 1478778 + name: procps-ng + nvr: procps-ng-3.3.15-3.el8_3.1 + owner_id: 3430 + owner_name: jrybar + package_id: 36198 + package_name: procps-ng + release: 3.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/procps-ng#f6d1c03dafa90a97bfde1d7fa8f828a2c50c357d + start_time: '2021-01-28 13:58:43.064365' + start_ts: 1611842323.06436 + state: 1 + task_id: 34585294 + version: 3.3.15 + volume_id: 9 + volume_name: rhel-8 +1480523: + build_id: 1480523 + cg_id: null + cg_name: null + completion_time: '2021-01-29 16:24:25.477678' + completion_ts: 1611937465.47768 + creation_event_id: 37010242 + creation_time: '2021-01-29 16:21:05.954792' + creation_ts: 1611937265.95479 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/file#629a8f659a4248bafc1ca32e0f7a2c0653045f3b + id: 1480523 + name: file + nvr: file-5.33-16.el8_3.1 + owner_id: 5393 + owner_name: vmihalko + package_id: 461 + package_name: file + release: 16.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/file#629a8f659a4248bafc1ca32e0f7a2c0653045f3b + start_time: '2021-01-29 16:21:05.916473' + start_ts: 1611937265.91647 + state: 1 + task_id: 34613348 + version: '5.33' + volume_id: 9 + volume_name: rhel-8 +1487400: + build_id: 1487400 + cg_id: null + cg_name: null + completion_time: '2021-02-03 16:02:53.839228' + completion_ts: 1612368173.83923 + creation_event_id: 37103220 + creation_time: '2021-02-03 15:49:14.683130' + creation_ts: 1612367354.68313 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/subscription-manager#07ee321d5c6961bde000e52ce2e000c41aa688fb + id: 1487400 + name: subscription-manager + nvr: subscription-manager-1.27.18-1.el8_3 + owner_id: 3172 + owner_name: csnyder + package_id: 19375 + package_name: subscription-manager + release: 1.el8_3 + source: git://pkgs.devel.redhat.com/rpms/subscription-manager#07ee321d5c6961bde000e52ce2e000c41aa688fb + start_time: '2021-02-03 15:49:14.665765' + start_ts: 1612367354.66577 + state: 1 + task_id: 34713053 + version: 1.27.18 + volume_id: 9 + volume_name: rhel-8 +1489595: + build_id: 1489595 + cg_id: null + cg_name: null + completion_time: '2021-02-04 09:46:26.821693' + completion_ts: 1612431986.82169 + creation_event_id: 37126530 + creation_time: '2021-02-04 09:40:37.881722' + creation_ts: 1612431637.88172 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libslirp?#6d83cf7b9a0f7af7a7f7854f5f4dc300feea16e2 + id: 1489595 + name: libslirp + nvr: libslirp-4.3.1-1.module+el8.3.1+9803+64eb0fd6 + owner_id: 4066 + owner_name: mbs + package_id: 74555 + package_name: libslirp + release: 1.module+el8.3.1+9803+64eb0fd6 + source: git://pkgs.devel.redhat.com/rpms/libslirp#6d83cf7b9a0f7af7a7f7854f5f4dc300feea16e2 + start_time: '2021-02-04 09:40:37.874410' + start_ts: 1612431637.87441 + state: 1 + task_id: 34742231 + version: 4.3.1 + volume_id: 9 + volume_name: rhel-8 +1489916: + build_id: 1489916 + cg_id: null + cg_name: null + completion_time: '2021-02-04 12:27:45.918695' + completion_ts: 1612441665.91869 + creation_event_id: 37130828 + creation_time: '2021-02-04 12:22:22.246974' + creation_ts: 1612441342.24697 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/s390utils#da383363b3f0473eced76902eb49e28a7be7a147 + id: 1489916 + name: s390utils + nvr: s390utils-2.6.0-33.el8_3.2 + owner_id: 678 + owner_name: dhorak + package_id: 2949 + package_name: s390utils + release: 33.el8_3.2 + source: git://pkgs.devel.redhat.com/rpms/s390utils#da383363b3f0473eced76902eb49e28a7be7a147 + start_time: '2021-02-04 12:22:22.222594' + start_ts: 1612441342.22259 + state: 1 + task_id: 34746661 + version: 2.6.0 + volume_id: 9 + volume_name: rhel-8 +1496286: + build_id: 1496286 + cg_id: null + cg_name: null + completion_time: '2021-02-08 21:29:14.180916' + completion_ts: 1612819754.18092 + creation_event_id: 37215017 + creation_time: '2021-02-08 21:17:41.615387' + creation_ts: 1612819061.61539 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/podman?#76718e4008f2b6ec9c36d4ea2be24d8ff108a269 + id: 1496286 + name: podman + nvr: podman-2.2.1-7.module+el8.3.1+9857+68fb1526 + owner_id: 4066 + owner_name: mbs + package_id: 66672 + package_name: podman + release: 7.module+el8.3.1+9857+68fb1526 + source: git://pkgs.devel.redhat.com/rpms/podman#76718e4008f2b6ec9c36d4ea2be24d8ff108a269 + start_time: '2021-02-08 21:17:41.605391' + start_ts: 1612819061.60539 + state: 1 + task_id: 34833525 + version: 2.2.1 + volume_id: 9 + volume_name: rhel-8 +1496287: + build_id: 1496287 + cg_id: null + cg_name: null + completion_time: '2021-02-08 21:26:01.503325' + completion_ts: 1612819561.50332 + creation_event_id: 37215030 + creation_time: '2021-02-08 21:18:05.155733' + creation_ts: 1612819085.15573 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/crun?#568207254ed49401a34da5f22880e2c2a30e9c64 + id: 1496287 + name: crun + nvr: crun-0.16-2.module+el8.3.1+9857+68fb1526 + owner_id: 4066 + owner_name: mbs + package_id: 76900 + package_name: crun + release: 2.module+el8.3.1+9857+68fb1526 + source: git://pkgs.devel.redhat.com/rpms/crun#568207254ed49401a34da5f22880e2c2a30e9c64 + start_time: '2021-02-08 21:18:05.147278' + start_ts: 1612819085.14728 + state: 1 + task_id: 34833529 + version: '0.16' + volume_id: 9 + volume_name: rhel-8 +1496288: + build_id: 1496288 + cg_id: null + cg_name: null + completion_time: '2021-02-08 21:31:46.741766' + completion_ts: 1612819906.74177 + creation_event_id: 37215034 + creation_time: '2021-02-08 21:18:09.616311' + creation_ts: 1612819089.61631 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/criu?#e03b0f989d901d0dbf7e83157639d3d257671efd + id: 1496288 + name: criu + nvr: criu-3.15-1.module+el8.3.1+9857+68fb1526 + owner_id: 4066 + owner_name: mbs + package_id: 52911 + package_name: criu + release: 1.module+el8.3.1+9857+68fb1526 + source: git://pkgs.devel.redhat.com/rpms/criu#e03b0f989d901d0dbf7e83157639d3d257671efd + start_time: '2021-02-08 21:18:09.567698' + start_ts: 1612819089.5677 + state: 1 + task_id: 34833531 + version: '3.15' + volume_id: 9 + volume_name: rhel-8 +1496289: + build_id: 1496289 + cg_id: null + cg_name: null + completion_time: '2021-02-08 21:26:11.498373' + completion_ts: 1612819571.49837 + creation_event_id: 37215035 + creation_time: '2021-02-08 21:18:09.690545' + creation_ts: 1612819089.69055 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/fuse-overlayfs?#e1d31169ed58d11dccd555876f92f58c246c63cb + id: 1496289 + name: fuse-overlayfs + nvr: fuse-overlayfs-1.3.0-2.module+el8.3.1+9857+68fb1526 + owner_id: 4066 + owner_name: mbs + package_id: 70157 + package_name: fuse-overlayfs + release: 2.module+el8.3.1+9857+68fb1526 + source: git://pkgs.devel.redhat.com/rpms/fuse-overlayfs#e1d31169ed58d11dccd555876f92f58c246c63cb + start_time: '2021-02-08 21:18:09.660354' + start_ts: 1612819089.66035 + state: 1 + task_id: 34833528 + version: 1.3.0 + volume_id: 9 + volume_name: rhel-8 +1496290: + build_id: 1496290 + cg_id: null + cg_name: null + completion_time: '2021-02-08 21:30:53.373913' + completion_ts: 1612819853.37391 + creation_event_id: 37215037 + creation_time: '2021-02-08 21:18:09.702945' + creation_ts: 1612819089.70294 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/containernetworking-plugins?#64397d475509f557d914836b88ffede230ecc665 + id: 1496290 + name: containernetworking-plugins + nvr: containernetworking-plugins-0.9.0-1.module+el8.3.1+9857+68fb1526 + owner_id: 4066 + owner_name: mbs + package_id: 63639 + package_name: containernetworking-plugins + release: 1.module+el8.3.1+9857+68fb1526 + source: git://pkgs.devel.redhat.com/rpms/containernetworking-plugins#64397d475509f557d914836b88ffede230ecc665 + start_time: '2021-02-08 21:18:09.679232' + start_ts: 1612819089.67923 + state: 1 + task_id: 34833532 + version: 0.9.0 + volume_id: 9 + volume_name: rhel-8 +1496292: + build_id: 1496292 + cg_id: null + cg_name: null + completion_time: '2021-02-08 21:21:17.574125' + completion_ts: 1612819277.57413 + creation_event_id: 37215063 + creation_time: '2021-02-08 21:18:54.200328' + creation_ts: 1612819134.20033 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/container-selinux?#b3fd625d0748cce8152e4b34b44c84917a20512f + id: 1496292 + name: container-selinux + nvr: container-selinux-2.155.0-1.module+el8.3.1+9857+68fb1526 + owner_id: 4066 + owner_name: mbs + package_id: 61575 + package_name: container-selinux + release: 1.module+el8.3.1+9857+68fb1526 + source: git://pkgs.devel.redhat.com/rpms/container-selinux#b3fd625d0748cce8152e4b34b44c84917a20512f + start_time: '2021-02-08 21:18:54.190060' + start_ts: 1612819134.19006 + state: 1 + task_id: 34833534 + version: 2.155.0 + volume_id: 9 + volume_name: rhel-8 +1496295: + build_id: 1496295 + cg_id: null + cg_name: null + completion_time: '2021-02-08 21:23:47.965677' + completion_ts: 1612819427.96568 + creation_event_id: 37215075 + creation_time: '2021-02-08 21:19:09.574020' + creation_ts: 1612819149.57402 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/slirp4netns?#e0e4461cc44b989540cfa57601e07ea50f7f5e3e + id: 1496295 + name: slirp4netns + nvr: slirp4netns-1.1.8-1.module+el8.3.1+9857+68fb1526 + owner_id: 4066 + owner_name: mbs + package_id: 70156 + package_name: slirp4netns + release: 1.module+el8.3.1+9857+68fb1526 + source: git://pkgs.devel.redhat.com/rpms/slirp4netns#e0e4461cc44b989540cfa57601e07ea50f7f5e3e + start_time: '2021-02-08 21:19:09.565923' + start_ts: 1612819149.56592 + state: 1 + task_id: 34833542 + version: 1.1.8 + volume_id: 9 + volume_name: rhel-8 +1496298: + build_id: 1496298 + cg_id: null + cg_name: null + completion_time: '2021-02-08 21:30:18.221587' + completion_ts: 1612819818.22159 + creation_event_id: 37215083 + creation_time: '2021-02-08 21:19:14.351438' + creation_ts: 1612819154.35144 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/skopeo?#0f8f5da387c175bd8518449107dd20b71a80733d + id: 1496298 + name: skopeo + nvr: skopeo-1.2.0-9.module+el8.3.1+9857+68fb1526 + owner_id: 4066 + owner_name: mbs + package_id: 58395 + package_name: skopeo + release: 9.module+el8.3.1+9857+68fb1526 + source: git://pkgs.devel.redhat.com/rpms/skopeo#0f8f5da387c175bd8518449107dd20b71a80733d + start_time: '2021-02-08 21:19:14.341883' + start_ts: 1612819154.34188 + state: 1 + task_id: 34833544 + version: 1.2.0 + volume_id: 9 + volume_name: rhel-8 +1500048: + build_id: 1500048 + cg_id: null + cg_name: null + completion_time: '2021-02-11 14:17:41.405236' + completion_ts: 1613053061.40524 + creation_event_id: 37278925 + creation_time: '2021-02-11 14:16:08.132843' + creation_ts: 1613052968.13284 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/toolbox#0ae63aea611d59e5642f3d6ab5b4e3347b743f91 + id: 1500048 + name: toolbox + nvr: toolbox-0.0.8-3.rhaos4.7.el8 + owner_id: 5530 + owner_name: travier + package_id: 71308 + package_name: toolbox + release: 3.rhaos4.7.el8 + source: git://pkgs.devel.redhat.com/rpms/toolbox#0ae63aea611d59e5642f3d6ab5b4e3347b743f91 + start_time: '2021-02-11 14:16:08.125750' + start_ts: 1613052968.12575 + state: 1 + task_id: 34894281 + version: 0.0.8 + volume_id: 9 + volume_name: rhel-8 +1500241: + build_id: 1500241 + cg_id: null + cg_name: null + completion_time: '2021-02-11 17:17:34.664917' + completion_ts: 1613063854.66492 + creation_event_id: 37281553 + creation_time: '2021-02-11 17:14:19.227790' + creation_ts: 1613063659.22779 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/crypto-policies#f081a2999a117e367f383e9041086d7307ce2811 + id: 1500241 + name: crypto-policies + nvr: crypto-policies-20210209-1.gitbfb6bed.el8_3 + owner_id: 5079 + owner_name: asosedki + package_id: 54430 + package_name: crypto-policies + release: 1.gitbfb6bed.el8_3 + source: git://pkgs.devel.redhat.com/rpms/crypto-policies#f081a2999a117e367f383e9041086d7307ce2811 + start_time: '2021-02-11 17:14:19.217782' + start_ts: 1613063659.21778 + state: 1 + task_id: 34898082 + version: '20210209' + volume_id: 9 + volume_name: rhel-8 +1503948: + build_id: 1503948 + cg_id: null + cg_name: null + completion_time: '2021-02-15 12:18:54.582248' + completion_ts: 1613391534.58225 + creation_event_id: 37330428 + creation_time: '2021-02-15 11:57:46.851560' + creation_ts: 1613390266.85156 + epoch: 32 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/bind#077334f787cc3dde7110462dfbe2157032f4b0c0 + id: 1503948 + name: bind + nvr: bind-9.11.20-5.el8_3.1 + owner_id: 3655 + owner_name: pemensik + package_id: 194 + package_name: bind + release: 5.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/bind#077334f787cc3dde7110462dfbe2157032f4b0c0 + start_time: '2021-02-15 11:57:46.811111' + start_ts: 1613390266.81111 + state: 1 + task_id: 34947235 + version: 9.11.20 + volume_id: 9 + volume_name: rhel-8 +1517313: + build_id: 1517313 + cg_id: null + cg_name: null + completion_time: '2021-02-25 14:58:20.664408' + completion_ts: 1614265100.66441 + creation_event_id: 37552781 + creation_time: '2021-02-25 14:52:47.119921' + creation_ts: 1614264767.11992 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/zlib#e64bfcf88215b2a9157e1133b7f2094c64d5db50 + id: 1517313 + name: zlib + nvr: zlib-1.2.11-16.2.el8_3 + owner_id: 4932 + owner_name: odubaj + package_id: 558 + package_name: zlib + release: 16.2.el8_3 + source: git://pkgs.devel.redhat.com/rpms/zlib#e64bfcf88215b2a9157e1133b7f2094c64d5db50 + start_time: '2021-02-25 14:52:47.110171' + start_ts: 1614264767.11017 + state: 1 + task_id: 35157638 + version: 1.2.11 + volume_id: 9 + volume_name: rhel-8 +1540189: + build_id: 1540189 + cg_id: null + cg_name: null + completion_time: '2021-03-18 12:32:14.309147' + completion_ts: 1616070734.30915 + creation_event_id: 37952169 + creation_time: '2021-03-18 12:23:36.548210' + creation_ts: 1616070216.54821 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/NetworkManager#25742dfcad1503356e70de8474008ed23f0b4a3f + id: 1540189 + name: NetworkManager + nvr: NetworkManager-1.26.0-14.1.rhaos4.7.el8 + owner_id: 2354 + owner_name: thaller + package_id: 34 + package_name: NetworkManager + release: 14.1.rhaos4.7.el8 + source: git://pkgs.devel.redhat.com/rpms/NetworkManager#25742dfcad1503356e70de8474008ed23f0b4a3f + start_time: '2021-03-18 12:23:36.462491' + start_ts: 1616070216.46249 + state: 1 + task_id: 35537151 + version: 1.26.0 + volume_id: 9 + volume_name: rhel-8 +1545328: + build_id: 1545328 + cg_id: null + cg_name: null + completion_time: '2021-03-22 17:32:28.473011' + completion_ts: 1616434348.47301 + creation_event_id: 38064849 + creation_time: '2021-03-22 17:12:42.188472' + creation_ts: 1616433162.18847 + epoch: 15 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/qemu-kvm?#1034835f42d1919ceecacca8c7bdae0d4b2e6d6d + id: 1545328 + name: qemu-kvm + nvr: qemu-kvm-4.2.0-34.module+el8.3.0+10437+1ca0c2ba.5 + owner_id: 4066 + owner_name: mbs + package_id: 18283 + package_name: qemu-kvm + release: 34.module+el8.3.0+10437+1ca0c2ba.5 + source: git://pkgs.devel.redhat.com/rpms/qemu-kvm#1034835f42d1919ceecacca8c7bdae0d4b2e6d6d + start_time: '2021-03-22 17:12:42.180049' + start_ts: 1616433162.18005 + state: 1 + task_id: 35635364 + version: 4.2.0 + volume_id: 9 + volume_name: rhel-8 +1548253: + build_id: 1548253 + cg_id: null + cg_name: null + completion_time: '2021-03-24 13:54:37.619053' + completion_ts: 1616594077.61905 + creation_event_id: 38101004 + creation_time: '2021-03-24 13:50:18.119270' + creation_ts: 1616593818.11927 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libldb#919948ca48b01da26d34359019f5f3ea0e2bd62f + id: 1548253 + name: libldb + nvr: libldb-2.1.3-3.el8_3 + owner_id: 1591 + owner_name: anschnei + package_id: 29894 + package_name: libldb + release: 3.el8_3 + source: git://pkgs.devel.redhat.com/rpms/libldb#919948ca48b01da26d34359019f5f3ea0e2bd62f + start_time: '2021-03-24 13:50:18.113649' + start_ts: 1616593818.11365 + state: 1 + task_id: 35691359 + version: 2.1.3 + volume_id: 9 + volume_name: rhel-8 +1550360: + build_id: 1550360 + cg_id: null + cg_name: null + completion_time: '2021-03-25 16:56:18.405268' + completion_ts: 1616691378.40527 + creation_event_id: 38129940 + creation_time: '2021-03-25 16:44:48.853425' + creation_ts: 1616690688.85343 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openssl#7153cdebc8daa4e7ceff3e62dd9d5f83150a06c2 + id: 1550360 + name: openssl + nvr: openssl-1.1.1g-15.el8_3 + owner_id: 5442 + owner_name: shebburn + package_id: 2328 + package_name: openssl + release: 15.el8_3 + source: git://pkgs.devel.redhat.com/rpms/openssl#7153cdebc8daa4e7ceff3e62dd9d5f83150a06c2 + start_time: '2021-03-25 16:44:48.846116' + start_ts: 1616690688.84612 + state: 1 + task_id: 35735826 + version: 1.1.1g + volume_id: 9 + volume_name: rhel-8 +1559858: + build_id: 1559858 + cg_id: null + cg_name: null + completion_time: '2021-04-01 13:25:50.129799' + completion_ts: 1617283550.1298 + creation_event_id: 38268596 + creation_time: '2021-04-01 13:13:09.041592' + creation_ts: 1617282789.04159 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gnutls#eb82699c90579d58fe78ef70b9c2ec46014334b3 + id: 1559858 + name: gnutls + nvr: gnutls-3.6.14-8.el8_3 + owner_id: 1285 + owner_name: dueno + package_id: 770 + package_name: gnutls + release: 8.el8_3 + source: git://pkgs.devel.redhat.com/rpms/gnutls#eb82699c90579d58fe78ef70b9c2ec46014334b3 + start_time: '2021-04-01 13:13:09.035190' + start_ts: 1617282789.03519 + state: 1 + task_id: 35905549 + version: 3.6.14 + volume_id: 9 + volume_name: rhel-8 +1565615: + build_id: 1565615 + cg_id: null + cg_name: null + completion_time: '2021-04-07 07:58:14.895444' + completion_ts: 1617782294.89544 + creation_event_id: 38376341 + creation_time: '2021-04-07 07:54:10.862751' + creation_ts: 1617782050.86275 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nettle#f0d45c2112f0974adc4bf19e6e91de2d74629b2c + id: 1565615 + name: nettle + nvr: nettle-3.4.1-4.el8_3 + owner_id: 1285 + owner_name: dueno + package_id: 15400 + package_name: nettle + release: 4.el8_3 + source: git://pkgs.devel.redhat.com/rpms/nettle#f0d45c2112f0974adc4bf19e6e91de2d74629b2c + start_time: '2021-04-07 07:54:10.855748' + start_ts: 1617782050.85575 + state: 1 + task_id: 36008850 + version: 3.4.1 + volume_id: 9 + volume_name: rhel-8 +1567587: + build_id: 1567587 + cg_id: null + cg_name: null + completion_time: '2021-04-08 16:38:55.543836' + completion_ts: 1617899935.54384 + creation_event_id: 38418010 + creation_time: '2021-04-08 16:31:46.107501' + creation_ts: 1617899506.1075 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/bash#4456704d28cc96480548d4091f138b71e7cf1ba2 + id: 1567587 + name: bash + nvr: bash-4.4.19-14.el8_3 + owner_id: 2577 + owner_name: svashish + package_id: 184 + package_name: bash + release: 14.el8_3 + source: git://pkgs.devel.redhat.com/rpms/bash#4456704d28cc96480548d4091f138b71e7cf1ba2 + start_time: '2021-04-08 16:31:46.100057' + start_ts: 1617899506.10006 + state: 1 + task_id: 36045371 + version: 4.4.19 + volume_id: 9 + volume_name: rhel-8 +1586657: + build_id: 1586657 + cg_id: null + cg_name: null + completion_time: '2021-04-23 16:42:37.892665' + completion_ts: 1619196157.89266 + creation_event_id: 38687560 + creation_time: '2021-04-23 16:29:05.500968' + creation_ts: 1619195345.50097 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/selinux-policy#c27d437b028a581d48df2da2865e822e160d17b4 + id: 1586657 + name: selinux-policy + nvr: selinux-policy-3.14.3-54.el8_3.4 + owner_id: 3516 + owner_name: zpytela + package_id: 2989 + package_name: selinux-policy + release: 54.el8_3.4 + source: git://pkgs.devel.redhat.com/rpms/selinux-policy#c27d437b028a581d48df2da2865e822e160d17b4 + start_time: '2021-04-23 16:29:05.494636' + start_ts: 1619195345.49464 + state: 1 + task_id: 36389629 + version: 3.14.3 + volume_id: 9 + volume_name: rhel-8 +1591452: + build_id: 1591452 + cg_id: null + cg_name: null + completion_time: '2021-04-29 19:53:31.786318' + completion_ts: 1619726011.78632 + creation_event_id: 38777833 + creation_time: '2021-04-29 19:49:37.452584' + creation_ts: 1619725777.45258 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/runc#8a1ff61ecd57404146fa33b886d125680d96df93 + id: 1591452 + name: runc + nvr: runc-1.0.0-96.rhaos4.8.gitcd80260.el8 + owner_id: 5527 + owner_name: pehunt + package_id: 54989 + package_name: runc + release: 96.rhaos4.8.gitcd80260.el8 + source: git://pkgs.devel.redhat.com/rpms/runc#8a1ff61ecd57404146fa33b886d125680d96df93 + start_time: '2021-04-29 19:49:37.445364' + start_ts: 1619725777.44536 + state: 1 + task_id: 36535198 + version: 1.0.0 + volume_id: 9 + volume_name: rhel-8 +1593194: + build_id: 1593194 + cg_id: null + cg_name: null + completion_time: '2021-04-30 22:14:37.811832' + completion_ts: 1619820877.81183 + creation_event_id: 38803221 + creation_time: '2021-04-30 22:09:18.699828' + creation_ts: 1619820558.69983 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cri-tools#b0668e2dc3b455fc6d6c36c9ae4739ae277338f7 + id: 1593194 + name: cri-tools + nvr: cri-tools-1.20.0-2.el8 + owner_id: 1929 + owner_name: lmeyer + package_id: 66553 + package_name: cri-tools + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/cri-tools#b0668e2dc3b455fc6d6c36c9ae4739ae277338f7 + start_time: '2021-04-30 22:09:18.693718' + start_ts: 1619820558.69372 + state: 1 + task_id: 36568001 + version: 1.20.0 + volume_id: 9 + volume_name: rhel-8 +1594935: + build_id: 1594935 + cg_id: null + cg_name: null + completion_time: '2021-05-04 13:32:28.710286' + completion_ts: 1620135148.71029 + creation_event_id: 38849027 + creation_time: '2021-05-04 13:25:30.963752' + creation_ts: 1620134730.96375 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ignition#47833ed1b14967a063d3d38c5b6ed5709afbbdab + id: 1594935 + name: ignition + nvr: ignition-2.9.0-3.rhaos4.7.git1d56dc8.el8 + owner_id: 5511 + owner_name: skunkerk + package_id: 70757 + package_name: ignition + release: 3.rhaos4.7.git1d56dc8.el8 + source: git://pkgs.devel.redhat.com/rpms/ignition#47833ed1b14967a063d3d38c5b6ed5709afbbdab + start_time: '2021-05-04 13:25:30.956518' + start_ts: 1620134730.95652 + state: 1 + task_id: 36619604 + version: 2.9.0 + volume_id: 9 + volume_name: rhel-8 +1607468: + build_id: 1607468 + cg_id: null + cg_name: null + completion_time: '2021-05-19 14:34:30.699818' + completion_ts: 1621434870.69982 + creation_event_id: 39059078 + creation_time: '2021-05-19 14:31:29.725460' + creation_ts: 1621434689.72546 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/redhat-release-coreos#452b3643540d221347c3cd8d7eab0dfd54e3c313 + id: 1607468 + name: redhat-release-coreos + nvr: redhat-release-coreos-47.83-2.el8 + owner_id: 2898 + owner_name: miabbott + package_id: 71362 + package_name: redhat-release-coreos + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/redhat-release-coreos#452b3643540d221347c3cd8d7eab0dfd54e3c313 + start_time: '2021-05-19 14:31:29.718268' + start_ts: 1621434689.71827 + state: 1 + task_id: 36900677 + version: '47.83' + volume_id: 9 + volume_name: rhel-8 +1610279: + build_id: 1610279 + cg_id: null + cg_name: null + completion_time: '2021-05-21 14:23:24.494591' + completion_ts: 1621607004.49459 + creation_event_id: 39093826 + creation_time: '2021-05-21 14:15:42.768719' + creation_ts: 1621606542.76872 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/glib2#46bdf2ee8185ca067b012beeca821a4675200d09 + id: 1610279 + name: glib2 + nvr: glib2-2.56.4-8.el8_3.1 + owner_id: 5512 + owner_name: mcatanza + package_id: 555 + package_name: glib2 + release: 8.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/glib2#46bdf2ee8185ca067b012beeca821a4675200d09 + start_time: '2021-05-21 14:15:42.763081' + start_ts: 1621606542.76308 + state: 1 + task_id: 36929139 + version: 2.56.4 + volume_id: 9 + volume_name: rhel-8 +1610416: + build_id: 1610416 + cg_id: null + cg_name: null + completion_time: '2021-05-21 15:30:21.323140' + completion_ts: 1621611021.32314 + creation_event_id: 39094790 + creation_time: '2021-05-21 15:21:13.451237' + creation_ts: 1621610473.45124 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openvswitch2.13#10d4c06a8aa5fc954df591fc3a73ce589119fe39 + id: 1610416 + name: openvswitch2.13 + nvr: openvswitch2.13-2.13.0-114.el8fdp + owner_id: 4813 + owner_name: openvswitch-ci/openvswitch-ci.ntdv.lab.eng.bos.redhat.com + package_id: 73997 + package_name: openvswitch2.13 + release: 114.el8fdp + source: git://pkgs.devel.redhat.com/rpms/openvswitch2.13#10d4c06a8aa5fc954df591fc3a73ce589119fe39 + start_time: '2021-05-21 15:21:13.443370' + start_ts: 1621610473.44337 + state: 1 + task_id: 36929864 + version: 2.13.0 + volume_id: 9 + volume_name: rhel-8 +1614737: + build_id: 1614737 + cg_id: null + cg_name: null + completion_time: '2021-05-27 06:25:53.614499' + completion_ts: 1622096753.6145 + creation_event_id: 39154003 + creation_time: '2021-05-27 06:10:34.667736' + creation_ts: 1622095834.66774 + epoch: 12 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dhcp#8e11f01b562a45a0db3e16eb4fb9a827ab413594 + id: 1614737 + name: dhcp + nvr: dhcp-4.3.6-41.el8_3.1 + owner_id: 2110 + owner_name: pzhukov + package_id: 348 + package_name: dhcp + release: 41.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/dhcp#8e11f01b562a45a0db3e16eb4fb9a827ab413594 + start_time: '2021-05-27 06:10:34.660207' + start_ts: 1622095834.66021 + state: 1 + task_id: 37014275 + version: 4.3.6 + volume_id: 9 + volume_name: rhel-8 +1620087: + build_id: 1620087 + cg_id: null + cg_name: null + completion_time: '2021-06-01 13:48:00.397903' + completion_ts: 1622555280.3979 + creation_event_id: 39254959 + creation_time: '2021-06-01 13:41:09.597760' + creation_ts: 1622554869.59776 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/polkit#03c4eeac32e59f842a147c1798e82793cf52f269 + id: 1620087 + name: polkit + nvr: polkit-0.115-11.el8_3.2 + owner_id: 3430 + owner_name: jrybar + package_id: 18062 + package_name: polkit + release: 11.el8_3.2 + source: git://pkgs.devel.redhat.com/rpms/polkit#03c4eeac32e59f842a147c1798e82793cf52f269 + start_time: '2021-06-01 13:41:09.581974' + start_ts: 1622554869.58197 + state: 1 + task_id: 37131221 + version: '0.115' + volume_id: 9 + volume_name: rhel-8 +1647438: + build_id: 1647438 + cg_id: null + cg_name: null + completion_time: '2021-06-29 10:11:52.009847' + completion_ts: 1624961512.00985 + creation_event_id: 39708715 + creation_time: '2021-06-29 09:59:07.262494' + creation_ts: 1624960747.26249 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/systemd#65eb42b3502670b4b0f7d3b032ce607c36d09b1e + id: 1647438 + name: systemd + nvr: systemd-239-41.el8_3.3 + owner_id: 4969 + owner_name: jamacku + package_id: 34071 + package_name: systemd + release: 41.el8_3.3 + source: git://pkgs.devel.redhat.com/rpms/systemd#65eb42b3502670b4b0f7d3b032ce607c36d09b1e + start_time: '2021-06-29 09:59:07.221133' + start_ts: 1624960747.22113 + state: 1 + task_id: 37784720 + version: '239' + volume_id: 9 + volume_name: rhel-8 +1655809: + build_id: 1655809 + cg_id: null + cg_name: null + completion_time: '2021-07-07 03:04:51.571822' + completion_ts: 1625627091.57182 + creation_event_id: 39842060 + creation_time: '2021-07-07 02:59:27.190997' + creation_ts: 1625626767.191 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openshift-clients#4ad6ffd18e893416802302a1996760cc77b6528d + id: 1655809 + name: openshift-clients + nvr: openshift-clients-4.7.0-202107070256.p0.git.8b4b094.assembly.stream.el8 + owner_id: 4078 + owner_name: ocp-build/buildvm.openshift.eng.bos.redhat.com + package_id: 73026 + package_name: openshift-clients + release: 202107070256.p0.git.8b4b094.assembly.stream.el8 + source: git://pkgs.devel.redhat.com/rpms/openshift-clients#4ad6ffd18e893416802302a1996760cc77b6528d + start_time: '2021-07-07 02:59:27.184663' + start_ts: 1625626767.18466 + state: 1 + task_id: 37924006 + version: 4.7.0 + volume_id: 9 + volume_name: rhel-8 +1657524: + build_id: 1657524 + cg_id: null + cg_name: null + completion_time: '2021-07-08 07:58:11.200179' + completion_ts: 1625731091.20018 + creation_event_id: 39859141 + creation_time: '2021-07-08 06:57:16.225780' + creation_ts: 1625727436.22578 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/kernel#1b71d859b24e5f35ad17555f4552dbd8b739e68c + id: 1657524 + name: kernel + nvr: kernel-4.18.0-240.23.2.el8_3 + owner_id: 1366 + owner_name: fhrbata + package_id: 1231 + package_name: kernel + release: 240.23.2.el8_3 + source: git://pkgs.devel.redhat.com/rpms/kernel#1b71d859b24e5f35ad17555f4552dbd8b739e68c + start_time: '2021-07-08 06:57:16.219133' + start_ts: 1625727436.21913 + state: 1 + task_id: 37948861 + version: 4.18.0 + volume_id: 9 + volume_name: rhel-8 +1662584: + build_id: 1662584 + cg_id: null + cg_name: null + completion_time: '2021-07-13 21:49:46.994236' + completion_ts: 1626212986.99424 + creation_event_id: 39948300 + creation_time: '2021-07-13 21:39:10.337886' + creation_ts: 1626212350.33789 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openshift#1a08b8ca66204005dc7765e5c0a15d859cf20414 + id: 1662584 + name: openshift + nvr: openshift-4.7.0-202107132131.p0.git.558d959.assembly.stream.el8 + owner_id: 4078 + owner_name: ocp-build/buildvm.openshift.eng.bos.redhat.com + package_id: 50046 + package_name: openshift + release: 202107132131.p0.git.558d959.assembly.stream.el8 + source: git://pkgs.devel.redhat.com/rpms/openshift#1a08b8ca66204005dc7765e5c0a15d859cf20414 + start_time: '2021-07-13 21:39:10.330687' + start_ts: 1626212350.33069 + state: 1 + task_id: 38057164 + version: 4.7.0 + volume_id: 9 + volume_name: rhel-8 +1674765: + build_id: 1674765 + cg_id: null + cg_name: null + completion_time: '2021-07-26 07:46:09.562749' + completion_ts: 1627285569.56275 + creation_event_id: 40166629 + creation_time: '2021-07-26 07:34:32.114749' + creation_ts: 1627284872.11475 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cri-o#bb715e17f30ecd65c02edee00b439662edd0aff3 + id: 1674765 + name: cri-o + nvr: cri-o-1.20.4-5.rhaos4.7.gitea842fa.el8 + owner_id: 5527 + owner_name: pehunt + package_id: 63415 + package_name: cri-o + release: 5.rhaos4.7.gitea842fa.el8 + source: git://pkgs.devel.redhat.com/rpms/cri-o#bb715e17f30ecd65c02edee00b439662edd0aff3 + start_time: '2021-07-26 07:34:32.107799' + start_ts: 1627284872.1078 + state: 1 + task_id: 38389258 + version: 1.20.4 + volume_id: 9 + volume_name: rhel-8 diff --git a/tests/resources/rhcos1/47.83.202107261211-0.rpm_defs.yaml b/tests/resources/rhcos1/47.83.202107261211-0.rpm_defs.yaml new file mode 100644 index 000000000..66e8083f9 --- /dev/null +++ b/tests/resources/rhcos1/47.83.202107261211-0.rpm_defs.yaml @@ -0,0 +1,7298 @@ +# For each RPM NVRA in the rhcos OS metadata, iterate through them, +# getRPM(nvra). Keys are nvra and values are output of getRPM +NetworkManager-1.26.0-14.1.rhaos4.7.el8.s390x: + arch: s390x + build_id: 1540189 + buildroot_id: 7177432 + buildtime: 1616070508 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465415 + metadata_only: false + name: NetworkManager + payloadhash: 08328506e4fa262c7fca706b5b7fdb97 + release: 14.1.rhaos4.7.el8 + size: 2284548 + version: 1.26.0 +NetworkManager-libnm-1.26.0-14.1.rhaos4.7.el8.s390x: + arch: s390x + build_id: 1540189 + buildroot_id: 7177432 + buildtime: 1616070508 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465423 + metadata_only: false + name: NetworkManager-libnm + payloadhash: 1b12b5e644ec64301f31b2c57ec43c1b + release: 14.1.rhaos4.7.el8 + size: 1795528 + version: 1.26.0 +NetworkManager-ovs-1.26.0-14.1.rhaos4.7.el8.s390x: + arch: s390x + build_id: 1540189 + buildroot_id: 7177432 + buildtime: 1616070508 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465421 + metadata_only: false + name: NetworkManager-ovs + payloadhash: 3e5cdba6df8fef1a8187cd19128a87e9 + release: 14.1.rhaos4.7.el8 + size: 153100 + version: 1.26.0 +NetworkManager-team-1.26.0-14.1.rhaos4.7.el8.s390x: + arch: s390x + build_id: 1540189 + buildroot_id: 7177432 + buildtime: 1616070508 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465418 + metadata_only: false + name: NetworkManager-team + payloadhash: 91905bf65a5171787f9752a1cb97dbe2 + release: 14.1.rhaos4.7.el8 + size: 142256 + version: 1.26.0 +NetworkManager-tui-1.26.0-14.1.rhaos4.7.el8.s390x: + arch: s390x + build_id: 1540189 + buildroot_id: 7177432 + buildtime: 1616070508 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465425 + metadata_only: false + name: NetworkManager-tui + payloadhash: 9b5b85db00c7af55411ba293f59b7ff9 + release: 14.1.rhaos4.7.el8 + size: 315412 + version: 1.26.0 +acl-2.2.53-1.el8.s390x: + arch: s390x + build_id: 745979 + buildroot_id: 4369545 + buildtime: 1534062941 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156907 + metadata_only: false + name: acl + payloadhash: aa0bfa3ab554c508b2b6f26f9be0d673 + release: 1.el8 + size: 80812 + version: 2.2.53 +adcli-0.8.2-7.el8.s390x: + arch: s390x + build_id: 1287749 + buildroot_id: 6313997 + buildtime: 1597398029 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8356521 + metadata_only: false + name: adcli + payloadhash: 00870d4b8f362d59d46e11f67c5d49ac + release: 7.el8 + size: 104032 + version: 0.8.2 +afterburn-4.6.0-1.rhaos4.7.el8.s390x: + arch: s390x + build_id: 1416174 + buildroot_id: 6786587 + buildtime: 1608050917 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9007537 + metadata_only: false + name: afterburn + payloadhash: 4a63c625bd61cacf67c8096d49d7915c + release: 1.rhaos4.7.el8 + size: 2102712 + version: 4.6.0 +attr-2.4.48-3.el8.s390x: + arch: s390x + build_id: 746019 + buildroot_id: 4369689 + buildtime: 1534063185 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6157326 + metadata_only: false + name: attr + payloadhash: 1044f193af97e27d58fde5f746bae0e6 + release: 3.el8 + size: 68512 + version: 2.4.48 +audit-3.0-0.17.20191104git1c2f876.el8.s390x: + arch: s390x + build_id: 1054304 + buildroot_id: 5491131 + buildtime: 1578502232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7666110 + metadata_only: false + name: audit + payloadhash: ed9a88eb8c5bddf953b9ec8dbb27b78a + release: 0.17.20191104git1c2f876.el8 + size: 245832 + version: '3.0' +audit-libs-3.0-0.17.20191104git1c2f876.el8.s390x: + arch: s390x + build_id: 1054304 + buildroot_id: 5491131 + buildtime: 1578502232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7666109 + metadata_only: false + name: audit-libs + payloadhash: eeb03267b8b55ff94021435e4f82b50b + release: 0.17.20191104git1c2f876.el8 + size: 113516 + version: '3.0' +authselect-1.2.1-2.el8.s390x: + arch: s390x + build_id: 1229779 + buildroot_id: 6101275 + buildtime: 1592561299 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8194413 + metadata_only: false + name: authselect + payloadhash: c8bedd804fd9cdba8896d0e68234c82a + release: 2.el8 + size: 114676 + version: 1.2.1 +authselect-libs-1.2.1-2.el8.s390x: + arch: s390x + build_id: 1229779 + buildroot_id: 6101275 + buildtime: 1592561299 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8194414 + metadata_only: false + name: authselect-libs + payloadhash: 619715bc2eb0c0da5976cc830f047d5e + release: 2.el8 + size: 210760 + version: 1.2.1 +avahi-libs-0.7-19.el8.s390x: + arch: s390x + build_id: 788201 + buildroot_id: 4539370 + buildtime: 1540478573 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6472743 + metadata_only: false + name: avahi-libs + payloadhash: 8eaa71d07520aa2bd9a133ca14684a97 + release: 19.el8 + size: 59672 + version: '0.7' +basesystem-11-5.el8.noarch: + arch: noarch + build_id: 746023 + buildroot_id: 4369700 + buildtime: 1534063206 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156542 + metadata_only: false + name: basesystem + payloadhash: 31bc067a6462aacd3b891681bdb27512 + release: 5.el8 + size: 9652 + version: '11' +bash-4.4.19-14.el8_3.s390x: + arch: s390x + build_id: 1567587 + buildroot_id: 7255417 + buildtime: 1617899781 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9545151 + metadata_only: false + name: bash + payloadhash: 444e34be000f45f3af6af9f2fc37e6e7 + release: 14.el8_3 + size: 1610296 + version: 4.4.19 +bash-completion-2.7-5.el8.noarch: + arch: noarch + build_id: 749502 + buildroot_id: 4386792 + buildtime: 1534169701 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6212478 + metadata_only: false + name: bash-completion + payloadhash: c877c1c1ba54760c6f1a362f81808531 + release: 5.el8 + size: 279048 + version: '2.7' +bind-export-libs-9.11.20-5.el8_3.1.s390x: + arch: s390x + build_id: 1503948 + buildroot_id: 7066145 + buildtime: 1613391024 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9333968 + metadata_only: false + name: bind-export-libs + payloadhash: cb48749d12556ab389d9ea119ccb5dcb + release: 5.el8_3.1 + size: 1078164 + version: 9.11.20 +bind-libs-9.11.20-5.el8_3.1.s390x: + arch: s390x + build_id: 1503948 + buildroot_id: 7066145 + buildtime: 1613391024 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9333962 + metadata_only: false + name: bind-libs + payloadhash: 671736ae4e4a99a5d9103e00f15bf48f + release: 5.el8_3.1 + size: 170284 + version: 9.11.20 +bind-libs-lite-9.11.20-5.el8_3.1.s390x: + arch: s390x + build_id: 1503948 + buildroot_id: 7066145 + buildtime: 1613391024 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9333961 + metadata_only: false + name: bind-libs-lite + payloadhash: a369087cd4d3e26cd785576305f2cab0 + release: 5.el8_3.1 + size: 1108448 + version: 9.11.20 +bind-license-9.11.20-5.el8_3.1.noarch: + arch: noarch + build_id: 1503948 + buildroot_id: 7066142 + buildtime: 1613391360 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9333861 + metadata_only: false + name: bind-license + payloadhash: 031c0bff2bd1f34861fbbc9a4e2e7d3c + release: 5.el8_3.1 + size: 102876 + version: 9.11.20 +bind-utils-9.11.20-5.el8_3.1.s390x: + arch: s390x + build_id: 1503948 + buildroot_id: 7066145 + buildtime: 1613391024 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9333963 + metadata_only: false + name: bind-utils + payloadhash: 1065d9d1445c9ec531bbb323f5be8db8 + release: 5.el8_3.1 + size: 436000 + version: 9.11.20 +brotli-1.0.6-2.el8.s390x: + arch: s390x + build_id: 1228342 + buildroot_id: 6095765 + buildtime: 1592395965 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8187018 + metadata_only: false + name: brotli + payloadhash: 450954a2f055c119f6321f2d3aceae8b + release: 2.el8 + size: 321764 + version: 1.0.6 +bsdtar-3.3.2-9.el8.s390x: + arch: s390x + build_id: 1159631 + buildroot_id: 5828957 + buildtime: 1586163961 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7934580 + metadata_only: false + name: bsdtar + payloadhash: dce23df91cdcb6deb551574458a4f5a1 + release: 9.el8 + size: 69504 + version: 3.3.2 +bubblewrap-0.4.0-1.el8.s390x: + arch: s390x + build_id: 1059406 + buildroot_id: 5511518 + buildtime: 1579177109 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7693002 + metadata_only: false + name: bubblewrap + payloadhash: b0e06d5f8d69573f4d615d9d3e0e2fc5 + release: 1.el8 + size: 48376 + version: 0.4.0 +bzip2-1.0.6-26.el8.s390x: + arch: s390x + build_id: 745941 + buildroot_id: 4369271 + buildtime: 1534060180 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155769 + metadata_only: false + name: bzip2 + payloadhash: 378d2c75103d94ff50a004e6ed2fecab + release: 26.el8 + size: 60268 + version: 1.0.6 +bzip2-libs-1.0.6-26.el8.s390x: + arch: s390x + build_id: 745941 + buildroot_id: 4369271 + buildtime: 1534060180 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155766 + metadata_only: false + name: bzip2-libs + payloadhash: 1ba5e68e3d5b1745f13cc2a1c7af90e8 + release: 26.el8 + size: 48336 + version: 1.0.6 +c-ares-1.13.0-5.el8.s390x: + arch: s390x + build_id: 749473 + buildroot_id: 4386716 + buildtime: 1534169142 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6212126 + metadata_only: false + name: c-ares + payloadhash: aa2d0987ec38a238f66f6a9a789c14c7 + release: 5.el8 + size: 92816 + version: 1.13.0 +ca-certificates-2020.2.41-80.0.el8_2.noarch: + arch: noarch + build_id: 1234030 + buildroot_id: 6114472 + buildtime: 1592867963 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8205302 + metadata_only: false + name: ca-certificates + payloadhash: df20d39b69d47efe9a26fb1316c8b323 + release: 80.0.el8_2 + size: 399264 + version: 2020.2.41 +checkpolicy-2.9-1.el8.s390x: + arch: s390x + build_id: 874097 + buildroot_id: 4840917 + buildtime: 1554484700 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6886840 + metadata_only: false + name: checkpolicy + payloadhash: 38734f03b50bf0f3e382cb055a97cd62 + release: 1.el8 + size: 327672 + version: '2.9' +chkconfig-1.13-2.el8.s390x: + arch: s390x + build_id: 1168710 + buildroot_id: 5866950 + buildtime: 1587109414 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7983731 + metadata_only: false + name: chkconfig + payloadhash: 240243873ef9808c4ace321de1c622d1 + release: 2.el8 + size: 195348 + version: '1.13' +chrony-3.5-1.el8.s390x: + arch: s390x + build_id: 900993 + buildroot_id: 4933516 + buildtime: 1558509699 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7022826 + metadata_only: false + name: chrony + payloadhash: 238af1390063a924d4dd9aad67f8736e + release: 1.el8 + size: 262532 + version: '3.5' +cifs-utils-6.8-3.el8.s390x: + arch: s390x + build_id: 1040007 + buildroot_id: 5442698 + buildtime: 1576686032 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7640615 + metadata_only: false + name: cifs-utils + payloadhash: 3a3d2a9aad323c1ac2b9eacc5da823a5 + release: 3.el8 + size: 95140 + version: '6.8' +clevis-15-1.el8.s390x: + arch: s390x + build_id: 1374943 + buildroot_id: 6633477 + buildtime: 1604406723 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8750862 + metadata_only: false + name: clevis + payloadhash: a5a7dc3bb03f3acda1c961217f2c367c + release: 1.el8 + size: 55460 + version: '15' +clevis-dracut-15-1.el8.s390x: + arch: s390x + build_id: 1374943 + buildroot_id: 6633477 + buildtime: 1604406723 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8750865 + metadata_only: false + name: clevis-dracut + payloadhash: ebcea392f5eecd43826051ac6230146e + release: 1.el8 + size: 12956 + version: '15' +clevis-luks-15-1.el8.s390x: + arch: s390x + build_id: 1374943 + buildroot_id: 6633477 + buildtime: 1604406723 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8750863 + metadata_only: false + name: clevis-luks + payloadhash: fddfe872a3c390a4cf478e350e52b095 + release: 1.el8 + size: 36492 + version: '15' +clevis-systemd-15-1.el8.s390x: + arch: s390x + build_id: 1374943 + buildroot_id: 6633477 + buildtime: 1604406723 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8750864 + metadata_only: false + name: clevis-systemd + payloadhash: 0de917361178243841785e32bc86c791 + release: 1.el8 + size: 12340 + version: '15' +cloud-utils-growpart-0.31-1.el8.noarch: + arch: noarch + build_id: 1234878 + buildroot_id: 6116914 + buildtime: 1592908591 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8206976 + metadata_only: false + name: cloud-utils-growpart + payloadhash: 12d873f6f66fe0cb9f462d8702472516 + release: 1.el8 + size: 31544 + version: '0.31' +compat-openssl10-1.0.2o-3.el8.s390x: + arch: s390x + build_id: 746120 + buildroot_id: 4370107 + buildtime: 1534064983 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6161656 + metadata_only: false + name: compat-openssl10 + payloadhash: e394172ded88d7d158e820887ff91da8 + release: 3.el8 + size: 883064 + version: 1.0.2o +conmon-2.0.21-2.rhaos4.6.el8.s390x: + arch: s390x + build_id: 1333209 + buildroot_id: 6471622 + buildtime: 1601303135 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8483484 + metadata_only: false + name: conmon + payloadhash: c722cef77e9f0bc1495966bb683c1430 + release: 2.rhaos4.6.el8 + size: 40200 + version: 2.0.21 +console-login-helper-messages-0.20.3-1.rhaos4.7.el8.noarch: + arch: noarch + build_id: 1391289 + buildroot_id: 6693910 + buildtime: 1606151753 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8846143 + metadata_only: false + name: console-login-helper-messages + payloadhash: 84eefbf4d116c1ded2dc601ed3629df1 + release: 1.rhaos4.7.el8 + size: 19116 + version: 0.20.3 +console-login-helper-messages-issuegen-0.20.3-1.rhaos4.7.el8.noarch: + arch: noarch + build_id: 1391289 + buildroot_id: 6693910 + buildtime: 1606151753 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8846144 + metadata_only: false + name: console-login-helper-messages-issuegen + payloadhash: bd3bcabb97997a356155442b173f2db3 + release: 1.rhaos4.7.el8 + size: 15572 + version: 0.20.3 +console-login-helper-messages-profile-0.20.3-1.rhaos4.7.el8.noarch: + arch: noarch + build_id: 1391289 + buildroot_id: 6693910 + buildtime: 1606151753 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8846145 + metadata_only: false + name: console-login-helper-messages-profile + payloadhash: 3ee15491759dc5b7826d1dc8e007dd3f + release: 1.rhaos4.7.el8 + size: 11236 + version: 0.20.3 +container-selinux-2.155.0-1.module+el8.3.1+9857+68fb1526.noarch: + arch: noarch + build_id: 1496292 + buildroot_id: 7038755 + buildtime: 1612819242 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298127 + metadata_only: false + name: container-selinux + payloadhash: d9d66c59861bfdcdd186f0c42bb93bd1 + release: 1.module+el8.3.1+9857+68fb1526 + size: 50851 + version: 2.155.0 +containernetworking-plugins-0.9.0-1.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496290 + buildroot_id: 7038732 + buildtime: 1612819332 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298283 + metadata_only: false + name: containernetworking-plugins + payloadhash: e0f37ef300b6c9bd76ea665dcd9764b4 + release: 1.module+el8.3.1+9857+68fb1526 + size: 22636551 + version: 0.9.0 +containers-common-1.2.0-9.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496298 + buildroot_id: 7038763 + buildtime: 1612819299 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298267 + metadata_only: false + name: containers-common + payloadhash: 5c809860a9637a989caa0ac5444eda8d + release: 9.module+el8.3.1+9857+68fb1526 + size: 69487 + version: 1.2.0 +coreos-installer-0.8.0-3.rhaos4.7.el8.s390x: + arch: s390x + build_id: 1460998 + buildroot_id: 6919999 + buildtime: 1610738195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9120933 + metadata_only: false + name: coreos-installer + payloadhash: b051046eb1d1db3dd702ed0f65c21d17 + release: 3.rhaos4.7.el8 + size: 2138600 + version: 0.8.0 +coreos-installer-bootinfra-0.8.0-3.rhaos4.7.el8.s390x: + arch: s390x + build_id: 1460998 + buildroot_id: 6919999 + buildtime: 1610738195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9120935 + metadata_only: false + name: coreos-installer-bootinfra + payloadhash: c26e7a945a30b0318fce85e938af24dd + release: 3.rhaos4.7.el8 + size: 752252 + version: 0.8.0 +coreutils-8.30-8.el8.s390x: + arch: s390x + build_id: 1165793 + buildroot_id: 5853081 + buildtime: 1586866518 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7967300 + metadata_only: false + name: coreutils + payloadhash: 50763a7d2d9f3e02ae91e97192c2d1ad + release: 8.el8 + size: 1243716 + version: '8.30' +coreutils-common-8.30-8.el8.s390x: + arch: s390x + build_id: 1165793 + buildroot_id: 5853081 + buildtime: 1586866518 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7967303 + metadata_only: false + name: coreutils-common + payloadhash: 9517a644ef6915dab1cb2a75503c2491 + release: 8.el8 + size: 2089704 + version: '8.30' +cpio-2.12-8.el8.s390x: + arch: s390x + build_id: 745956 + buildroot_id: 4369348 + buildtime: 1534060294 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156167 + metadata_only: false + name: cpio + payloadhash: 3dc6cfd1977824bea5f5c9fed7226f72 + release: 8.el8 + size: 267708 + version: '2.12' +cracklib-2.9.6-15.el8.s390x: + arch: s390x + build_id: 804625 + buildroot_id: 4589605 + buildtime: 1543246281 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551439 + metadata_only: false + name: cracklib + payloadhash: 46e4dff165a874aa5b16f23e739b099a + release: 15.el8 + size: 94244 + version: 2.9.6 +cracklib-dicts-2.9.6-15.el8.s390x: + arch: s390x + build_id: 804625 + buildroot_id: 4589605 + buildtime: 1543246281 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551438 + metadata_only: false + name: cracklib-dicts + payloadhash: 4f52aae907f4fcc4ecace03ae358ad83 + release: 15.el8 + size: 4119868 + version: 2.9.6 +cri-o-1.20.4-5.rhaos4.7.gitea842fa.el8.s390x: + arch: s390x + build_id: 1674765 + buildroot_id: 7644058 + buildtime: 1627285136 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 10016947 + metadata_only: false + name: cri-o + payloadhash: e19ec850ac59f1c4ecc02f8474a4ba82 + release: 5.rhaos4.7.gitea842fa.el8 + size: 23466912 + version: 1.20.4 +cri-tools-1.20.0-2.el8.s390x: + arch: s390x + build_id: 1593194 + buildroot_id: 7341812 + buildtime: 1619820681 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9669311 + metadata_only: false + name: cri-tools + payloadhash: 13889352b4058a30355f19b956fead69 + release: 2.el8 + size: 7849864 + version: 1.20.0 +criu-3.15-1.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496288 + buildroot_id: 7038736 + buildtime: 1612819292 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298300 + metadata_only: false + name: criu + payloadhash: 68a1b90e97144ae941d8c408ef5900eb + release: 1.module+el8.3.1+9857+68fb1526 + size: 478355 + version: '3.15' +crun-0.16-2.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496287 + buildroot_id: 7038727 + buildtime: 1612819177 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298160 + metadata_only: false + name: crun + payloadhash: 70140b905544823b3a374f03122a5530 + release: 2.module+el8.3.1+9857+68fb1526 + size: 160995 + version: '0.16' +crypto-policies-20210209-1.gitbfb6bed.el8_3.noarch: + arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320562 + metadata_only: false + name: crypto-policies + payloadhash: 48e3a2b96a8676497f52723238d02615 + release: 1.gitbfb6bed.el8_3 + size: 62520 + version: '20210209' +crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3.noarch: + arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320563 + metadata_only: false + name: crypto-policies-scripts + payloadhash: 419de3d06a04ee6fbb655fe74740bb8f + release: 1.gitbfb6bed.el8_3 + size: 67668 + version: '20210209' +cryptsetup-2.3.3-2.el8.s390x: + arch: s390x + build_id: 1302631 + buildroot_id: 6368512 + buildtime: 1598879750 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8395525 + metadata_only: false + name: cryptsetup + payloadhash: 9d29e00394939e17f8da868bda00090e + release: 2.el8 + size: 187296 + version: 2.3.3 +cryptsetup-libs-2.3.3-2.el8.s390x: + arch: s390x + build_id: 1302631 + buildroot_id: 6368512 + buildtime: 1598879750 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8395527 + metadata_only: false + name: cryptsetup-libs + payloadhash: d08b439c337f3b20521e7550ab4a1c0f + release: 2.el8 + size: 458024 + version: 2.3.3 +cryptsetup-reencrypt-2.3.3-2.el8.s390x: + arch: s390x + build_id: 1302631 + buildroot_id: 6368512 + buildtime: 1598879750 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8395530 + metadata_only: false + name: cryptsetup-reencrypt + payloadhash: bde536ca3c75a46585eb4341180f213b + release: 2.el8 + size: 54880 + version: 2.3.3 +cups-libs-2.2.6-38.el8.s390x: + arch: s390x + build_id: 1204647 + buildroot_id: 6006739 + buildtime: 1590475493 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8100732 + metadata_only: false + name: cups-libs + payloadhash: 0766629f9ed0de649e518fb4bdb7df1a + release: 38.el8 + size: 416796 + version: 2.2.6 +curl-7.61.1-14.el8_3.1.s390x: + arch: s390x + build_id: 1390917 + buildroot_id: 6693147 + buildtime: 1606148619 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8845263 + metadata_only: false + name: curl + payloadhash: ac0ad4c13251d095f957a9758aa78bc7 + release: 14.el8_3.1 + size: 357152 + version: 7.61.1 +cyrus-sasl-gssapi-2.1.27-5.el8.s390x: + arch: s390x + build_id: 1188151 + buildroot_id: 5943491 + buildtime: 1588873015 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8044007 + metadata_only: false + name: cyrus-sasl-gssapi + payloadhash: 51429d7dc43db9dd7c56e62cff18f2fa + release: 5.el8 + size: 48804 + version: 2.1.27 +cyrus-sasl-lib-2.1.27-5.el8.s390x: + arch: s390x + build_id: 1188151 + buildroot_id: 5943491 + buildtime: 1588873015 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8044015 + metadata_only: false + name: cyrus-sasl-lib + payloadhash: 5a8d7417e2febd3cfe69f073655ee41b + release: 5.el8 + size: 122108 + version: 2.1.27 +dbus-1.12.8-12.el8_3.s390x: + arch: s390x + build_id: 1458974 + buildroot_id: 6912643 + buildtime: 1610628774 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9110744 + metadata_only: false + name: dbus + payloadhash: 087050d52d7d1119c6ca08a61bc7589f + release: 12.el8_3 + size: 40604 + version: 1.12.8 +dbus-common-1.12.8-12.el8_3.noarch: + arch: noarch + build_id: 1458974 + buildroot_id: 6912640 + buildtime: 1610628776 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9110688 + metadata_only: false + name: dbus-common + payloadhash: 40b549ca1d4d542803703d5177dfd21a + release: 12.el8_3 + size: 45436 + version: 1.12.8 +dbus-daemon-1.12.8-12.el8_3.s390x: + arch: s390x + build_id: 1458974 + buildroot_id: 6912643 + buildtime: 1610628774 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9110745 + metadata_only: false + name: dbus-daemon + payloadhash: 62769b4043ce9533404b76388ea64c3c + release: 12.el8_3 + size: 235448 + version: 1.12.8 +dbus-libs-1.12.8-12.el8_3.s390x: + arch: s390x + build_id: 1458974 + buildroot_id: 6912643 + buildtime: 1610628774 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9110747 + metadata_only: false + name: dbus-libs + payloadhash: 876e70418c2ed81f35bba15478357cc0 + release: 12.el8_3 + size: 179588 + version: 1.12.8 +dbus-tools-1.12.8-12.el8_3.s390x: + arch: s390x + build_id: 1458974 + buildroot_id: 6912643 + buildtime: 1610628774 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9110746 + metadata_only: false + name: dbus-tools + payloadhash: 4f1d6223208af6ed201498ea8d6129d6 + release: 12.el8_3 + size: 83932 + version: 1.12.8 +device-mapper-1.02.171-5.el8_3.2.s390x: + arch: s390x + build_id: 1410255 + buildroot_id: 6763000 + buildtime: 1607515429 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8976644 + metadata_only: false + name: device-mapper + payloadhash: 69ddc2026d7abd3e0e18289c175545b2 + release: 5.el8_3.2 + size: 376016 + version: 1.02.171 +device-mapper-event-1.02.171-5.el8_3.2.s390x: + arch: s390x + build_id: 1410255 + buildroot_id: 6763000 + buildtime: 1607515429 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8976647 + metadata_only: false + name: device-mapper-event + payloadhash: 8a83b31b0603c0d25fbe54ed3f7e5f95 + release: 5.el8_3.2 + size: 271640 + version: 1.02.171 +device-mapper-event-libs-1.02.171-5.el8_3.2.s390x: + arch: s390x + build_id: 1410255 + buildroot_id: 6763000 + buildtime: 1607515429 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8976648 + metadata_only: false + name: device-mapper-event-libs + payloadhash: 03c4442008bc985f720536817a48f88f + release: 5.el8_3.2 + size: 271320 + version: 1.02.171 +device-mapper-libs-1.02.171-5.el8_3.2.s390x: + arch: s390x + build_id: 1410255 + buildroot_id: 6763000 + buildtime: 1607515429 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8976646 + metadata_only: false + name: device-mapper-libs + payloadhash: 6671125c34107af2b17e48551bfcbd2b + release: 5.el8_3.2 + size: 401872 + version: 1.02.171 +device-mapper-multipath-0.8.4-5.el8.s390x: + arch: s390x + build_id: 1254929 + buildroot_id: 6206537 + buildtime: 1594691607 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8275994 + metadata_only: false + name: device-mapper-multipath + payloadhash: 92f99c589073009a1f0fa0f27fbe3368 + release: 5.el8 + size: 191788 + version: 0.8.4 +device-mapper-multipath-libs-0.8.4-5.el8.s390x: + arch: s390x + build_id: 1254929 + buildroot_id: 6206537 + buildtime: 1594691607 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8276000 + metadata_only: false + name: device-mapper-multipath-libs + payloadhash: 5b46bcf115726c68ee02e681fa696b88 + release: 5.el8 + size: 304040 + version: 0.8.4 +device-mapper-persistent-data-0.8.5-4.el8.s390x: + arch: s390x + build_id: 1293877 + buildroot_id: 6341032 + buildtime: 1598033611 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8375354 + metadata_only: false + name: device-mapper-persistent-data + payloadhash: 477006b25c98d3bf91d63e21134b7af6 + release: 4.el8 + size: 424960 + version: 0.8.5 +dhcp-client-4.3.6-41.el8_3.1.s390x: + arch: s390x + build_id: 1614737 + buildroot_id: 7424407 + buildtime: 1622095984 + epoch: 12 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9769036 + metadata_only: false + name: dhcp-client + payloadhash: 1cf4058f9dd0dc7c9e8ded3da2350323 + release: 41.el8_3.1 + size: 309588 + version: 4.3.6 +dhcp-common-4.3.6-41.el8_3.1.noarch: + arch: noarch + build_id: 1614737 + buildroot_id: 7424406 + buildtime: 1622096035 + epoch: 12 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9768991 + metadata_only: false + name: dhcp-common + payloadhash: 943030c7665d2eb7a1ded3cc2a27c2d4 + release: 41.el8_3.1 + size: 210604 + version: 4.3.6 +dhcp-libs-4.3.6-41.el8_3.1.s390x: + arch: s390x + build_id: 1614737 + buildroot_id: 7424407 + buildtime: 1622095984 + epoch: 12 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9769037 + metadata_only: false + name: dhcp-libs + payloadhash: 569ecc26b5f44f7d547c6972d4bc4e9b + release: 41.el8_3.1 + size: 146536 + version: 4.3.6 +diffutils-3.6-6.el8.s390x: + arch: s390x + build_id: 1014155 + buildroot_id: 5341427 + buildtime: 1574173268 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7523546 + metadata_only: false + name: diffutils + payloadhash: a1a3033098c17a1540eef25939c9d349 + release: 6.el8 + size: 363248 + version: '3.6' +dnsmasq-2.79-13.el8_3.1.s390x: + arch: s390x + build_id: 1420639 + buildroot_id: 6798318 + buildtime: 1608208660 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020889 + metadata_only: false + name: dnsmasq + payloadhash: 9395511d063483213f9dc482f0b45cdf + release: 13.el8_3.1 + size: 311356 + version: '2.79' +dosfstools-4.1-6.el8.s390x: + arch: s390x + build_id: 850332 + buildroot_id: 4752034 + buildtime: 1550843079 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6783481 + metadata_only: false + name: dosfstools + payloadhash: ba7ee185334d9660970e4eaf8a77f18f + release: 6.el8 + size: 121088 + version: '4.1' +dracut-049-95.git20200804.el8_3.4.s390x: + arch: s390x + build_id: 1416853 + buildroot_id: 6785598 + buildtime: 1608038434 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9004503 + metadata_only: false + name: dracut + payloadhash: de3e8212903f6e11ebf628f585ab2061 + release: 95.git20200804.el8_3.4 + size: 383792 + version: 049 +dracut-network-049-95.git20200804.el8_3.4.s390x: + arch: s390x + build_id: 1416853 + buildroot_id: 6785598 + buildtime: 1608038434 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9004504 + metadata_only: false + name: dracut-network + payloadhash: 9051055bc95484e449b3fa5fb2fed1bf + release: 95.git20200804.el8_3.4 + size: 104760 + version: 049 +dracut-squash-049-95.git20200804.el8_3.4.s390x: + arch: s390x + build_id: 1416853 + buildroot_id: 6785598 + buildtime: 1608038434 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9004510 + metadata_only: false + name: dracut-squash + payloadhash: 882922a116f410cfc4c90e8daba69e22 + release: 95.git20200804.el8_3.4 + size: 56912 + version: 049 +e2fsprogs-1.45.6-1.el8.s390x: + arch: s390x + build_id: 1220066 + buildroot_id: 6064526 + buildtime: 1591610586 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8152086 + metadata_only: false + name: e2fsprogs + payloadhash: cc0b246ce25925afb39f8c45e492ab1e + release: 1.el8 + size: 1043200 + version: 1.45.6 +e2fsprogs-libs-1.45.6-1.el8.s390x: + arch: s390x + build_id: 1220066 + buildroot_id: 6064526 + buildtime: 1591610586 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8152076 + metadata_only: false + name: e2fsprogs-libs + payloadhash: 059d2cf31efc7231a179c9deb6791d9d + release: 1.el8 + size: 232780 + version: 1.45.6 +elfutils-debuginfod-client-0.180-1.el8.s390x: + arch: s390x + build_id: 1224505 + buildroot_id: 6081412 + buildtime: 1591898889 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8173203 + metadata_only: false + name: elfutils-debuginfod-client + payloadhash: 2de34e7c8323632891de1565189727eb + release: 1.el8 + size: 63780 + version: '0.180' +elfutils-default-yama-scope-0.180-1.el8.noarch: + arch: noarch + build_id: 1224505 + buildroot_id: 6081411 + buildtime: 1591899008 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8173167 + metadata_only: false + name: elfutils-default-yama-scope + payloadhash: 3edaf4555d91e324445161623e8cbb67 + release: 1.el8 + size: 48576 + version: '0.180' +elfutils-libelf-0.180-1.el8.s390x: + arch: s390x + build_id: 1224505 + buildroot_id: 6081412 + buildtime: 1591898889 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8173211 + metadata_only: false + name: elfutils-libelf + payloadhash: 92a8f67634d005c16954814ab79a62dc + release: 1.el8 + size: 216996 + version: '0.180' +elfutils-libs-0.180-1.el8.s390x: + arch: s390x + build_id: 1224505 + buildroot_id: 6081412 + buildtime: 1591898889 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8173205 + metadata_only: false + name: elfutils-libs + payloadhash: bbef1c1aac72db3a608dd7b7804e1d1c + release: 1.el8 + size: 289088 + version: '0.180' +ethtool-5.0-2.el8.s390x: + arch: s390x + build_id: 898379 + buildroot_id: 4922347 + buildtime: 1557996178 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7004974 + metadata_only: false + name: ethtool + payloadhash: 1ca5f069d47c93eccf32cd98248668ce + release: 2.el8 + size: 141876 + version: '5.0' +expat-2.2.5-4.el8.s390x: + arch: s390x + build_id: 1177309 + buildroot_id: 5900169 + buildtime: 1587742142 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8006323 + metadata_only: false + name: expat + payloadhash: 5d96f85facf5b47d08f728681f23c649 + release: 4.el8 + size: 107508 + version: 2.2.5 +file-libs-5.33-16.el8_3.1.s390x: + arch: s390x + build_id: 1480523 + buildroot_id: 6984976 + buildtime: 1611937391 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201006 + metadata_only: false + name: file-libs + payloadhash: a58f5ed72fe37f2a4b6720d2769697aa + release: 16.el8_3.1 + size: 552084 + version: '5.33' +filesystem-3.8-3.el8.s390x: + arch: s390x + build_id: 1175627 + buildroot_id: 5893764 + buildtime: 1587623159 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8000794 + metadata_only: false + name: filesystem + payloadhash: 68a86261110739aaa033b1d8629ffb49 + release: 3.el8 + size: 1134208 + version: '3.8' +findutils-4.6.0-20.el8.s390x: + arch: s390x + build_id: 794639 + buildroot_id: 4557731 + buildtime: 1541427654 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6492559 + metadata_only: false + name: findutils + payloadhash: 531b7d79a84fa700b60771b326c77bf4 + release: 20.el8 + size: 534792 + version: 4.6.0 +firewalld-filesystem-0.8.2-2.el8.noarch: + arch: noarch + build_id: 1281305 + buildroot_id: 6292936 + buildtime: 1596820473 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8340479 + metadata_only: false + name: firewalld-filesystem + payloadhash: 7cdf15ba20d74ebfce8f397b5d7a68fe + release: 2.el8 + size: 76604 + version: 0.8.2 +fuse-2.9.7-12.el8.s390x: + arch: s390x + build_id: 801232 + buildroot_id: 4576824 + buildtime: 1542361244 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6529453 + metadata_only: false + name: fuse + payloadhash: ecaa12ff46faa2e63650f42a1248b6ee + release: 12.el8 + size: 82560 + version: 2.9.7 +fuse-common-3.2.1-12.el8.s390x: + arch: s390x + build_id: 801232 + buildroot_id: 4576824 + buildtime: 1542361244 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6529456 + metadata_only: false + name: fuse-common + payloadhash: 4ea198ca2e931830cdc72e1e8f1e82fa + release: 12.el8 + size: 20560 + version: 3.2.1 +fuse-libs-2.9.7-12.el8.s390x: + arch: s390x + build_id: 801232 + buildroot_id: 4576824 + buildtime: 1542361244 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6529452 + metadata_only: false + name: fuse-libs + payloadhash: a78788363047da4cb96147f9cab870c8 + release: 12.el8 + size: 98460 + version: 2.9.7 +fuse-overlayfs-1.3.0-2.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496289 + buildroot_id: 7038734 + buildtime: 1612819195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298178 + metadata_only: false + name: fuse-overlayfs + payloadhash: 0aa62c982f68be8760eedba6d49dbcf9 + release: 2.module+el8.3.1+9857+68fb1526 + size: 66823 + version: 1.3.0 +fuse3-3.2.1-12.el8.s390x: + arch: s390x + build_id: 801232 + buildroot_id: 4576824 + buildtime: 1542361244 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6529451 + metadata_only: false + name: fuse3 + payloadhash: 7313c2f2f423653b155fe5230855d299 + release: 12.el8 + size: 49872 + version: 3.2.1 +fuse3-libs-3.2.1-12.el8.s390x: + arch: s390x + build_id: 801232 + buildroot_id: 4576824 + buildtime: 1542361244 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6529458 + metadata_only: false + name: fuse3-libs + payloadhash: a9dcb30e7f36bc2cc58a7fc06c6115cb + release: 12.el8 + size: 90240 + version: 3.2.1 +gawk-4.2.1-1.el8.s390x: + arch: s390x + build_id: 745937 + buildroot_id: 4369263 + buildtime: 1534060270 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156379 + metadata_only: false + name: gawk + payloadhash: 2799d50476fa56d33248a077345fe7ce + release: 1.el8 + size: 1168256 + version: 4.2.1 +gdbm-1.18-1.el8.s390x: + arch: s390x + build_id: 774503 + buildroot_id: 4488609 + buildtime: 1538130016 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399076 + metadata_only: false + name: gdbm + payloadhash: 6c062a12b6ab4e1853c89f1d37b63e55 + release: 1.el8 + size: 129308 + version: '1.18' +gdbm-libs-1.18-1.el8.s390x: + arch: s390x + build_id: 774503 + buildroot_id: 4488609 + buildtime: 1538130016 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399073 + metadata_only: false + name: gdbm-libs + payloadhash: 83ff9ed81bee653f4228af50fe53a3da + release: 1.el8 + size: 60524 + version: '1.18' +gdisk-1.0.3-6.el8.s390x: + arch: s390x + build_id: 746292 + buildroot_id: 4370928 + buildtime: 1534067900 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6164377 + metadata_only: false + name: gdisk + payloadhash: f4373440311e34bd2110341570e53c1d + release: 6.el8 + size: 222892 + version: 1.0.3 +geolite2-city-20180605-1.el8.noarch: + arch: noarch + build_id: 746302 + buildroot_id: 4370991 + buildtime: 1534068063 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6162332 + metadata_only: false + name: geolite2-city + payloadhash: 886d8c77e7dffa8e8b2c0318d9dfa009 + release: 1.el8 + size: 19875640 + version: '20180605' +geolite2-country-20180605-1.el8.noarch: + arch: noarch + build_id: 746302 + buildroot_id: 4370991 + buildtime: 1534068063 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6162331 + metadata_only: false + name: geolite2-country + payloadhash: af999c2be76b68d670e022915c807ca2 + release: 1.el8 + size: 1081620 + version: '20180605' +git-core-2.27.0-1.el8.s390x: + arch: s390x + build_id: 1226201 + buildroot_id: 6088143 + buildtime: 1592249070 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8180062 + metadata_only: false + name: git-core + payloadhash: 5b8099b94beded6eba2005bbe819ea2c + release: 1.el8 + size: 6398168 + version: 2.27.0 +glib2-2.56.4-8.el8_3.1.s390x: + arch: s390x + build_id: 1610279 + buildroot_id: 7409624 + buildtime: 1621606788 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9746650 + metadata_only: false + name: glib2 + payloadhash: 4491e5c5dc1f79b07020473a4c02faa8 + release: 8.el8_3.1 + size: 2528572 + version: 2.56.4 +glibc-2.28-127.el8_3.2.s390x: + arch: s390x + build_id: 1447987 + buildroot_id: 6879516 + buildtime: 1610041732 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9071538 + metadata_only: false + name: glibc + payloadhash: 6a1d44efe3f9823287072a92ca10f890 + release: 127.el8_3.2 + size: 3361512 + version: '2.28' +glibc-all-langpacks-2.28-127.el8_3.2.s390x: + arch: s390x + build_id: 1447987 + buildroot_id: 6879516 + buildtime: 1610041732 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9071742 + metadata_only: false + name: glibc-all-langpacks + payloadhash: 7ce0e0790ca0cbe2fdcacb1729c59529 + release: 127.el8_3.2 + size: 25629644 + version: '2.28' +glibc-common-2.28-127.el8_3.2.s390x: + arch: s390x + build_id: 1447987 + buildroot_id: 6879516 + buildtime: 1610041732 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9071543 + metadata_only: false + name: glibc-common + payloadhash: 3eb5ee8ea6129b73a12b6ee0283e627f + release: 127.el8_3.2 + size: 1491832 + version: '2.28' +glusterfs-6.0-37.2.el8.s390x: + arch: s390x + build_id: 1313163 + buildroot_id: 6401901 + buildtime: 1599582724 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8419616 + metadata_only: false + name: glusterfs + payloadhash: 2c062ea354ffbdf6b019f82da2b65e5f + release: 37.2.el8 + size: 579548 + version: '6.0' +glusterfs-client-xlators-6.0-37.2.el8.s390x: + arch: s390x + build_id: 1313163 + buildroot_id: 6401901 + buildtime: 1599582724 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8419626 + metadata_only: false + name: glusterfs-client-xlators + payloadhash: dc992e737754b4959b78bd9ddd2f4cf8 + release: 37.2.el8 + size: 772016 + version: '6.0' +glusterfs-fuse-6.0-37.2.el8.s390x: + arch: s390x + build_id: 1313163 + buildroot_id: 6401901 + buildtime: 1599582724 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8419622 + metadata_only: false + name: glusterfs-fuse + payloadhash: 4a914c5f75a2a33e1847b0abe91ae6db + release: 37.2.el8 + size: 127844 + version: '6.0' +glusterfs-libs-6.0-37.2.el8.s390x: + arch: s390x + build_id: 1313163 + buildroot_id: 6401901 + buildtime: 1599582724 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8419623 + metadata_only: false + name: glusterfs-libs + payloadhash: d39134113803954f33b365b3c7dcc0b6 + release: 37.2.el8 + size: 383452 + version: '6.0' +gmp-6.1.2-10.el8.s390x: + arch: s390x + build_id: 911719 + buildroot_id: 4980064 + buildtime: 1560501743 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7093035 + metadata_only: false + name: gmp + payloadhash: fcd905dcdfcc990633d085a634f31b72 + release: 10.el8 + size: 291168 + version: 6.1.2 +gnupg2-2.2.20-2.el8.s390x: + arch: s390x + build_id: 1184235 + buildroot_id: 5929426 + buildtime: 1588610182 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8029174 + metadata_only: false + name: gnupg2 + payloadhash: f9e4eddfcd74ed1848afd212aa181bcc + release: 2.el8 + size: 2493300 + version: 2.2.20 +gnupg2-smime-2.2.20-2.el8.s390x: + arch: s390x + build_id: 1184235 + buildroot_id: 5929426 + buildtime: 1588610182 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8029172 + metadata_only: false + name: gnupg2-smime + payloadhash: 9a031fdcbd4c4cb221145c635e44c71a + release: 2.el8 + size: 272372 + version: 2.2.20 +gnutls-3.6.14-8.el8_3.s390x: + arch: s390x + build_id: 1559858 + buildroot_id: 7234161 + buildtime: 1617283482 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9527161 + metadata_only: false + name: gnutls + payloadhash: 42640e641768f09e1be9f9aa70235ac0 + release: 8.el8_3 + size: 919876 + version: 3.6.14 +gpgme-1.13.1-3.el8.s390x: + arch: s390x + build_id: 1212651 + buildroot_id: 6035887 + buildtime: 1591051466 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8126530 + metadata_only: false + name: gpgme + payloadhash: ea3d2d7a48e787c880677f198df81a0c + release: 3.el8 + size: 327512 + version: 1.13.1 +grep-3.1-6.el8.s390x: + arch: s390x + build_id: 745934 + buildroot_id: 4369260 + buildtime: 1534060328 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155641 + metadata_only: false + name: grep + payloadhash: 9fdf8d7b863c12c8ba427984f93eaaa9 + release: 6.el8 + size: 277676 + version: '3.1' +groff-base-1.22.3-18.el8.s390x: + arch: s390x + build_id: 809379 + buildroot_id: 4605497 + buildtime: 1544007158 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6575806 + metadata_only: false + name: groff-base + payloadhash: 2e25a80608526a6ee07aeaa47dc93fc0 + release: 18.el8 + size: 1032820 + version: 1.22.3 +gssproxy-0.8.0-16.el8.s390x: + arch: s390x + build_id: 1160555 + buildroot_id: 5832225 + buildtime: 1586212528 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7943444 + metadata_only: false + name: gssproxy + payloadhash: 26f66fa8072371a7e82a1e1373d7e952 + release: 16.el8 + size: 112636 + version: 0.8.0 +gzip-1.9-9.el8.s390x: + arch: s390x + build_id: 935160 + buildroot_id: 5055373 + buildtime: 1563790694 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7186977 + metadata_only: false + name: gzip + payloadhash: f2975a98f7e2a0f3280d76fefcbed7a8 + release: 9.el8 + size: 171176 + version: '1.9' +hardlink-1.3-6.el8.s390x: + arch: s390x + build_id: 746586 + buildroot_id: 4373192 + buildtime: 1534076102 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6170075 + metadata_only: false + name: hardlink + payloadhash: 7578accbbb114b24aa1d267c2d38f3ba + release: 6.el8 + size: 29120 + version: '1.3' +hostname-3.20-6.el8.s390x: + arch: s390x + build_id: 746599 + buildroot_id: 4373232 + buildtime: 1534076234 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6170674 + metadata_only: false + name: hostname + payloadhash: 53c4d4c88732387c3c3ac6310366da28 + release: 6.el8 + size: 31276 + version: '3.20' +hwdata-0.314-8.6.el8.noarch: + arch: noarch + build_id: 1327509 + buildroot_id: 6449775 + buildtime: 1600683137 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8463862 + metadata_only: false + name: hwdata + payloadhash: a4503aff86bc221f558c4765e24b529f + release: 8.6.el8 + size: 1708696 + version: '0.314' +ignition-2.9.0-3.rhaos4.7.git1d56dc8.el8.s390x: + arch: s390x + build_id: 1594935 + buildroot_id: 7348400 + buildtime: 1620134870 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9675317 + metadata_only: false + name: ignition + payloadhash: d26afdef638bf76c0ace692b4009aa2e + release: 3.rhaos4.7.git1d56dc8.el8 + size: 4702404 + version: 2.9.0 +info-6.5-6.el8.s390x: + arch: s390x + build_id: 1054659 + buildroot_id: 5492776 + buildtime: 1578565028 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7668502 + metadata_only: false + name: info + payloadhash: 1da48d1499652422454dc23bbea9d604 + release: 6.el8 + size: 198468 + version: '6.5' +initscripts-10.00.9-1.el8.s390x: + arch: s390x + build_id: 1266185 + buildroot_id: 6241944 + buildtime: 1595593184 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8307273 + metadata_only: false + name: initscripts + payloadhash: 00de196ffc0c4c8c7ba2fa191559a449 + release: 1.el8 + size: 345040 + version: 10.00.9 +ipcalc-0.2.4-4.el8.s390x: + arch: s390x + build_id: 985916 + buildroot_id: 5238654 + buildtime: 1570805248 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7399721 + metadata_only: false + name: ipcalc + payloadhash: 367aadbf6c333c2adb23f8c3e6f6bdc6 + release: 4.el8 + size: 36488 + version: 0.2.4 +iproute-5.3.0-5.el8.s390x: + arch: s390x + build_id: 1241839 + buildroot_id: 6140524 + buildtime: 1593441173 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8229473 + metadata_only: false + name: iproute + payloadhash: 03a6fdc30b83ef58338b0ed92215e482 + release: 5.el8 + size: 642980 + version: 5.3.0 +iptables-1.8.4-15.el8_3.3.s390x: + arch: s390x + build_id: 1384936 + buildroot_id: 6669814 + buildtime: 1605265968 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8813553 + metadata_only: false + name: iptables + payloadhash: fc61a53f162fe526682dad80c09997b2 + release: 15.el8_3.3 + size: 567468 + version: 1.8.4 +iptables-libs-1.8.4-15.el8_3.3.s390x: + arch: s390x + build_id: 1384936 + buildroot_id: 6669814 + buildtime: 1605265968 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8813556 + metadata_only: false + name: iptables-libs + payloadhash: cefcfae0cb0d31cba4cf43ad9babdcb9 + release: 15.el8_3.3 + size: 104508 + version: 1.8.4 +iputils-20180629-2.el8.s390x: + arch: s390x + build_id: 928388 + buildroot_id: 5033821 + buildtime: 1562757930 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7162477 + metadata_only: false + name: iputils + payloadhash: 587d88d82df95e003e6c3c95e2e8f696 + release: 2.el8 + size: 150100 + version: '20180629' +iscsi-initiator-utils-6.2.0.878-5.gitd791ce0.el8.s390x: + arch: s390x + build_id: 1291996 + buildroot_id: 6332720 + buildtime: 1597956288 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8370229 + metadata_only: false + name: iscsi-initiator-utils + payloadhash: 21aba3828d944681bade1702e99411d7 + release: 5.gitd791ce0.el8 + size: 347036 + version: 6.2.0.878 +iscsi-initiator-utils-iscsiuio-6.2.0.878-5.gitd791ce0.el8.s390x: + arch: s390x + build_id: 1291996 + buildroot_id: 6332720 + buildtime: 1597956288 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8370230 + metadata_only: false + name: iscsi-initiator-utils-iscsiuio + payloadhash: 9e98c4b1a439f48573361481b6abf58d + release: 5.gitd791ce0.el8 + size: 95296 + version: 6.2.0.878 +isns-utils-libs-0.99-1.el8.s390x: + arch: s390x + build_id: 868991 + buildroot_id: 4821540 + buildtime: 1553725796 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6855033 + metadata_only: false + name: isns-utils-libs + payloadhash: 64c0cb332b4a3d53e9f7ca6a9a0fcd3e + release: 1.el8 + size: 100852 + version: '0.99' +jansson-2.11-3.el8.s390x: + arch: s390x + build_id: 746879 + buildroot_id: 4374024 + buildtime: 1534077976 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172535 + metadata_only: false + name: jansson + payloadhash: 70f710284ce47864fba19718d3e8d06d + release: 3.el8 + size: 43732 + version: '2.11' +jose-10-2.el8.s390x: + arch: s390x + build_id: 746926 + buildroot_id: 4374180 + buildtime: 1534078343 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172802 + metadata_only: false + name: jose + payloadhash: efd494798ad2788156272f665364de6a + release: 2.el8 + size: 55060 + version: '10' +jq-1.6-2.el8.s390x: + arch: s390x + build_id: 1257082 + buildroot_id: 6215018 + buildtime: 1594848581 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8281827 + metadata_only: false + name: jq + payloadhash: 54e0443b0ce5060a580ff40ae17a36c9 + release: 2.el8 + size: 181824 + version: '1.6' +json-c-0.13.1-0.2.el8.s390x: + arch: s390x + build_id: 746927 + buildroot_id: 4374181 + buildtime: 1534078317 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172514 + metadata_only: false + name: json-c + payloadhash: cf6a699e1a3318098fdf23c955d4381b + release: 0.2.el8 + size: 38876 + version: 0.13.1 +json-glib-1.4.4-1.el8.s390x: + arch: s390x + build_id: 782991 + buildroot_id: 4522244 + buildtime: 1539698425 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6452477 + metadata_only: false + name: json-glib + payloadhash: acfad1507faa5bae78096af59e87ec4b + release: 1.el8 + size: 142004 + version: 1.4.4 +kbd-2.0.4-10.el8.s390x: + arch: s390x + build_id: 1228272 + buildroot_id: 6095236 + buildtime: 1592383947 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8185939 + metadata_only: false + name: kbd + payloadhash: c7398ffde1426a9eaf340db9cc86cad9 + release: 10.el8 + size: 389196 + version: 2.0.4 +kbd-legacy-2.0.4-10.el8.noarch: + arch: noarch + build_id: 1228272 + buildroot_id: 6095234 + buildtime: 1592384177 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8185930 + metadata_only: false + name: kbd-legacy + payloadhash: ffa0347d26788306c4805a0e3a8075bd + release: 10.el8 + size: 491612 + version: 2.0.4 +kbd-misc-2.0.4-10.el8.noarch: + arch: noarch + build_id: 1228272 + buildroot_id: 6095234 + buildtime: 1592384177 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8185934 + metadata_only: false + name: kbd-misc + payloadhash: 39719dce0bb701517628c62228bbecdd + release: 10.el8 + size: 1553252 + version: 2.0.4 +kernel-4.18.0-240.23.2.el8_3.s390x: + arch: s390x + build_id: 1657524 + buildroot_id: 7570522 + buildtime: 1625730965 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9948866 + metadata_only: false + name: kernel + payloadhash: a99ab610ace666539f47dfdab012109f + release: 240.23.2.el8_3 + size: 4563836 + version: 4.18.0 +kernel-core-4.18.0-240.23.2.el8_3.s390x: + arch: s390x + build_id: 1657524 + buildroot_id: 7570522 + buildtime: 1625730965 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9948893 + metadata_only: false + name: kernel-core + payloadhash: a7ac5ed7009d1e206be11014dabdd28c + release: 240.23.2.el8_3 + size: 22145932 + version: 4.18.0 +kernel-modules-4.18.0-240.23.2.el8_3.s390x: + arch: s390x + build_id: 1657524 + buildroot_id: 7570522 + buildtime: 1625730965 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9948895 + metadata_only: false + name: kernel-modules + payloadhash: 1635524ce8dd1750939394d6dbbf8e36 + release: 240.23.2.el8_3 + size: 5613360 + version: 4.18.0 +kernel-modules-extra-4.18.0-240.23.2.el8_3.s390x: + arch: s390x + build_id: 1657524 + buildroot_id: 7570522 + buildtime: 1625730965 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9948896 + metadata_only: false + name: kernel-modules-extra + payloadhash: fdb5e415fa3b3c215f03f2fe0a596508 + release: 240.23.2.el8_3 + size: 4946764 + version: 4.18.0 +kexec-tools-2.0.20-34.el8_3.2.s390x: + arch: s390x + build_id: 1453077 + buildroot_id: 6895290 + buildtime: 1610364526 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9086873 + metadata_only: false + name: kexec-tools + payloadhash: fe612fd741609283303827595d441349 + release: 34.el8_3.2 + size: 450092 + version: 2.0.20 +keyutils-1.5.10-6.el8.s390x: + arch: s390x + build_id: 746949 + buildroot_id: 4374249 + buildtime: 1534078436 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172983 + metadata_only: false + name: keyutils + payloadhash: b810ba5586eb639ccdf48399fd3f8d90 + release: 6.el8 + size: 62180 + version: 1.5.10 +keyutils-libs-1.5.10-6.el8.s390x: + arch: s390x + build_id: 746949 + buildroot_id: 4374249 + buildtime: 1534078436 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172985 + metadata_only: false + name: keyutils-libs + payloadhash: 937c160d335b22f7eef42d872c3ab1b8 + release: 6.el8 + size: 32920 + version: 1.5.10 +kmod-25-16.el8_3.1.s390x: + arch: s390x + build_id: 1455013 + buildroot_id: 6900949 + buildtime: 1610449358 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9095130 + metadata_only: false + name: kmod + payloadhash: c7105f938cbd6e9b6f026d8b542cab90 + release: 16.el8_3.1 + size: 124300 + version: '25' +kmod-libs-25-16.el8_3.1.s390x: + arch: s390x + build_id: 1455013 + buildroot_id: 6900949 + buildtime: 1610449358 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9095131 + metadata_only: false + name: kmod-libs + payloadhash: 4ed82b9572121f8f15b3801f3c4666fe + release: 16.el8_3.1 + size: 66808 + version: '25' +kpartx-0.8.4-5.el8.s390x: + arch: s390x + build_id: 1254929 + buildroot_id: 6206537 + buildtime: 1594691607 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8275997 + metadata_only: false + name: kpartx + payloadhash: a006ac92d83a6732c9738045dfd2a24f + release: 5.el8 + size: 109212 + version: 0.8.4 +krb5-libs-1.18.2-5.el8.s390x: + arch: s390x + build_id: 1277281 + buildroot_id: 6278992 + buildtime: 1596566266 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8331578 + metadata_only: false + name: krb5-libs + payloadhash: 7ad8bbafb533a9d5a04c64598eadf6b7 + release: 5.el8 + size: 819148 + version: 1.18.2 +less-530-1.el8.s390x: + arch: s390x + build_id: 746991 + buildroot_id: 4374402 + buildtime: 1534078810 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6173402 + metadata_only: false + name: less + payloadhash: 4e748fae33cce9daaaac8ae6a6aa6002 + release: 1.el8 + size: 167140 + version: '530' +libacl-2.2.53-1.el8.s390x: + arch: s390x + build_id: 745979 + buildroot_id: 4369545 + buildtime: 1534062941 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156903 + metadata_only: false + name: libacl + payloadhash: 6f8ca1573e06715993a3d9cf72602cef + release: 1.el8 + size: 34396 + version: 2.2.53 +libaio-0.3.112-1.el8.s390x: + arch: s390x + build_id: 906793 + buildroot_id: 4958851 + buildtime: 1559690911 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7058067 + metadata_only: false + name: libaio + payloadhash: 5c92d7ca9e5bf2f00ba7df87cd10c28e + release: 1.el8 + size: 32028 + version: 0.3.112 +libarchive-3.3.2-9.el8.s390x: + arch: s390x + build_id: 1159631 + buildroot_id: 5828957 + buildtime: 1586163961 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7934576 + metadata_only: false + name: libarchive + payloadhash: 4977ced827df1cf1552968c5e45a3666 + release: 9.el8 + size: 348896 + version: 3.3.2 +libassuan-2.5.1-3.el8.s390x: + arch: s390x + build_id: 747020 + buildroot_id: 4374497 + buildtime: 1534079054 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6173713 + metadata_only: false + name: libassuan + payloadhash: d736d854811fde43a638567619ff859c + release: 3.el8 + size: 81068 + version: 2.5.1 +libatomic-8.3.1-5.1.el8.s390x: + arch: s390x + build_id: 1191977 + buildroot_id: 5958080 + buildtime: 1589337833 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8058927 + metadata_only: false + name: libatomic + payloadhash: fb6d386c6b9c2cf538f602426d116c2e + release: 5.1.el8 + size: 20404 + version: 8.3.1 +libattr-2.4.48-3.el8.s390x: + arch: s390x + build_id: 746019 + buildroot_id: 4369689 + buildtime: 1534063185 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6157323 + metadata_only: false + name: libattr + payloadhash: eaf56ed40c57769be9b81e7bf0ff605f + release: 3.el8 + size: 26032 + version: 2.4.48 +libbasicobjects-0.1.1-39.el8.s390x: + arch: s390x + build_id: 746168 + buildroot_id: 4372558 + buildtime: 1534074452 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169599 + metadata_only: false + name: libbasicobjects + payloadhash: 11bce246d899dd167dbec6abd573257c + release: 39.el8 + size: 30724 + version: 0.1.1 +libblkid-2.32.1-24.el8.s390x: + arch: s390x + build_id: 1238207 + buildroot_id: 6129072 + buildtime: 1593157326 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8220231 + metadata_only: false + name: libblkid + payloadhash: 22d19f80cbf1b4ebe227823ecbb20b18 + release: 24.el8 + size: 212212 + version: 2.32.1 +libcap-2.26-4.el8.s390x: + arch: s390x + build_id: 1201127 + buildroot_id: 5994862 + buildtime: 1590147907 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8090627 + metadata_only: false + name: libcap + payloadhash: dc02e325d47a964b687b07fbdd278143 + release: 4.el8 + size: 58912 + version: '2.26' +libcap-ng-0.7.9-5.el8.s390x: + arch: s390x + build_id: 1003002 + buildroot_id: 5298250 + buildtime: 1572943000 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7465675 + metadata_only: false + name: libcap-ng + payloadhash: 69d506d4eb331a2204612444cfecc25c + release: 5.el8 + size: 32496 + version: 0.7.9 +libcollection-0.7.0-39.el8.s390x: + arch: s390x + build_id: 746168 + buildroot_id: 4372558 + buildtime: 1534074452 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169598 + metadata_only: false + name: libcollection + payloadhash: ffea78f7e90d7cab05713c0fcea9a4ef + release: 39.el8 + size: 46832 + version: 0.7.0 +libcom_err-1.45.6-1.el8.s390x: + arch: s390x + build_id: 1220066 + buildroot_id: 6064526 + buildtime: 1591610586 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8152084 + metadata_only: false + name: libcom_err + payloadhash: 2bc61250d8661448c60db73bf859a684 + release: 1.el8 + size: 48664 + version: 1.45.6 +libcurl-7.61.1-14.el8_3.1.s390x: + arch: s390x + build_id: 1390917 + buildroot_id: 6693147 + buildtime: 1606148619 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8845264 + metadata_only: false + name: libcurl + payloadhash: b8e2bf1c3f07cf8912e340fa011de8b3 + release: 14.el8_3.1 + size: 288724 + version: 7.61.1 +libdaemon-0.14-15.el8.s390x: + arch: s390x + build_id: 747067 + buildroot_id: 4374663 + buildtime: 1534079518 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6174992 + metadata_only: false + name: libdaemon + payloadhash: f07e8223003f64c11344f7d52e7ef13e + release: 15.el8 + size: 34660 + version: '0.14' +libdb-5.3.28-39.el8.s390x: + arch: s390x + build_id: 1228713 + buildroot_id: 6097451 + buildtime: 1592462670 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8190364 + metadata_only: false + name: libdb + payloadhash: 8cecf359346aaf1c0ed8a117067853a4 + release: 39.el8 + size: 702432 + version: 5.3.28 +libdb-utils-5.3.28-39.el8.s390x: + arch: s390x + build_id: 1228713 + buildroot_id: 6097451 + buildtime: 1592462670 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8190374 + metadata_only: false + name: libdb-utils + payloadhash: b1da2915ae17a53278ae06b66fe13826 + release: 39.el8 + size: 150084 + version: 5.3.28 +libdhash-0.5.0-39.el8.s390x: + arch: s390x + build_id: 746168 + buildroot_id: 4372558 + buildtime: 1534074452 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169605 + metadata_only: false + name: libdhash + payloadhash: e8e0a165ee2f12daefb61beb1222a3ce + release: 39.el8 + size: 33812 + version: 0.5.0 +libedit-3.1-23.20170329cvs.el8.s390x: + arch: s390x + build_id: 747074 + buildroot_id: 4374705 + buildtime: 1534079677 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6174827 + metadata_only: false + name: libedit + payloadhash: ef7c061ced3469738d3bd844612380de + release: 23.20170329cvs.el8 + size: 100072 + version: '3.1' +libevent-2.1.8-5.el8.s390x: + arch: s390x + build_id: 779940 + buildroot_id: 4510561 + buildtime: 1539184287 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6430284 + metadata_only: false + name: libevent + payloadhash: 741c220c0d136a19340e735e14ee9005 + release: 5.el8 + size: 245128 + version: 2.1.8 +libfdisk-2.32.1-24.el8.s390x: + arch: s390x + build_id: 1238207 + buildroot_id: 6129072 + buildtime: 1593157326 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8220235 + metadata_only: false + name: libfdisk + payloadhash: 93d115df75f3970c50741ea91a2131d6 + release: 24.el8 + size: 244196 + version: 2.32.1 +libffi-3.1-22.el8.s390x: + arch: s390x + build_id: 1192639 + buildroot_id: 5961303 + buildtime: 1589395312 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8062231 + metadata_only: false + name: libffi + payloadhash: d63a1535cac737e513f0e28a55e50b17 + release: 22.el8 + size: 35176 + version: '3.1' +libgcc-8.3.1-5.1.el8.s390x: + arch: s390x + build_id: 1191977 + buildroot_id: 5958080 + buildtime: 1589337833 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8058935 + metadata_only: false + name: libgcc + payloadhash: 7fa5e8df8f48a1968784160a20e55c74 + release: 5.1.el8 + size: 62704 + version: 8.3.1 +libgcrypt-1.8.5-4.el8.s390x: + arch: s390x + build_id: 1225800 + buildroot_id: 6086849 + buildtime: 1592238179 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8179257 + metadata_only: false + name: libgcrypt + payloadhash: b79a9e4f1e4a7d93ffdf9f0acb371e83 + release: 4.el8 + size: 398460 + version: 1.8.5 +libgpg-error-1.31-1.el8.s390x: + arch: s390x + build_id: 747111 + buildroot_id: 4374877 + buildtime: 1534080222 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6175790 + metadata_only: false + name: libgpg-error + payloadhash: d2929d3570d08dbc4f848c5d9652e795 + release: 1.el8 + size: 243080 + version: '1.31' +libicu-60.3-2.el8_1.s390x: + arch: s390x + build_id: 1124145 + buildroot_id: 5703872 + buildtime: 1583317571 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7828763 + metadata_only: false + name: libicu + payloadhash: 7b87de5cbcff0c3687802a50efdfa4cd + release: 2.el8_1 + size: 9122384 + version: '60.3' +libidn2-2.2.0-1.el8.s390x: + arch: s390x + build_id: 909244 + buildroot_id: 4969000 + buildtime: 1560162252 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7072883 + metadata_only: false + name: libidn2 + payloadhash: c6541dd1fcd76038170314bf47f111f8 + release: 1.el8 + size: 93892 + version: 2.2.0 +libini_config-1.3.1-39.el8.s390x: + arch: s390x + build_id: 746168 + buildroot_id: 4372558 + buildtime: 1534074452 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169586 + metadata_only: false + name: libini_config + payloadhash: 566dddbdb4803bc868c06cbeae3b3b3c + release: 39.el8 + size: 68172 + version: 1.3.1 +libipa_hbac-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435477 + metadata_only: false + name: libipa_hbac + payloadhash: 1b0a0473a1dd800c32b37906641f3f42 + release: 9.el8 + size: 107128 + version: 2.3.0 +libjose-10-2.el8.s390x: + arch: s390x + build_id: 746926 + buildroot_id: 4374180 + buildtime: 1534078343 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172805 + metadata_only: false + name: libjose + payloadhash: 82fdec1fb9b5afbd63b0c6cf9638567d + release: 2.el8 + size: 57844 + version: '10' +libkcapi-1.2.0-2.el8.s390x: + arch: s390x + build_id: 1204919 + buildroot_id: 6008602 + buildtime: 1590513040 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8102933 + metadata_only: false + name: libkcapi + payloadhash: 8295c6d941d4b9f61ef3a51b1067c066 + release: 2.el8 + size: 46948 + version: 1.2.0 +libkcapi-hmaccalc-1.2.0-2.el8.s390x: + arch: s390x + build_id: 1204919 + buildroot_id: 6008602 + buildtime: 1590513040 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8102935 + metadata_only: false + name: libkcapi-hmaccalc + payloadhash: 12867cf907865305499b7bf9c4083d2a + release: 2.el8 + size: 30048 + version: 1.2.0 +libksba-1.3.5-7.el8.s390x: + arch: s390x + build_id: 747165 + buildroot_id: 4375140 + buildtime: 1534081067 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177355 + metadata_only: false + name: libksba + payloadhash: 044b90f8dc9bc1ae7eadacfe7bf26728 + release: 7.el8 + size: 130052 + version: 1.3.5 +libldb-2.1.3-3.el8_3.s390x: + arch: s390x + build_id: 1548253 + buildroot_id: 7202271 + buildtime: 1616593941 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9490855 + metadata_only: false + name: libldb + payloadhash: 414754fd47b2ba9e97511c9562d0a4f6 + release: 3.el8_3 + size: 171256 + version: 2.1.3 +libluksmeta-9-4.el8.s390x: + arch: s390x + build_id: 1024992 + buildroot_id: 5382890 + buildtime: 1575119891 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7578208 + metadata_only: false + name: libluksmeta + payloadhash: 2c698575e8cbefb1158e6396b227469e + release: 4.el8 + size: 25728 + version: '9' +libmaxminddb-1.2.0-10.el8.s390x: + arch: s390x + build_id: 1221242 + buildroot_id: 6069064 + buildtime: 1591692352 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157014 + metadata_only: false + name: libmaxminddb + payloadhash: c7d90b0e8be7e6069e6d9de69c6aec91 + release: 10.el8 + size: 31512 + version: 1.2.0 +libmetalink-0.1.3-7.el8.s390x: + arch: s390x + build_id: 747162 + buildroot_id: 4375134 + buildtime: 1534081034 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177326 + metadata_only: false + name: libmetalink + payloadhash: a6cf479e92ce02dbcb12cef5b9bd30e2 + release: 7.el8 + size: 30952 + version: 0.1.3 +libmicrohttpd-0.9.59-2.el8.s390x: + arch: s390x + build_id: 747169 + buildroot_id: 4375167 + buildtime: 1534081198 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6178461 + metadata_only: false + name: libmicrohttpd + payloadhash: 5fd25fc811f1e562c671002e9649c2bc + release: 2.el8 + size: 78976 + version: 0.9.59 +libmnl-1.0.4-6.el8.s390x: + arch: s390x + build_id: 747178 + buildroot_id: 4375222 + buildtime: 1534081310 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177567 + metadata_only: false + name: libmnl + payloadhash: 29dde4c5dbe2d9483051f2948bc2435f + release: 6.el8 + size: 29580 + version: 1.0.4 +libmodulemd-2.9.4-2.el8.s390x: + arch: s390x + build_id: 1199395 + buildroot_id: 5988263 + buildtime: 1590005693 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8086042 + metadata_only: false + name: libmodulemd + payloadhash: 343c5410e197979cd3a4a563db852843 + release: 2.el8 + size: 165836 + version: 2.9.4 +libmount-2.32.1-24.el8.s390x: + arch: s390x + build_id: 1238207 + buildroot_id: 6129072 + buildtime: 1593157326 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8220230 + metadata_only: false + name: libmount + payloadhash: 069df90b947e8f3e4487e65b67237927 + release: 24.el8 + size: 227928 + version: 2.32.1 +libndp-1.7-3.el8.s390x: + arch: s390x + build_id: 1001028 + buildroot_id: 5290589 + buildtime: 1572602764 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7457585 + metadata_only: false + name: libndp + payloadhash: 9724ab2c88a1fffb96fdf502413b1742 + release: 3.el8 + size: 39528 + version: '1.7' +libnet-1.1.6-15.el8.s390x: + arch: s390x + build_id: 747179 + buildroot_id: 4375224 + buildtime: 1534081331 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177464 + metadata_only: false + name: libnet + payloadhash: f2bf9878f66ffdd36b71be2212cb125f + release: 15.el8 + size: 63736 + version: 1.1.6 +libnetfilter_conntrack-1.0.6-5.el8.s390x: + arch: s390x + build_id: 747184 + buildroot_id: 4375236 + buildtime: 1534081357 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177745 + metadata_only: false + name: libnetfilter_conntrack + payloadhash: e82cb40629c177405cdf534d6f970d2e + release: 5.el8 + size: 62040 + version: 1.0.6 +libnfnetlink-1.0.1-13.el8.s390x: + arch: s390x + build_id: 747183 + buildroot_id: 4375233 + buildtime: 1534081334 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177875 + metadata_only: false + name: libnfnetlink + payloadhash: 0eff67a17b4ade143870fccc7653b15e + release: 13.el8 + size: 31668 + version: 1.0.1 +libnfsidmap-2.3.3-35.el8.s390x: + arch: s390x + build_id: 1222471 + buildroot_id: 6074562 + buildtime: 1591793157 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8163566 + metadata_only: false + name: libnfsidmap + payloadhash: e0f5126492d66312638f4f0ff31c79f6 + release: 35.el8 + size: 117088 + version: 2.3.3 +libnftnl-1.1.5-4.el8.s390x: + arch: s390x + build_id: 1094565 + buildroot_id: 5633401 + buildtime: 1582110331 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7794021 + metadata_only: false + name: libnftnl + payloadhash: 68ed776b6d998b9fd8dcd496e015b9e1 + release: 4.el8 + size: 78200 + version: 1.1.5 +libnghttp2-1.33.0-3.el8_2.1.s390x: + arch: s390x + build_id: 1221598 + buildroot_id: 6070237 + buildtime: 1591702523 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157495 + metadata_only: false + name: libnghttp2 + payloadhash: 86b28474cbed029c964a89872740a0ee + release: 3.el8_2.1 + size: 74360 + version: 1.33.0 +libnl3-3.5.0-1.el8.s390x: + arch: s390x + build_id: 1020741 + buildroot_id: 5366829 + buildtime: 1574797008 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7557344 + metadata_only: false + name: libnl3 + payloadhash: 1b303adc88673e6f8d022435d0d161fa + release: 1.el8 + size: 307336 + version: 3.5.0 +libnl3-cli-3.5.0-1.el8.s390x: + arch: s390x + build_id: 1020741 + buildroot_id: 5366829 + buildtime: 1574797008 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7557341 + metadata_only: false + name: libnl3-cli + payloadhash: f403c6eda5580a119e1fffea31691e23 + release: 1.el8 + size: 187664 + version: 3.5.0 +libnsl2-1.2.0-2.20180605git4a062cf.el8.s390x: + arch: s390x + build_id: 747205 + buildroot_id: 4375331 + buildtime: 1534081570 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6178308 + metadata_only: false + name: libnsl2 + payloadhash: 176de9c0f3594cb7c21b7783913d45c9 + release: 2.20180605git4a062cf.el8 + size: 56556 + version: 1.2.0 +libpath_utils-0.2.1-39.el8.s390x: + arch: s390x + build_id: 746168 + buildroot_id: 4372558 + buildtime: 1534074452 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169588 + metadata_only: false + name: libpath_utils + payloadhash: 691eacbfc0d5d6fccc118633c4313ff2 + release: 39.el8 + size: 33532 + version: 0.2.1 +libpcap-1.9.1-4.el8.s390x: + arch: s390x + build_id: 1201056 + buildroot_id: 5994607 + buildtime: 1590143747 + epoch: 14 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8090432 + metadata_only: false + name: libpcap + payloadhash: def4587a2ecee1c9ed18a9f173edac0e + release: 4.el8 + size: 159384 + version: 1.9.1 +libpkgconf-1.4.2-1.el8.s390x: + arch: s390x + build_id: 748183 + buildroot_id: 4379411 + buildtime: 1534094585 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191322 + metadata_only: false + name: libpkgconf + payloadhash: 7e889a420eb00416b1784f5ece7e7d44 + release: 1.el8 + size: 33356 + version: 1.4.2 +libpsl-0.20.2-6.el8.s390x: + arch: s390x + build_id: 1215600 + buildroot_id: 6048394 + buildtime: 1591290776 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8143593 + metadata_only: false + name: libpsl + payloadhash: 3c166e9937f047996d0f46cf090e6b60 + release: 6.el8 + size: 61692 + version: 0.20.2 +libpwquality-1.4.0-9.el8.s390x: + arch: s390x + build_id: 786340 + buildroot_id: 4533180 + buildtime: 1540219115 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6466559 + metadata_only: false + name: libpwquality + payloadhash: f60eced28002ad05d083ec498e2394a9 + release: 9.el8 + size: 103304 + version: 1.4.0 +libref_array-0.1.5-39.el8.s390x: + arch: s390x + build_id: 746168 + buildroot_id: 4372558 + buildtime: 1534074452 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169593 + metadata_only: false + name: libref_array + payloadhash: f16bd691d1606f52984d87f64b77978f + release: 39.el8 + size: 32000 + version: 0.1.5 +librepo-1.12.0-2.el8.s390x: + arch: s390x + build_id: 1288561 + buildroot_id: 6316246 + buildtime: 1597656058 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8357208 + metadata_only: false + name: librepo + payloadhash: 03b58a8f14bcbff276cc8643f55ae0a1 + release: 2.el8 + size: 84432 + version: 1.12.0 +libreport-filesystem-2.9.5-15.el8.s390x: + arch: s390x + build_id: 1290417 + buildroot_id: 6324126 + buildtime: 1597819227 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8363519 + metadata_only: false + name: libreport-filesystem + payloadhash: 470d5469057401340bf4a084538d3f5e + release: 15.el8 + size: 20420 + version: 2.9.5 +libseccomp-2.4.3-1.el8.s390x: + arch: s390x + build_id: 1173474 + buildroot_id: 5885787 + buildtime: 1587476229 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7996223 + metadata_only: false + name: libseccomp + payloadhash: 4735f91408ecc82a724ff6bd39cc2c0c + release: 1.el8 + size: 64860 + version: 2.4.3 +libsecret-0.18.6-1.el8.s390x: + arch: s390x + build_id: 747264 + buildroot_id: 4375718 + buildtime: 1534082712 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180676 + metadata_only: false + name: libsecret + payloadhash: 5b986ef989e6ddf705216d595857e74d + release: 1.el8 + size: 157308 + version: 0.18.6 +libselinux-2.9-4.el8_3.s390x: + arch: s390x + build_id: 1338046 + buildroot_id: 6487905 + buildtime: 1601579041 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8511086 + metadata_only: false + name: libselinux + payloadhash: 0c1847f99484d056cde5db69cc5fe2ce + release: 4.el8_3 + size: 165620 + version: '2.9' +libselinux-utils-2.9-4.el8_3.s390x: + arch: s390x + build_id: 1338046 + buildroot_id: 6487905 + buildtime: 1601579041 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8511087 + metadata_only: false + name: libselinux-utils + payloadhash: 0c7a2502802f9f695eee631a6692bff1 + release: 4.el8_3 + size: 244624 + version: '2.9' +libsemanage-2.9-3.el8.s390x: + arch: s390x + build_id: 1241882 + buildroot_id: 6140770 + buildtime: 1593444566 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8229647 + metadata_only: false + name: libsemanage + payloadhash: 244b4c9d2f5b0d006a215ae2c55d67ce + release: 3.el8 + size: 162380 + version: '2.9' +libsepol-2.9-1.el8.s390x: + arch: s390x + build_id: 872752 + buildroot_id: 4835093 + buildtime: 1554287354 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6873964 + metadata_only: false + name: libsepol + payloadhash: 65aeb76d7745c70ff6de880705bd0464 + release: 1.el8 + size: 321932 + version: '2.9' +libsigsegv-2.11-5.el8.s390x: + arch: s390x + build_id: 747270 + buildroot_id: 4375749 + buildtime: 1534082812 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6179892 + metadata_only: false + name: libsigsegv + payloadhash: e182243c0efafda080dbe6d11b6055aa + release: 5.el8 + size: 29640 + version: '2.11' +libslirp-4.3.1-1.module+el8.3.1+9803+64eb0fd6.s390x: + arch: s390x + build_id: 1489595 + buildroot_id: 7017178 + buildtime: 1612431715 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9255068 + metadata_only: false + name: libslirp + payloadhash: 4fec5e1ef39f47fa2d8fd21d9585c2c0 + release: 1.module+el8.3.1+9803+64eb0fd6 + size: 64399 + version: 4.3.1 +libsmartcols-2.32.1-24.el8.s390x: + arch: s390x + build_id: 1238207 + buildroot_id: 6129072 + buildtime: 1593157326 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8220232 + metadata_only: false + name: libsmartcols + payloadhash: 45eefd3a3a4fdfa62b1d9d7c3e56fc20 + release: 24.el8 + size: 173892 + version: 2.32.1 +libsmbclient-4.12.3-14.el8_3.s390x: + arch: s390x + build_id: 1401896 + buildroot_id: 6731126 + buildtime: 1607104547 + epoch: 0 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8899911 + metadata_only: false + name: libsmbclient + payloadhash: ec6f1d40b5a5f735c7fc4046aaf98ee2 + release: 14.el8_3 + size: 142428 + version: 4.12.3 +libsolv-0.7.11-1.el8.s390x: + arch: s390x + build_id: 1161982 + buildroot_id: 5838240 + buildtime: 1586353302 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7949876 + metadata_only: false + name: libsolv + payloadhash: 7c6f79370cb9e2f7b0e222c095555d13 + release: 1.el8 + size: 345432 + version: 0.7.11 +libss-1.45.6-1.el8.s390x: + arch: s390x + build_id: 1220066 + buildroot_id: 6064526 + buildtime: 1591610586 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8152077 + metadata_only: false + name: libss + payloadhash: f7aa720046c76eca027ca93af9c2a06f + release: 1.el8 + size: 53352 + version: 1.45.6 +libssh-0.9.4-2.el8.s390x: + arch: s390x + build_id: 1237213 + buildroot_id: 6125637 + buildtime: 1593094190 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215436 + metadata_only: false + name: libssh + payloadhash: d39f438b6a53b98f2ce7578631bedb03 + release: 2.el8 + size: 202908 + version: 0.9.4 +libssh-config-0.9.4-2.el8.noarch: + arch: noarch + build_id: 1237213 + buildroot_id: 6125644 + buildtime: 1593094870 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215425 + metadata_only: false + name: libssh-config + payloadhash: d4d44f510aea15a2e7c51d7b1166a988 + release: 2.el8 + size: 17796 + version: 0.9.4 +libsss_autofs-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435464 + metadata_only: false + name: libsss_autofs + payloadhash: 64a9952e5961e9ef734e56a42c7dcd3d + release: 9.el8 + size: 109312 + version: 2.3.0 +libsss_certmap-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435491 + metadata_only: false + name: libsss_certmap + payloadhash: bbdd0294fb9ff9d6f908b3777cbdfc90 + release: 9.el8 + size: 140664 + version: 2.3.0 +libsss_idmap-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435475 + metadata_only: false + name: libsss_idmap + payloadhash: 229255f0d80ad3e088ec9528fa774c78 + release: 9.el8 + size: 111528 + version: 2.3.0 +libsss_nss_idmap-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435480 + metadata_only: false + name: libsss_nss_idmap + payloadhash: b901a2829f579e2a5a8c0c6a76c614d5 + release: 9.el8 + size: 118424 + version: 2.3.0 +libsss_sudo-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435463 + metadata_only: false + name: libsss_sudo + payloadhash: bf3c78240383e9778a62fb8e1c8038c0 + release: 9.el8 + size: 107740 + version: 2.3.0 +libstdc++-8.3.1-5.1.el8.s390x: + arch: s390x + build_id: 1191977 + buildroot_id: 5958080 + buildtime: 1589337833 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8058926 + metadata_only: false + name: libstdc++ + payloadhash: 29da048e0a5aa4c310e14071a7c1dde6 + release: 5.1.el8 + size: 463468 + version: 8.3.1 +libsysfs-2.1.0-24.el8.s390x: + arch: s390x + build_id: 786476 + buildroot_id: 4533718 + buildtime: 1540241265 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6467547 + metadata_only: false + name: libsysfs + payloadhash: fc5db80f24f9764801eabb33a19e9c0e + release: 24.el8 + size: 52108 + version: 2.1.0 +libtalloc-2.3.1-2.el8.s390x: + arch: s390x + build_id: 1215431 + buildroot_id: 6047748 + buildtime: 1591285922 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8143012 + metadata_only: false + name: libtalloc + payloadhash: c30ab2ff8c1dbf60cd7b4c594bc21b0e + release: 2.el8 + size: 45964 + version: 2.3.1 +libtasn1-4.13-3.el8.s390x: + arch: s390x + build_id: 747294 + buildroot_id: 4375871 + buildtime: 1534083326 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180527 + metadata_only: false + name: libtasn1 + payloadhash: 5eea350ae52bf84742ccd778eafd82c2 + release: 3.el8 + size: 75912 + version: '4.13' +libtdb-1.4.3-1.el8.s390x: + arch: s390x + build_id: 1215433 + buildroot_id: 6047791 + buildtime: 1591286052 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8143096 + metadata_only: false + name: libtdb + payloadhash: 4a333dbee2307cedf5371096582792cc + release: 1.el8 + size: 57500 + version: 1.4.3 +libteam-1.31-2.el8.s390x: + arch: s390x + build_id: 1307839 + buildroot_id: 6385573 + buildtime: 1599145170 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8409052 + metadata_only: false + name: libteam + payloadhash: f632bb7cbeacec94923ea8ff9076f48f + release: 2.el8 + size: 62880 + version: '1.31' +libtevent-0.10.2-2.el8.s390x: + arch: s390x + build_id: 1216878 + buildroot_id: 6052618 + buildtime: 1591353363 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8146312 + metadata_only: false + name: libtevent + payloadhash: 9b25196906b84726741525ddae4902b2 + release: 2.el8 + size: 47596 + version: 0.10.2 +libtirpc-1.1.4-4.el8.s390x: + arch: s390x + build_id: 936936 + buildroot_id: 5062313 + buildtime: 1563984096 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7200934 + metadata_only: false + name: libtirpc + payloadhash: 667c744e607f9998332d9ef30fad3611 + release: 4.el8 + size: 109032 + version: 1.1.4 +libunistring-0.9.9-3.el8.s390x: + arch: s390x + build_id: 753876 + buildroot_id: 4402013 + buildtime: 1534538848 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6239950 + metadata_only: false + name: libunistring + payloadhash: 84a77119e1d8c017049b4f70b1976bd6 + release: 3.el8 + size: 427060 + version: 0.9.9 +libusbx-1.0.23-4.el8.s390x: + arch: s390x + build_id: 1286148 + buildroot_id: 6307445 + buildtime: 1597242764 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8351520 + metadata_only: false + name: libusbx + payloadhash: 85b925baa2ea12e2f5061f4a71f9c4a6 + release: 4.el8 + size: 71532 + version: 1.0.23 +libuser-0.62-23.el8.s390x: + arch: s390x + build_id: 919146 + buildroot_id: 5005134 + buildtime: 1561576420 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7125047 + metadata_only: false + name: libuser + payloadhash: df33681fd4ff1db56671c4c459396524 + release: 23.el8 + size: 415300 + version: '0.62' +libutempter-1.1.6-14.el8.s390x: + arch: s390x + build_id: 747310 + buildroot_id: 4375965 + buildtime: 1534083574 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180636 + metadata_only: false + name: libutempter + payloadhash: 60aeddb64e2e5f777680b085e6de31ed + release: 14.el8 + size: 30992 + version: 1.1.6 +libuuid-2.32.1-24.el8.s390x: + arch: s390x + build_id: 1238207 + buildroot_id: 6129072 + buildtime: 1593157326 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8220249 + metadata_only: false + name: libuuid + payloadhash: 4ad52abe2b703feabaa04d2878d85258 + release: 24.el8 + size: 95688 + version: 2.32.1 +libvarlink-18-3.el8.s390x: + arch: s390x + build_id: 913299 + buildroot_id: 4986191 + buildtime: 1560800358 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7102383 + metadata_only: false + name: libvarlink + payloadhash: 0dd21e258715914af12234b0733ade54 + release: 3.el8 + size: 41000 + version: '18' +libverto-0.3.0-5.el8.s390x: + arch: s390x + build_id: 747306 + buildroot_id: 4375948 + buildtime: 1534083513 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180869 + metadata_only: false + name: libverto + payloadhash: 77fcf5ca7c3de76c1af2e27e693d7ff7 + release: 5.el8 + size: 23052 + version: 0.3.0 +libverto-libevent-0.3.0-5.el8.s390x: + arch: s390x + build_id: 747306 + buildroot_id: 4375948 + buildtime: 1534083513 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180875 + metadata_only: false + name: libverto-libevent + payloadhash: 7412ec2ab23ece933cca0622b01b084e + release: 5.el8 + size: 14800 + version: 0.3.0 +libwbclient-4.12.3-14.el8_3.s390x: + arch: s390x + build_id: 1401896 + buildroot_id: 6731126 + buildtime: 1607104547 + epoch: 0 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8899913 + metadata_only: false + name: libwbclient + payloadhash: 4443912798fdfae72cbd8760d7582fe0 + release: 14.el8_3 + size: 117328 + version: 4.12.3 +libxcrypt-4.1.1-4.el8.s390x: + arch: s390x + build_id: 745929 + buildroot_id: 4369257 + buildtime: 1534060163 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155574 + metadata_only: false + name: libxcrypt + payloadhash: 4e9de9a61191abffe602e48684da361e + release: 4.el8 + size: 72408 + version: 4.1.1 +libxkbcommon-0.9.1-1.el8.s390x: + arch: s390x + build_id: 1001832 + buildroot_id: 5294172 + buildtime: 1572827719 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7461294 + metadata_only: false + name: libxkbcommon + payloadhash: 9cfc7d6e2bf4173cb8d16b9dcd8703d7 + release: 1.el8 + size: 112260 + version: 0.9.1 +libxml2-2.9.7-8.el8.s390x: + arch: s390x + build_id: 1162098 + buildroot_id: 5838803 + buildtime: 1586370829 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7950943 + metadata_only: false + name: libxml2 + payloadhash: 1bc220ae557a6b10e07c7fce100e257f + release: 8.el8 + size: 661056 + version: 2.9.7 +libyaml-0.1.7-5.el8.s390x: + arch: s390x + build_id: 747381 + buildroot_id: 4376338 + buildtime: 1534085074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6182497 + metadata_only: false + name: libyaml + payloadhash: 2eee61dd3f9ba4709670fa5d22afb917 + release: 5.el8 + size: 54940 + version: 0.1.7 +libzstd-1.4.4-1.el8.s390x: + arch: s390x + build_id: 1216822 + buildroot_id: 6052385 + buildtime: 1591348934 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8146176 + metadata_only: false + name: libzstd + payloadhash: 1df9a004666be3ea4a9370d3001f249c + release: 1.el8 + size: 247452 + version: 1.4.4 +linux-firmware-20200619-101.git3890db36.el8_3.noarch: + arch: noarch + build_id: 1404329 + buildroot_id: 6739156 + buildtime: 1607350150 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8910405 + metadata_only: false + name: linux-firmware + payloadhash: e04c40ba7c835a856b3a7fcedfd4e0a5 + release: 101.git3890db36.el8_3 + size: 106384116 + version: '20200619' +logrotate-3.14.0-4.el8.s390x: + arch: s390x + build_id: 1186546 + buildroot_id: 5937939 + buildtime: 1588773969 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8038876 + metadata_only: false + name: logrotate + payloadhash: c68351692eb59dcad8a853592a097ef2 + release: 4.el8 + size: 83940 + version: 3.14.0 +lua-libs-5.3.4-11.el8.s390x: + arch: s390x + build_id: 906174 + buildroot_id: 4955479 + buildtime: 1559576713 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7052260 + metadata_only: false + name: lua-libs + payloadhash: ef21a425583024002b2413577dfa0b1f + release: 11.el8 + size: 115236 + version: 5.3.4 +luksmeta-9-4.el8.s390x: + arch: s390x + build_id: 1024992 + buildroot_id: 5382890 + buildtime: 1575119891 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7578205 + metadata_only: false + name: luksmeta + payloadhash: bd3660b8bb021fa0327925ec003a2ff5 + release: 4.el8 + size: 21340 + version: '9' +lvm2-2.03.09-5.el8_3.2.s390x: + arch: s390x + build_id: 1410255 + buildroot_id: 6763000 + buildtime: 1607515429 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8976637 + metadata_only: false + name: lvm2 + payloadhash: 27aca1bfac8df4c556f389d4637cc437 + release: 5.el8_3.2 + size: 1533352 + version: 2.03.09 +lvm2-libs-2.03.09-5.el8_3.2.s390x: + arch: s390x + build_id: 1410255 + buildroot_id: 6763000 + buildtime: 1607515429 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8976640 + metadata_only: false + name: lvm2-libs + payloadhash: f520f5af0dca586cc37ccd900ddd353f + release: 5.el8_3.2 + size: 1084924 + version: 2.03.09 +lz4-libs-1.8.3-2.el8.s390x: + arch: s390x + build_id: 1204768 + buildroot_id: 6007315 + buildtime: 1590491514 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8101628 + metadata_only: false + name: lz4-libs + payloadhash: 9a79ec6fd3306218f85ab7299a538416 + release: 2.el8 + size: 65488 + version: 1.8.3 +lzo-2.08-14.el8.s390x: + arch: s390x + build_id: 779027 + buildroot_id: 4507715 + buildtime: 1539104391 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6426462 + metadata_only: false + name: lzo + payloadhash: c038504a778e8b1266bf285f74590687 + release: 14.el8 + size: 66472 + version: '2.08' +make-4.2.1-10.el8.s390x: + arch: s390x + build_id: 1043053 + buildroot_id: 5453061 + buildtime: 1576873641 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7647105 + metadata_only: false + name: make + payloadhash: 93939d3ad281660e9e71e63bf0e4557f + release: 10.el8 + size: 506688 + version: 4.2.1 +mdadm-4.1-14.el8.s390x: + arch: s390x + build_id: 1217001 + buildroot_id: 6053215 + buildtime: 1591367190 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8146742 + metadata_only: false + name: mdadm + payloadhash: 608ba1782a85585c354c33081c675744 + release: 14.el8 + size: 437848 + version: '4.1' +memstrack-0.1.11-1.el8.s390x: + arch: s390x + build_id: 1278608 + buildroot_id: 6284753 + buildtime: 1596687921 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8334932 + metadata_only: false + name: memstrack + payloadhash: 50d43642f0dc3e6396e0f38932f2cd81 + release: 1.el8 + size: 46836 + version: 0.1.11 +mozjs60-60.9.0-4.el8.s390x: + arch: s390x + build_id: 1092866 + buildroot_id: 5626881 + buildtime: 1581954438 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7786732 + metadata_only: false + name: mozjs60 + payloadhash: 88e7eff75a341f5d5d6c595c015d2a49 + release: 4.el8 + size: 5759056 + version: 60.9.0 +mpfr-3.1.6-1.el8.s390x: + arch: s390x + build_id: 747521 + buildroot_id: 4376964 + buildtime: 1534087312 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6184919 + metadata_only: false + name: mpfr + payloadhash: fc66607bc6990ce55c2f50f0f6f95b72 + release: 1.el8 + size: 223812 + version: 3.1.6 +nano-2.9.8-1.el8.s390x: + arch: s390x + build_id: 747570 + buildroot_id: 4377158 + buildtime: 1534088074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185516 + metadata_only: false + name: nano + payloadhash: 539e0ec7a04b2c73e03aa4317f9f59cd + release: 1.el8 + size: 594268 + version: 2.9.8 +ncurses-6.1-7.20180224.el8.s390x: + arch: s390x + build_id: 829223 + buildroot_id: 4678815 + buildtime: 1547643825 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696196 + metadata_only: false + name: ncurses + payloadhash: 5ffa8aaf836cde25c8d7138aad4a65c4 + release: 7.20180224.el8 + size: 392412 + version: '6.1' +ncurses-base-6.1-7.20180224.el8.noarch: + arch: noarch + build_id: 829223 + buildroot_id: 4678814 + buildtime: 1547644074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696179 + metadata_only: false + name: ncurses-base + payloadhash: 6f474c29de2d5954bf13ae3a68215dc9 + release: 7.20180224.el8 + size: 81712 + version: '6.1' +ncurses-libs-6.1-7.20180224.el8.s390x: + arch: s390x + build_id: 829223 + buildroot_id: 4678815 + buildtime: 1547643825 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696204 + metadata_only: false + name: ncurses-libs + payloadhash: d529583bc8b0c60c1478a7ddd4cce8c5 + release: 7.20180224.el8 + size: 328180 + version: '6.1' +net-tools-2.0-0.52.20160912git.el8.s390x: + arch: s390x + build_id: 1138830 + buildroot_id: 5754137 + buildtime: 1584519843 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7862540 + metadata_only: false + name: net-tools + payloadhash: 80b05724dcee1593831b1e554115e3f2 + release: 0.52.20160912git.el8 + size: 320232 + version: '2.0' +nettle-3.4.1-4.el8_3.s390x: + arch: s390x + build_id: 1565615 + buildroot_id: 7249240 + buildtime: 1617782187 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9540214 + metadata_only: false + name: nettle + payloadhash: 0953023e545aa05db5dd7fd9ae56b7a3 + release: 4.el8_3 + size: 315400 + version: 3.4.1 +newt-0.52.20-11.el8.s390x: + arch: s390x + build_id: 979013 + buildroot_id: 5214167 + buildtime: 1570004933 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7379432 + metadata_only: false + name: newt + payloadhash: b491b2f4bd6483bf2fe5d7cca8331126 + release: 11.el8 + size: 122500 + version: 0.52.20 +nfs-utils-2.3.3-35.el8.s390x: + arch: s390x + build_id: 1222471 + buildroot_id: 6074562 + buildtime: 1591793157 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8163564 + metadata_only: false + name: nfs-utils + payloadhash: 4d179cb281b3591228520830dc4493fb + release: 35.el8 + size: 488156 + version: 2.3.3 +nftables-0.9.3-16.el8.s390x: + arch: s390x + build_id: 1281520 + buildroot_id: 6293627 + buildtime: 1596840960 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8340979 + metadata_only: false + name: nftables + payloadhash: 8034bcd1b3c2264be6f3e6e9d4e06de4 + release: 16.el8 + size: 301920 + version: 0.9.3 +nmap-ncat-7.70-5.el8.s390x: + arch: s390x + build_id: 869233 + buildroot_id: 4822962 + buildtime: 1553780131 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6855939 + metadata_only: false + name: nmap-ncat + payloadhash: 05602d65eb2f5200836f0797bf4a4c35 + release: 5.el8 + size: 229968 + version: '7.70' +npth-1.5-4.el8.s390x: + arch: s390x + build_id: 747600 + buildroot_id: 4377293 + buildtime: 1534088465 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185265 + metadata_only: false + name: npth + payloadhash: 885cc27cd427a0988f8db098ae80b31b + release: 4.el8 + size: 25292 + version: '1.5' +nss-altfiles-2.18.1-12.el8.s390x: + arch: s390x + build_id: 873521 + buildroot_id: 4838512 + buildtime: 1554390412 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6879005 + metadata_only: false + name: nss-altfiles + payloadhash: 72855084afdc1593a2db3d4231b1ca34 + release: 12.el8 + size: 13916 + version: 2.18.1 +oniguruma-6.8.2-2.el8.s390x: + arch: s390x + build_id: 1238552 + buildroot_id: 6130479 + buildtime: 1593184996 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8222974 + metadata_only: false + name: oniguruma + payloadhash: 2af536df54aa4bb5b282a012d43a57db + release: 2.el8 + size: 187160 + version: 6.8.2 +openldap-2.4.46-15.el8.s390x: + arch: s390x + build_id: 1228733 + buildroot_id: 6097564 + buildtime: 1592468534 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8190475 + metadata_only: false + name: openldap + payloadhash: f051ebf1c63f4a2579ee83e7c2d2f484 + release: 15.el8 + size: 342488 + version: 2.4.46 +openshift-clients-4.7.0-202107070256.p0.git.8b4b094.assembly.stream.el8.s390x: + arch: s390x + build_id: 1655809 + buildroot_id: 7564950 + buildtime: 1625626925 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9942190 + metadata_only: false + name: openshift-clients + payloadhash: 1a81682169fe3a5499ef759e3f8dfa77 + release: 202107070256.p0.git.8b4b094.assembly.stream.el8 + size: 15793704 + version: 4.7.0 +openshift-hyperkube-4.7.0-202107132131.p0.git.558d959.assembly.stream.el8.s390x: + arch: s390x + build_id: 1662584 + buildroot_id: 7587502 + buildtime: 1626212709 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9970569 + metadata_only: false + name: openshift-hyperkube + payloadhash: a5ad8670bc30a171da95e67aabaa04a7 + release: 202107132131.p0.git.558d959.assembly.stream.el8 + size: 67568624 + version: 4.7.0 +openssh-8.0p1-5.el8.s390x: + arch: s390x + build_id: 1149016 + buildroot_id: 5792364 + buildtime: 1585306946 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7906215 + metadata_only: false + name: openssh + payloadhash: 4715499aac71a43515b706afd94212fe + release: 5.el8 + size: 518800 + version: 8.0p1 +openssh-clients-8.0p1-5.el8.s390x: + arch: s390x + build_id: 1149016 + buildroot_id: 5792364 + buildtime: 1585306946 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7906214 + metadata_only: false + name: openssh-clients + payloadhash: 1031d0d9bc60b3c8b6601a6259cff04c + release: 5.el8 + size: 703412 + version: 8.0p1 +openssh-server-8.0p1-5.el8.s390x: + arch: s390x + build_id: 1149016 + buildroot_id: 5792364 + buildtime: 1585306946 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7906206 + metadata_only: false + name: openssh-server + payloadhash: e32456fd26fb1c606776fce9ca3788f6 + release: 5.el8 + size: 469188 + version: 8.0p1 +openssl-1.1.1g-15.el8_3.s390x: + arch: s390x + build_id: 1550360 + buildroot_id: 7208304 + buildtime: 1616691117 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9500768 + metadata_only: false + name: openssl + payloadhash: 4ab0202e96a0858f0b5284aa3df136ad + release: 15.el8_3 + size: 709536 + version: 1.1.1g +openssl-libs-1.1.1g-15.el8_3.s390x: + arch: s390x + build_id: 1550360 + buildroot_id: 7208304 + buildtime: 1616691117 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9500769 + metadata_only: false + name: openssl-libs + payloadhash: af3547a9db1680db5688e49b9dbc501e + release: 15.el8_3 + size: 1204092 + version: 1.1.1g +openssl-pkcs11-0.4.10-2.el8.s390x: + arch: s390x + build_id: 1023615 + buildroot_id: 5377394 + buildtime: 1574965193 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7572509 + metadata_only: false + name: openssl-pkcs11 + payloadhash: 3e93d8cba372240c4c00f2b302e994d2 + release: 2.el8 + size: 64596 + version: 0.4.10 +openvswitch-selinux-extra-policy-1.0-28.el8fdp.noarch: + arch: noarch + build_id: 1477522 + buildroot_id: 6975104 + buildtime: 1611780515 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9186167 + metadata_only: false + name: openvswitch-selinux-extra-policy + payloadhash: f51de0a81a8f3c31698191529205e223 + release: 28.el8fdp + size: 15644 + version: '1.0' +openvswitch2.13-2.13.0-114.el8fdp.s390x: + arch: s390x + build_id: 1610416 + buildroot_id: 7409988 + buildtime: 1621610772 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9746837 + metadata_only: false + name: openvswitch2.13 + payloadhash: e262745f69cd1b4b30b817c9d2e5ab88 + release: 114.el8fdp + size: 5628804 + version: 2.13.0 +ostree-2020.7-1.el8_3.s390x: + arch: s390x + build_id: 1410436 + buildroot_id: 6764873 + buildtime: 1607533593 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8978364 + metadata_only: false + name: ostree + payloadhash: eaac7debd0f823dfed30a84e5d91d21b + release: 1.el8_3 + size: 230772 + version: '2020.7' +ostree-libs-2020.7-1.el8_3.s390x: + arch: s390x + build_id: 1410436 + buildroot_id: 6764873 + buildtime: 1607533593 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8978365 + metadata_only: false + name: ostree-libs + payloadhash: 840d3b372314d31be8855b3e301eec26 + release: 1.el8_3 + size: 371924 + version: '2020.7' +p11-kit-0.23.14-5.el8_0.s390x: + arch: s390x + build_id: 870190 + buildroot_id: 4825666 + buildtime: 1553856944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6858842 + metadata_only: false + name: p11-kit + payloadhash: 1c606158b396cb51daa00a22172263d0 + release: 5.el8_0 + size: 274520 + version: 0.23.14 +p11-kit-trust-0.23.14-5.el8_0.s390x: + arch: s390x + build_id: 870190 + buildroot_id: 4825666 + buildtime: 1553856944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6858844 + metadata_only: false + name: p11-kit-trust + payloadhash: 3141d144dd44b339c2a82c8f166fad7e + release: 5.el8_0 + size: 134352 + version: 0.23.14 +pam-1.3.1-11.el8.s390x: + arch: s390x + build_id: 1194133 + buildroot_id: 5967586 + buildtime: 1589532879 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8067074 + metadata_only: false + name: pam + payloadhash: cf33ff205296d54fd556e1a7ed03d1ac + release: 11.el8 + size: 734600 + version: 1.3.1 +passwd-0.80-3.el8.s390x: + arch: s390x + build_id: 1037354 + buildroot_id: 5429492 + buildtime: 1576262422 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7628694 + metadata_only: false + name: passwd + payloadhash: b01d83cc66cc2ce7cec6917ee4ea4002 + release: 3.el8 + size: 115476 + version: '0.80' +pciutils-3.6.4-2.el8.s390x: + arch: s390x + build_id: 1186467 + buildroot_id: 5937573 + buildtime: 1588768139 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8037562 + metadata_only: false + name: pciutils + payloadhash: 238ba8954d5642840121a997b989dfa9 + release: 2.el8 + size: 100176 + version: 3.6.4 +pciutils-libs-3.6.4-2.el8.s390x: + arch: s390x + build_id: 1186467 + buildroot_id: 5937573 + buildtime: 1588768139 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8037563 + metadata_only: false + name: pciutils-libs + payloadhash: 5a3502bc27247a5efd7aa494f4e13070 + release: 2.el8 + size: 51328 + version: 3.6.4 +pcre-8.42-4.el8.s390x: + arch: s390x + build_id: 761272 + buildroot_id: 4433029 + buildtime: 1535969821 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6279942 + metadata_only: false + name: pcre + payloadhash: 7d81705d6e664b3312010fd651bbae77 + release: 4.el8 + size: 130772 + version: '8.42' +pcre2-10.32-2.el8.s390x: + arch: s390x + build_id: 1207296 + buildroot_id: 6017987 + buildtime: 1590685228 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8114626 + metadata_only: false + name: pcre2 + payloadhash: 796db70cca475d86f3847b815df6c5b4 + release: 2.el8 + size: 163976 + version: '10.32' +perl-Carp-1.50-439.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199877 + buildroot_id: 5990149 + buildtime: 1590071568 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087267 + metadata_only: false + name: perl-Carp + payloadhash: 7aa26d69c68c069b1bbb5d833c7b81fb + release: 439.module+el8.3.0+6718+7f269185 + size: 33015 + version: '1.50' +perl-Data-Dumper-2.174-440.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199862 + buildroot_id: 5990109 + buildtime: 1590071474 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8088839 + metadata_only: false + name: perl-Data-Dumper + payloadhash: ad5baca69d59794e9bc0b3d81ccd3bf4 + release: 440.module+el8.3.0+6718+7f269185 + size: 59563 + version: '2.174' +perl-Digest-1.17-396.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199865 + buildroot_id: 5990118 + buildtime: 1590071497 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087260 + metadata_only: false + name: perl-Digest + payloadhash: f426fc4be93093a3ed957828d27b16b7 + release: 396.module+el8.3.0+6718+7f269185 + size: 26743 + version: '1.17' +perl-Digest-MD5-2.55-397.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199861 + buildroot_id: 5990108 + buildtime: 1590071418 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8088775 + metadata_only: false + name: perl-Digest-MD5 + payloadhash: eec214779177cbe7f107c55d5492ff79 + release: 397.module+el8.3.0+6718+7f269185 + size: 36875 + version: '2.55' +perl-Encode-3.01-439.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199858 + buildroot_id: 5990089 + buildtime: 1590071422 + epoch: 4 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8088888 + metadata_only: false + name: perl-Encode + payloadhash: 0a38da259e98c9b569acc5f7f2122578 + release: 439.module+el8.3.0+6718+7f269185 + size: 1538359 + version: '3.01' +perl-Errno-1.30-451.module+el8.3.0+6961+31ca2e7a.s390x: + arch: s390x + build_id: 1221066 + buildroot_id: 6068543 + buildtime: 1591683557 + epoch: 0 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8156471 + metadata_only: false + name: perl-Errno + payloadhash: 5d76e8bc0887c807f90b2ab0ebd142b8 + release: 451.module+el8.3.0+6961+31ca2e7a + size: 86011 + version: '1.30' +perl-Exporter-5.73-440.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199853 + buildroot_id: 5990091 + buildtime: 1590071387 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087249 + metadata_only: false + name: perl-Exporter + payloadhash: 22c743eeb2424c293b58166fb73a38b6 + release: 440.module+el8.3.0+6718+7f269185 + size: 34855 + version: '5.73' +perl-File-Path-2.16-439.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199849 + buildroot_id: 5990079 + buildtime: 1590071316 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087236 + metadata_only: false + name: perl-File-Path + payloadhash: b38fa3be02b2b6ce3783c8238ab787ae + release: 439.module+el8.3.0+6718+7f269185 + size: 38811 + version: '2.16' +perl-File-Temp-0.230.900-439.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199848 + buildroot_id: 5990074 + buildtime: 1590071318 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087235 + metadata_only: false + name: perl-File-Temp + payloadhash: fa7576ed2d39ecd6f0f26620cf48e06a + release: 439.module+el8.3.0+6718+7f269185 + size: 64167 + version: 0.230.900 +perl-Getopt-Long-2.51-1.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199836 + buildroot_id: 5990043 + buildtime: 1590071172 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087210 + metadata_only: false + name: perl-Getopt-Long + payloadhash: 02e1cca335c93bf3392e7a29325a2798 + release: 1.module+el8.3.0+6718+7f269185 + size: 64415 + version: '2.51' +perl-HTTP-Tiny-0.076-439.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199840 + buildroot_id: 5990055 + buildtime: 1590071244 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087224 + metadata_only: false + name: perl-HTTP-Tiny + payloadhash: 961bd630645ab9347a6cbf38fe27b30c + release: 439.module+el8.3.0+6718+7f269185 + size: 59571 + version: '0.076' +perl-IO-1.40-451.module+el8.3.0+6961+31ca2e7a.s390x: + arch: s390x + build_id: 1221066 + buildroot_id: 6068543 + buildtime: 1591683557 + epoch: 0 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8156465 + metadata_only: false + name: perl-IO + payloadhash: 55ec87fc140e94e7e02774d081f0985d + release: 451.module+el8.3.0+6961+31ca2e7a + size: 154023 + version: '1.40' +perl-IO-Socket-IP-0.39-6.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199838 + buildroot_id: 5990053 + buildtime: 1590071243 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087218 + metadata_only: false + name: perl-IO-Socket-IP + payloadhash: cc67ba6030e8fc3b881d203ca01d214e + release: 6.module+el8.3.0+6718+7f269185 + size: 47075 + version: '0.39' +perl-IO-Socket-SSL-2.066-4.module+el8.3.0+6452+449fe210.noarch: + arch: noarch + build_id: 1181673 + buildroot_id: 5918957 + buildtime: 1588251952 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8023097 + metadata_only: false + name: perl-IO-Socket-SSL + payloadhash: cfd9044e2fe0002dd91d53ae9d9f9428 + release: 4.module+el8.3.0+6452+449fe210 + size: 303698 + version: '2.066' +perl-MIME-Base64-3.15-1001.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199829 + buildroot_id: 5990006 + buildtime: 1590071014 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087716 + metadata_only: false + name: perl-MIME-Base64 + payloadhash: c463941debc54bbee67f60e8b1033eee + release: 1001.module+el8.3.0+6718+7f269185 + size: 30627 + version: '3.15' +perl-Mozilla-CA-20160104-7.module+el8.3.0+6498+fb59cb73.noarch: + arch: noarch + build_id: 1186655 + buildroot_id: 5938190 + buildtime: 1588776113 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8039231 + metadata_only: false + name: perl-Mozilla-CA + payloadhash: 090d8617391c980534de7b4ad1e88139 + release: 7.module+el8.3.0+6498+fb59cb73 + size: 14663 + version: '20160104' +perl-Net-SSLeay-1.88-1.module+el8.3.0+6452+449fe210.s390x: + arch: s390x + build_id: 1181630 + buildroot_id: 5918785 + buildtime: 1588249696 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8022999 + metadata_only: false + name: perl-Net-SSLeay + payloadhash: c3d526a396593285a953dd3b9eb84865 + release: 1.module+el8.3.0+6452+449fe210 + size: 366870 + version: '1.88' +perl-PathTools-3.78-439.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199805 + buildroot_id: 5989929 + buildtime: 1590070786 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087911 + metadata_only: false + name: perl-PathTools + payloadhash: 9578133ab5645b1d24e2e39f94f78839 + release: 439.module+el8.3.0+6718+7f269185 + size: 91683 + version: '3.78' +perl-Pod-Escapes-1.07-396.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199801 + buildroot_id: 5994133 + buildtime: 1590133814 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8089930 + metadata_only: false + name: perl-Pod-Escapes + payloadhash: f8746231cf11ab889c5e6997f9c9568e + release: 396.module+el8.3.0+6718+7f269185 + size: 20167 + version: '1.07' +perl-Pod-Perldoc-3.28.01-442.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199800 + buildroot_id: 5989937 + buildtime: 1590070767 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087148 + metadata_only: false + name: perl-Pod-Perldoc + payloadhash: 19766066ad85b947660ac59dd13c7654 + release: 442.module+el8.3.0+6718+7f269185 + size: 90811 + version: 3.28.01 +perl-Pod-Simple-3.40-1.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199818 + buildroot_id: 5989975 + buildtime: 1590070932 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087186 + metadata_only: false + name: perl-Pod-Simple + payloadhash: 3878206e78c0e669ffbd94820021f5d2 + release: 1.module+el8.3.0+6718+7f269185 + size: 230579 + version: '3.40' +perl-Pod-Usage-1.69-396.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199796 + buildroot_id: 5989924 + buildtime: 1590070843 + epoch: 4 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087162 + metadata_only: false + name: perl-Pod-Usage + payloadhash: 37718d16c0e166656b70487dc3001820 + release: 396.module+el8.3.0+6718+7f269185 + size: 34407 + version: '1.69' +perl-Scalar-List-Utils-1.53-439.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199789 + buildroot_id: 5989921 + buildtime: 1590070866 + epoch: 3 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087879 + metadata_only: false + name: perl-Scalar-List-Utils + payloadhash: 6a7d78c6d4fce3f5d33231693a2cf440 + release: 439.module+el8.3.0+6718+7f269185 + size: 68415 + version: '1.53' +perl-Socket-2.029-4.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199790 + buildroot_id: 5989918 + buildtime: 1590070723 + epoch: 4 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8088023 + metadata_only: false + name: perl-Socket + payloadhash: f1c9bb2e9b75fd2577783a617dbdc7a0 + release: 4.module+el8.3.0+6718+7f269185 + size: 58623 + version: '2.029' +perl-Storable-3.15-442.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199793 + buildroot_id: 5989919 + buildtime: 1590070724 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087994 + metadata_only: false + name: perl-Storable + payloadhash: f20fdf203ea5398a15e181a25cd261f5 + release: 442.module+el8.3.0+6718+7f269185 + size: 95259 + version: '3.15' +perl-Term-ANSIColor-4.06-397.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199798 + buildroot_id: 5989925 + buildtime: 1590070878 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087179 + metadata_only: false + name: perl-Term-ANSIColor + payloadhash: 3b8b36d7b5144584b01a2da9c59b7dfa + release: 397.module+el8.3.0+6718+7f269185 + size: 46259 + version: '4.06' +perl-Term-Cap-1.17-396.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199784 + buildroot_id: 5989903 + buildtime: 1590070701 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087132 + metadata_only: false + name: perl-Term-Cap + payloadhash: 8ac23fcb4a0ed1b3bae8aa4aaa24b57d + release: 396.module+el8.3.0+6718+7f269185 + size: 22543 + version: '1.17' +perl-Text-ParseWords-3.30-396.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199814 + buildroot_id: 5989968 + buildtime: 1590070851 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087176 + metadata_only: false + name: perl-Text-ParseWords + payloadhash: 1a95e7970df770940b7cf3bbcb05296b + release: 396.module+el8.3.0+6718+7f269185 + size: 17499 + version: '3.30' +perl-Text-Tabs+Wrap-2013.0523-396.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199807 + buildroot_id: 5989954 + buildtime: 1590070873 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087184 + metadata_only: false + name: perl-Text-Tabs+Wrap + payloadhash: 958b00b9fdea3377bbc0e340da264f77 + release: 396.module+el8.3.0+6718+7f269185 + size: 23819 + version: '2013.0523' +perl-Time-Local-1.280-2.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199810 + buildroot_id: 5989956 + buildtime: 1590070798 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087157 + metadata_only: false + name: perl-Time-Local + payloadhash: aa59e25cac96a42be10798ff7b994431 + release: 2.module+el8.3.0+6718+7f269185 + size: 33495 + version: '1.280' +perl-URI-1.76-5.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199774 + buildroot_id: 5989887 + buildtime: 1590070779 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087158 + metadata_only: false + name: perl-URI + payloadhash: 4321e71f9766d68375c3547e208423f4 + release: 5.module+el8.3.0+6718+7f269185 + size: 118979 + version: '1.76' +perl-Unicode-Normalize-1.26-439.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199781 + buildroot_id: 5989891 + buildtime: 1590070777 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087614 + metadata_only: false + name: perl-Unicode-Normalize + payloadhash: 2785d20f51e26d6c71f72c92ea589868 + release: 439.module+el8.3.0+6718+7f269185 + size: 88415 + version: '1.26' +perl-constant-1.33-1001.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199771 + buildroot_id: 5989882 + buildtime: 1590070676 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087129 + metadata_only: false + name: perl-constant + payloadhash: 4e7ed4793a7461726c252e3be2125edc + release: 1001.module+el8.3.0+6718+7f269185 + size: 25447 + version: '1.33' +perl-interpreter-5.30.1-451.module+el8.3.0+6961+31ca2e7a.s390x: + arch: s390x + build_id: 1221066 + buildroot_id: 6068543 + buildtime: 1591683557 + epoch: 4 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8156469 + metadata_only: false + name: perl-interpreter + payloadhash: 999cf755a512ec76d7c1bf17f1b4c59b + release: 451.module+el8.3.0+6961+31ca2e7a + size: 6797963 + version: 5.30.1 +perl-libnet-3.11-4.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199772 + buildroot_id: 5989884 + buildtime: 1590070668 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087130 + metadata_only: false + name: perl-libnet + payloadhash: cf7e06b3a1cedb1e53fcf34e697c5f0c + release: 4.module+el8.3.0+6718+7f269185 + size: 122919 + version: '3.11' +perl-libs-5.30.1-451.module+el8.3.0+6961+31ca2e7a.s390x: + arch: s390x + build_id: 1221066 + buildroot_id: 6068543 + buildtime: 1591683557 + epoch: 4 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8156460 + metadata_only: false + name: perl-libs + payloadhash: 3af38332f16bbeec772683a79f132e1f + release: 451.module+el8.3.0+6961+31ca2e7a + size: 1802183 + version: 5.30.1 +perl-macros-5.30.1-451.module+el8.3.0+6961+31ca2e7a.s390x: + arch: s390x + build_id: 1221066 + buildroot_id: 6068543 + buildtime: 1591683557 + epoch: 4 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8156462 + metadata_only: false + name: perl-macros + payloadhash: 8c18474658fbd40fc500939892f5b4f4 + release: 451.module+el8.3.0+6961+31ca2e7a + size: 81983 + version: 5.30.1 +perl-parent-0.237-2.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199768 + buildroot_id: 5989864 + buildtime: 1590070628 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087118 + metadata_only: false + name: perl-parent + payloadhash: 57449ae32db2eaf3bd6092cc0a803c8e + release: 2.module+el8.3.0+6718+7f269185 + size: 19639 + version: '0.237' +perl-podlators-4.12-2.module+el8.3.0+6718+7f269185.noarch: + arch: noarch + build_id: 1199812 + buildroot_id: 5989960 + buildtime: 1590070821 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087168 + metadata_only: false + name: perl-podlators + payloadhash: 022c5c68949e290373b6c583fc838615 + release: 2.module+el8.3.0+6718+7f269185 + size: 120651 + version: '4.12' +perl-threads-2.22-439.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199779 + buildroot_id: 5989895 + buildtime: 1590070743 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087689 + metadata_only: false + name: perl-threads + payloadhash: 3f72ddd4267ba610e6cddce5860e47a8 + release: 439.module+el8.3.0+6718+7f269185 + size: 62127 + version: '2.22' +perl-threads-shared-1.60-440.module+el8.3.0+6718+7f269185.s390x: + arch: s390x + build_id: 1199788 + buildroot_id: 5989906 + buildtime: 1590070882 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8087960 + metadata_only: false + name: perl-threads-shared + payloadhash: bbcf904fb1e452b9cc189d3cbce4e4c4 + release: 440.module+el8.3.0+6718+7f269185 + size: 47795 + version: '1.60' +pigz-2.4-4.el8.s390x: + arch: s390x + build_id: 1026871 + buildroot_id: 5390776 + buildtime: 1575381870 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7587108 + metadata_only: false + name: pigz + payloadhash: 5b2f0c9fec1ba425a27d402726835d14 + release: 4.el8 + size: 76344 + version: '2.4' +pinentry-1.1.0-2.el8.s390x: + arch: s390x + build_id: 748170 + buildroot_id: 4379339 + buildtime: 1534094421 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191959 + metadata_only: false + name: pinentry + payloadhash: 0486cc92bbc6e9100693dd2598e20ceb + release: 2.el8 + size: 100012 + version: 1.1.0 +pkgconf-1.4.2-1.el8.s390x: + arch: s390x + build_id: 748183 + buildroot_id: 4379411 + buildtime: 1534094585 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191319 + metadata_only: false + name: pkgconf + payloadhash: d56854249fef82465cce2be38a15c954 + release: 1.el8 + size: 37352 + version: 1.4.2 +pkgconf-m4-1.4.2-1.el8.noarch: + arch: noarch + build_id: 748183 + buildroot_id: 4380859 + buildtime: 1534100150 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191308 + metadata_only: false + name: pkgconf-m4 + payloadhash: 2ac7f875d44651832e956d730bd08ba8 + release: 1.el8 + size: 16380 + version: 1.4.2 +pkgconf-pkg-config-1.4.2-1.el8.s390x: + arch: s390x + build_id: 748183 + buildroot_id: 4379411 + buildtime: 1534094585 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191321 + metadata_only: false + name: pkgconf-pkg-config + payloadhash: 4ebf95b0eace8d323f066cb5097a985c + release: 1.el8 + size: 14536 + version: 1.4.2 +platform-python-3.6.8-31.el8.s390x: + arch: s390x + build_id: 1289873 + buildroot_id: 6321043 + buildtime: 1597756658 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8361173 + metadata_only: false + name: platform-python + payloadhash: 84404fd154886af8e2e23a153da3798e + release: 31.el8 + size: 84028 + version: 3.6.8 +platform-python-pip-9.0.3-18.el8.noarch: + arch: noarch + build_id: 1290727 + buildroot_id: 6325613 + buildtime: 1597851260 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8366246 + metadata_only: false + name: platform-python-pip + payloadhash: 07da37f84e94c882555772e0eee08b82 + release: 18.el8 + size: 1779268 + version: 9.0.3 +platform-python-setuptools-39.2.0-6.el8.noarch: + arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896583 + metadata_only: false + name: platform-python-setuptools + payloadhash: 5934b19fab076ef2ddcf46b5b547dccb + release: 6.el8 + size: 646368 + version: 39.2.0 +podman-2.2.1-7.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496286 + buildroot_id: 7038719 + buildtime: 1612819303 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298235 + metadata_only: false + name: podman + payloadhash: 367e6852ec183c468d29ea935aa0c151 + release: 7.module+el8.3.1+9857+68fb1526 + size: 13532435 + version: 2.2.1 +podman-catatonit-2.2.1-7.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496286 + buildroot_id: 7038719 + buildtime: 1612819303 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298237 + metadata_only: false + name: podman-catatonit + payloadhash: e3e4ace479df688e91775ace6b6c4da3 + release: 7.module+el8.3.1+9857+68fb1526 + size: 274035 + version: 2.2.1 +policycoreutils-2.9-9.el8.s390x: + arch: s390x + build_id: 1061392 + buildroot_id: 5518086 + buildtime: 1579283922 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7697952 + metadata_only: false + name: policycoreutils + payloadhash: 74aea03945706f157510252b0564f2b0 + release: 9.el8 + size: 381968 + version: '2.9' +policycoreutils-python-utils-2.9-9.el8.noarch: + arch: noarch + build_id: 1061392 + buildroot_id: 5518083 + buildtime: 1579284065 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7697940 + metadata_only: false + name: policycoreutils-python-utils + payloadhash: 34423669397e24d1b1a581c3f03dcc75 + release: 9.el8 + size: 256032 + version: '2.9' +polkit-0.115-11.el8_3.2.s390x: + arch: s390x + build_id: 1620087 + buildroot_id: 7440733 + buildtime: 1622555032 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9787553 + metadata_only: false + name: polkit + payloadhash: 4d198ef359bda08f6e4adc27c49ebafe + release: 11.el8_3.2 + size: 150988 + version: '0.115' +polkit-libs-0.115-11.el8_3.2.s390x: + arch: s390x + build_id: 1620087 + buildroot_id: 7440733 + buildtime: 1622555032 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9787555 + metadata_only: false + name: polkit-libs + payloadhash: adad995ebe3af61bbf81ea1a702f1c8e + release: 11.el8_3.2 + size: 72952 + version: '0.115' +polkit-pkla-compat-0.1-12.el8.s390x: + arch: s390x + build_id: 748219 + buildroot_id: 4379534 + buildtime: 1534094862 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191781 + metadata_only: false + name: polkit-pkla-compat + payloadhash: 13e24569aea66834581cafaa7d3250f4 + release: 12.el8 + size: 44852 + version: '0.1' +popt-1.16-14.el8.s390x: + arch: s390x + build_id: 748209 + buildroot_id: 4379509 + buildtime: 1534094803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191635 + metadata_only: false + name: popt + payloadhash: 0addabcc07ebd24a6d185cec93c8f132 + release: 14.el8 + size: 61780 + version: '1.16' +procps-ng-3.3.15-3.el8_3.1.s390x: + arch: s390x + build_id: 1478778 + buildroot_id: 6979093 + buildtime: 1611842482 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9190722 + metadata_only: false + name: procps-ng + payloadhash: 59aa594ec2b76af7689befe490b6e819 + release: 3.el8_3.1 + size: 325232 + version: 3.3.15 +protobuf-c-1.3.0-4.el8.s390x: + arch: s390x + build_id: 748203 + buildroot_id: 4379474 + buildtime: 1534094744 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191454 + metadata_only: false + name: protobuf-c + payloadhash: 1622070fa4c3b4ee8fa52963078b685e + release: 4.el8 + size: 36784 + version: 1.3.0 +psmisc-23.1-5.el8.s390x: + arch: s390x + build_id: 1246935 + buildroot_id: 6157934 + buildtime: 1593804817 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8248290 + metadata_only: false + name: psmisc + payloadhash: b14c10c0f9e45d7d4d6b83c885891430 + release: 5.el8 + size: 145288 + version: '23.1' +publicsuffix-list-dafsa-20180723-1.el8.noarch: + arch: noarch + build_id: 748188 + buildroot_id: 4379429 + buildtime: 1534094638 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185702 + metadata_only: false + name: publicsuffix-list-dafsa + payloadhash: 193f2f7ffa5e990141b941b47dfbab79 + release: 1.el8 + size: 56488 + version: '20180723' +python3-audit-3.0-0.17.20191104git1c2f876.el8.s390x: + arch: s390x + build_id: 1054304 + buildroot_id: 5491131 + buildtime: 1578502232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7666105 + metadata_only: false + name: python3-audit + payloadhash: 0275bdfc9c61482b2d3a96db83c8f5db + release: 0.17.20191104git1c2f876.el8 + size: 82988 + version: '3.0' +python3-bind-9.11.20-5.el8_3.1.noarch: + arch: noarch + build_id: 1503948 + buildroot_id: 7066142 + buildtime: 1613391360 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9333867 + metadata_only: false + name: python3-bind + payloadhash: 9ca89eab76e246da6d04a9cdad123b8a + release: 5.el8_3.1 + size: 151292 + version: 9.11.20 +python3-libs-3.6.8-31.el8.s390x: + arch: s390x + build_id: 1289873 + buildroot_id: 6321043 + buildtime: 1597756658 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8361174 + metadata_only: false + name: python3-libs + payloadhash: c0a262ce3d2d97ad5627771ddcfae314 + release: 31.el8 + size: 8023376 + version: 3.6.8 +python3-libselinux-2.9-4.el8_3.s390x: + arch: s390x + build_id: 1338046 + buildroot_id: 6487905 + buildtime: 1601579041 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8511088 + metadata_only: false + name: python3-libselinux + payloadhash: 871c15280c8a8f13677a4a19ca441f9d + release: 4.el8_3 + size: 276448 + version: '2.9' +python3-libsemanage-2.9-3.el8.s390x: + arch: s390x + build_id: 1241882 + buildroot_id: 6140770 + buildtime: 1593444566 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8229644 + metadata_only: false + name: python3-libsemanage + payloadhash: 03302711a248577aa350cf8debc1513d + release: 3.el8 + size: 125544 + version: '2.9' +python3-pip-wheel-9.0.3-18.el8.noarch: + arch: noarch + build_id: 1290727 + buildroot_id: 6325613 + buildtime: 1597851260 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8366249 + metadata_only: false + name: python3-pip-wheel + payloadhash: facd1322f04f7579e8893fb1abaa6c4e + release: 18.el8 + size: 1094544 + version: 9.0.3 +python3-ply-3.9-8.el8.noarch: + arch: noarch + build_id: 1007555 + buildroot_id: 5317477 + buildtime: 1573546185 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7486751 + metadata_only: false + name: python3-ply + payloadhash: bb38b818834c92c09cd0c2582b0deba7 + release: 8.el8 + size: 109780 + version: '3.9' +python3-policycoreutils-2.9-9.el8.noarch: + arch: noarch + build_id: 1061392 + buildroot_id: 5518083 + buildtime: 1579284065 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7697928 + metadata_only: false + name: python3-policycoreutils + payloadhash: b17f3e090cdf64c5cf4b7181d874d0a5 + release: 9.el8 + size: 2344164 + version: '2.9' +python3-pyyaml-3.12-12.el8.s390x: + arch: s390x + build_id: 748227 + buildroot_id: 4379566 + buildtime: 1534094994 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6191363 + metadata_only: false + name: python3-pyyaml + payloadhash: f884badbc320888fdcafa36d0965d75c + release: 12.el8 + size: 182464 + version: '3.12' +python3-setools-4.3.0-2.el8.s390x: + arch: s390x + build_id: 1242727 + buildroot_id: 6144413 + buildtime: 1593540241 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8234324 + metadata_only: false + name: python3-setools + payloadhash: 6ebaea52cde1d2243fb65d0cc87573c2 + release: 2.el8 + size: 574728 + version: 4.3.0 +python3-setuptools-wheel-39.2.0-6.el8.noarch: + arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896582 + metadata_only: false + name: python3-setuptools-wheel + payloadhash: f7a0c30562c572b2b169a51cdd75df84 + release: 6.el8 + size: 294672 + version: 39.2.0 +python3-sssdconfig-2.3.0-9.el8.noarch: + arch: noarch + build_id: 1319590 + buildroot_id: 6423509 + buildtime: 1600109196 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435217 + metadata_only: false + name: python3-sssdconfig + payloadhash: 3e1044ef4be610061eb83706dec0f04e + release: 9.el8 + size: 134004 + version: 2.3.0 +qemu-guest-agent-4.2.0-34.module+el8.3.0+10437+1ca0c2ba.5.s390x: + arch: s390x + build_id: 1545328 + buildroot_id: 7193020 + buildtime: 1616433682 + epoch: 15 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9482495 + metadata_only: false + name: qemu-guest-agent + payloadhash: ab3a8781d96a3bee0c5c98ac85ea59b9 + release: 34.module+el8.3.0+10437+1ca0c2ba.5 + size: 228967 + version: 4.2.0 +quota-4.04-10.el8.s390x: + arch: s390x + build_id: 759681 + buildroot_id: 4424912 + buildtime: 1535525947 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6268246 + metadata_only: false + name: quota + payloadhash: 6b24b3d38d08eda3fdfcf3f5fba06e5c + release: 10.el8 + size: 210356 + version: '4.04' +quota-nls-4.04-10.el8.noarch: + arch: noarch + build_id: 759681 + buildroot_id: 4424916 + buildtime: 1535526090 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6268224 + metadata_only: false + name: quota-nls + payloadhash: 81d7d0c5837803ddc18f9fe129a7d175 + release: 10.el8 + size: 95492 + version: '4.04' +rdma-core-29.0-3.el8.s390x: + arch: s390x + build_id: 1222084 + buildroot_id: 6072811 + buildtime: 1591755430 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8161683 + metadata_only: false + name: rdma-core + payloadhash: af9dff1cb3a540a3748cddda816be008 + release: 3.el8 + size: 62824 + version: '29.0' +readline-7.0-10.el8.s390x: + arch: s390x + build_id: 748275 + buildroot_id: 4379820 + buildtime: 1534096081 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6192845 + metadata_only: false + name: readline + payloadhash: 8cd29bcf434ee6c0398e25a4a8a45ea2 + release: 10.el8 + size: 201404 + version: '7.0' +redhat-release-coreos-47.83-2.el8.s390x: + arch: s390x + build_id: 1607468 + buildroot_id: 7400131 + buildtime: 1621434751 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9737909 + metadata_only: false + name: redhat-release-coreos + payloadhash: ed8f1f45e63f37fdc912774be3dd5ac3 + release: 2.el8 + size: 31576 + version: '47.83' +rpcbind-1.2.5-7.el8.s390x: + arch: s390x + build_id: 1079402 + buildroot_id: 5581418 + buildtime: 1581018711 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7742247 + metadata_only: false + name: rpcbind + payloadhash: 87c93e8d4fc5d4d6d3ea026146f01357 + release: 7.el8 + size: 67580 + version: 1.2.5 +rpm-4.14.3-4.el8.s390x: + arch: s390x + build_id: 1238540 + buildroot_id: 6130420 + buildtime: 1593183808 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8222808 + metadata_only: false + name: rpm + payloadhash: 67e528f631bd8b5aa3203c3dea954cb1 + release: 4.el8 + size: 551280 + version: 4.14.3 +rpm-libs-4.14.3-4.el8.s390x: + arch: s390x + build_id: 1238540 + buildroot_id: 6130420 + buildtime: 1593183808 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8222806 + metadata_only: false + name: rpm-libs + payloadhash: 9e681ff4d7e8e3ef824bdf286b832250 + release: 4.el8 + size: 333564 + version: 4.14.3 +rpm-ostree-2020.7-1.el8_3.s390x: + arch: s390x + build_id: 1410472 + buildroot_id: 6786281 + buildtime: 1608049041 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9006850 + metadata_only: false + name: rpm-ostree + payloadhash: 515c9246a900f1cdfda77e9460ab00c8 + release: 1.el8_3 + size: 836496 + version: '2020.7' +rpm-ostree-libs-2020.7-1.el8_3.s390x: + arch: s390x + build_id: 1410472 + buildroot_id: 6786281 + buildtime: 1608049041 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9006851 + metadata_only: false + name: rpm-ostree-libs + payloadhash: 7cd74f355ce12d459d5f77f482e05393 + release: 1.el8_3 + size: 1095348 + version: '2020.7' +rpm-plugin-selinux-4.14.3-4.el8.s390x: + arch: s390x + build_id: 1238540 + buildroot_id: 6130420 + buildtime: 1593183808 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8222807 + metadata_only: false + name: rpm-plugin-selinux + payloadhash: 1a6e1d418c6a22a6068e4038f86c512f + release: 4.el8 + size: 75632 + version: 4.14.3 +rsync-3.1.3-9.el8.s390x: + arch: s390x + build_id: 1295508 + buildroot_id: 6349239 + buildtime: 1598272626 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8377590 + metadata_only: false + name: rsync + payloadhash: c07cae21b41d3384bf23f9ce75fb7ea2 + release: 9.el8 + size: 406276 + version: 3.1.3 +runc-1.0.0-96.rhaos4.8.gitcd80260.el8.s390x: + arch: s390x + build_id: 1591452 + buildroot_id: 7336295 + buildtime: 1619725862 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9662794 + metadata_only: false + name: runc + payloadhash: 636f165f39d4ecf2f819d0771c85edd4 + release: 96.rhaos4.8.gitcd80260.el8 + size: 2848196 + version: 1.0.0 +s390utils-base-2.6.0-33.el8_3.2.s390x: + arch: s390x + build_id: 1489916 + buildroot_id: 7018443 + buildtime: 1612441608 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9258904 + metadata_only: false + name: s390utils-base + payloadhash: 681970d61727d50772256e263ec9ff2a + release: 33.el8_3.2 + size: 1336872 + version: 2.6.0 +samba-client-libs-4.12.3-14.el8_3.s390x: + arch: s390x + build_id: 1401896 + buildroot_id: 6731126 + buildtime: 1607104547 + epoch: 0 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8899905 + metadata_only: false + name: samba-client-libs + payloadhash: 81f2ce04179c10fab6ab6e0e6de375c1 + release: 14.el8_3 + size: 5201748 + version: 4.12.3 +samba-common-4.12.3-14.el8_3.noarch: + arch: noarch + build_id: 1401896 + buildroot_id: 6731128 + buildtime: 1607105815 + epoch: 0 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8899738 + metadata_only: false + name: samba-common + payloadhash: bdb81915f44e8a7e1359257ff2c83e03 + release: 14.el8_3 + size: 218396 + version: 4.12.3 +samba-common-libs-4.12.3-14.el8_3.s390x: + arch: s390x + build_id: 1401896 + buildroot_id: 6731126 + buildtime: 1607104547 + epoch: 0 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8899906 + metadata_only: false + name: samba-common-libs + payloadhash: e96df93275482b97e307ca22726b617e + release: 14.el8_3 + size: 166720 + version: 4.12.3 +sed-4.5-2.el8.s390x: + arch: s390x + build_id: 1197484 + buildroot_id: 5980580 + buildtime: 1589884027 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8076501 + metadata_only: false + name: sed + payloadhash: 4315e361339afc911d5866abf421cebd + release: 2.el8 + size: 302940 + version: '4.5' +selinux-policy-3.14.3-54.el8_3.4.noarch: + arch: noarch + build_id: 1586657 + buildroot_id: 7314875 + buildtime: 1619196114 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9643342 + metadata_only: false + name: selinux-policy + payloadhash: 6519ce007581a8756d6d755579f68be7 + release: 54.el8_3.4 + size: 636176 + version: 3.14.3 +selinux-policy-targeted-3.14.3-54.el8_3.4.noarch: + arch: noarch + build_id: 1586657 + buildroot_id: 7314875 + buildtime: 1619196114 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9643346 + metadata_only: false + name: selinux-policy-targeted + payloadhash: 683819537e65d21d36321152afc20295 + release: 54.el8_3.4 + size: 15798760 + version: 3.14.3 +setup-2.12.2-6.el8.noarch: + arch: noarch + build_id: 1166694 + buildroot_id: 5856989 + buildtime: 1586943783 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7971019 + metadata_only: false + name: setup + payloadhash: 109811c80a28ad746bcd12d4d0c06794 + release: 6.el8 + size: 183896 + version: 2.12.2 +sg3_utils-1.44-5.el8.s390x: + arch: s390x + build_id: 1049594 + buildroot_id: 5474569 + buildtime: 1577985851 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7656120 + metadata_only: false + name: sg3_utils + payloadhash: 5e68eb2d701dfc0b511d80f25882e2e0 + release: 5.el8 + size: 895548 + version: '1.44' +sg3_utils-libs-1.44-5.el8.s390x: + arch: s390x + build_id: 1049594 + buildroot_id: 5474569 + buildtime: 1577985851 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7656125 + metadata_only: false + name: sg3_utils-libs + payloadhash: 79cc59b3a295768ac01b47ddee57c480 + release: 5.el8 + size: 93680 + version: '1.44' +shadow-utils-4.6-11.el8.s390x: + arch: s390x + build_id: 1281105 + buildroot_id: 6292351 + buildtime: 1596808498 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8339655 + metadata_only: false + name: shadow-utils + payloadhash: 6f1fcf7d624a3b3fe5721b3a1ee35d30 + release: 11.el8 + size: 1257040 + version: '4.6' +shared-mime-info-1.9-3.el8.s390x: + arch: s390x + build_id: 748349 + buildroot_id: 4380129 + buildtime: 1534097157 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6194088 + metadata_only: false + name: shared-mime-info + payloadhash: 0138df693f1a340d421a286e769eddb2 + release: 3.el8 + size: 333924 + version: '1.9' +skopeo-1.2.0-9.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496298 + buildroot_id: 7038763 + buildtime: 1612819299 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298266 + metadata_only: false + name: skopeo + payloadhash: 764f692af2a235a1230569bc6377c9c8 + release: 9.module+el8.3.1+9857+68fb1526 + size: 7060627 + version: 1.2.0 +slang-2.3.2-3.el8.s390x: + arch: s390x + build_id: 748373 + buildroot_id: 4380215 + buildtime: 1534097477 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6194924 + metadata_only: false + name: slang + payloadhash: f584514e3e2904427b2fe3a9368e9261 + release: 3.el8 + size: 362296 + version: 2.3.2 +slirp4netns-1.1.8-1.module+el8.3.1+9857+68fb1526.s390x: + arch: s390x + build_id: 1496295 + buildroot_id: 7038757 + buildtime: 1612819261 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9298139 + metadata_only: false + name: slirp4netns + payloadhash: 215f16ca305bd50b96286717a038b885 + release: 1.module+el8.3.1+9857+68fb1526 + size: 49747 + version: 1.1.8 +snappy-1.1.8-3.el8.s390x: + arch: s390x + build_id: 1291973 + buildroot_id: 6332704 + buildtime: 1597955308 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8370183 + metadata_only: false + name: snappy + payloadhash: a964704915f3d47a637785c576c9b060 + release: 3.el8 + size: 36116 + version: 1.1.8 +socat-1.7.3.3-2.el8.s390x: + arch: s390x + build_id: 1025058 + buildroot_id: 5383387 + buildtime: 1575182395 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7579202 + metadata_only: false + name: socat + payloadhash: f34dfc0cc9415a4bc387e42015b5aecf + release: 2.el8 + size: 298124 + version: 1.7.3.3 +sqlite-libs-3.26.0-11.el8.s390x: + arch: s390x + build_id: 1280583 + buildroot_id: 6291207 + buildtime: 1596782040 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8339252 + metadata_only: false + name: sqlite-libs + payloadhash: 442ab5ce34081e1f24c95acaea73587c + release: 11.el8 + size: 566476 + version: 3.26.0 +squashfs-tools-4.3-19.el8.s390x: + arch: s390x + build_id: 946403 + buildroot_id: 5095349 + buildtime: 1565237981 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7240862 + metadata_only: false + name: squashfs-tools + payloadhash: 7dffb9ca73636e33c7ae1323b47785e5 + release: 19.el8 + size: 165924 + version: '4.3' +sssd-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435460 + metadata_only: false + name: sssd + payloadhash: 11ecd52f6f900087fe66403fd79da524 + release: 9.el8 + size: 98588 + version: 2.3.0 +sssd-ad-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435473 + metadata_only: false + name: sssd-ad + payloadhash: 050c4d3b3877adb707aeba1f7785399e + release: 9.el8 + size: 238012 + version: 2.3.0 +sssd-client-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435462 + metadata_only: false + name: sssd-client + payloadhash: 44a24e1d6885e85c64fbb01550b65b80 + release: 9.el8 + size: 169216 + version: 2.3.0 +sssd-common-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435461 + metadata_only: false + name: sssd-common + payloadhash: ded0277d88ca755e07396f2eabeccebb + release: 9.el8 + size: 1493520 + version: 2.3.0 +sssd-common-pac-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435471 + metadata_only: false + name: sssd-common-pac + payloadhash: 7614702d16c44ae1ddb2d7eb875c0242 + release: 9.el8 + size: 165376 + version: 2.3.0 +sssd-ipa-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435472 + metadata_only: false + name: sssd-ipa + payloadhash: f2634a0e1e1cf87c69eed9e88bf5a440 + release: 9.el8 + size: 321920 + version: 2.3.0 +sssd-krb5-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435470 + metadata_only: false + name: sssd-krb5 + payloadhash: 5cdd6c0b04353e19324bd6f1f06a86e6 + release: 9.el8 + size: 134808 + version: 2.3.0 +sssd-krb5-common-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435469 + metadata_only: false + name: sssd-krb5-common + payloadhash: b11911cd89d546dde88995088ce77667 + release: 9.el8 + size: 172744 + version: 2.3.0 +sssd-ldap-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435468 + metadata_only: false + name: sssd-ldap + payloadhash: a97b93663022ac26869d51a2679196d8 + release: 9.el8 + size: 216976 + version: 2.3.0 +sssd-nfs-idmap-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435490 + metadata_only: false + name: sssd-nfs-idmap + payloadhash: 6f0f0a9226e108f688010be778afac8c + release: 9.el8 + size: 105176 + version: 2.3.0 +sssd-proxy-2.3.0-9.el8.s390x: + arch: s390x + build_id: 1319590 + buildroot_id: 6423512 + buildtime: 1600109232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8435474 + metadata_only: false + name: sssd-proxy + payloadhash: 7140303bd0cb619d5feceb41722820fc + release: 9.el8 + size: 137148 + version: 2.3.0 +strace-5.1-1.el8.s390x: + arch: s390x + build_id: 1181897 + buildroot_id: 5920339 + buildtime: 1588285093 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8025279 + metadata_only: false + name: strace + payloadhash: 495ef561ee4fea1a1861a356cbefa12a + release: 1.el8 + size: 1023168 + version: '5.1' +subscription-manager-rhsm-certificates-1.27.18-1.el8_3.s390x: + arch: s390x + build_id: 1487400 + buildroot_id: 7009071 + buildtime: 1612367816 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9238596 + metadata_only: false + name: subscription-manager-rhsm-certificates + payloadhash: 2ebc6d52a2315d73610747d132933b34 + release: 1.el8_3 + size: 266856 + version: 1.27.18 +sudo-1.8.29-6.el8_3.1.s390x: + arch: s390x + build_id: 1467505 + buildroot_id: 6940578 + buildtime: 1611160648 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9143054 + metadata_only: false + name: sudo + payloadhash: 6039c58c814717db8082175a64ed21d6 + release: 6.el8_3.1 + size: 900572 + version: 1.8.29 +sysfsutils-2.1.0-24.el8.s390x: + arch: s390x + build_id: 786476 + buildroot_id: 4533718 + buildtime: 1540241265 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6467548 + metadata_only: false + name: sysfsutils + payloadhash: fc2f0c4111776b7852144eefa8e31723 + release: 24.el8 + size: 47832 + version: 2.1.0 +systemd-239-41.el8_3.3.s390x: + arch: s390x + build_id: 1647438 + buildroot_id: 7537660 + buildtime: 1624960977 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9913129 + metadata_only: false + name: systemd + payloadhash: ef6b1384809d84a1800f06b7333d0ba1 + release: 41.el8_3.3 + size: 3409684 + version: '239' +systemd-journal-remote-239-41.el8_3.3.s390x: + arch: s390x + build_id: 1647438 + buildroot_id: 7537660 + buildtime: 1624960977 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9913135 + metadata_only: false + name: systemd-journal-remote + payloadhash: 7bb3284fb46e92d7363bbbb52a15c10a + release: 41.el8_3.3 + size: 166708 + version: '239' +systemd-libs-239-41.el8_3.3.s390x: + arch: s390x + build_id: 1647438 + buildroot_id: 7537660 + buildtime: 1624960977 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9913130 + metadata_only: false + name: systemd-libs + payloadhash: 336ffff011262bd63282bdf805f00d28 + release: 41.el8_3.3 + size: 992044 + version: '239' +systemd-pam-239-41.el8_3.3.s390x: + arch: s390x + build_id: 1647438 + buildroot_id: 7537660 + buildtime: 1624960977 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9913131 + metadata_only: false + name: systemd-pam + payloadhash: 3fa376b53f2c18331935b76e1d07c52f + release: 41.el8_3.3 + size: 429936 + version: '239' +systemd-udev-239-41.el8_3.3.s390x: + arch: s390x + build_id: 1647438 + buildroot_id: 7537660 + buildtime: 1624960977 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9913133 + metadata_only: false + name: systemd-udev + payloadhash: 5da426dfbef4ec5c91ab64ab93660208 + release: 41.el8_3.3 + size: 1335808 + version: '239' +tar-1.30-5.el8.s390x: + arch: s390x + build_id: 1229781 + buildroot_id: 6101289 + buildtime: 1592561997 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8194444 + metadata_only: false + name: tar + payloadhash: 59ad7788360a2252611add2efbb858f0 + release: 5.el8 + size: 851256 + version: '1.30' +teamd-1.31-2.el8.s390x: + arch: s390x + build_id: 1307839 + buildroot_id: 6385573 + buildtime: 1599145170 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8409055 + metadata_only: false + name: teamd + payloadhash: 48cd7db5a9bea2713877a68432b93679 + release: 2.el8 + size: 126432 + version: '1.31' +timedatex-0.5-3.el8.s390x: + arch: s390x + build_id: 748444 + buildroot_id: 4380560 + buildtime: 1534098520 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6196383 + metadata_only: false + name: timedatex + payloadhash: 52ad50bc83f0c161abb3f6035feeee2d + release: 3.el8 + size: 31140 + version: '0.5' +tmux-2.7-1.el8.s390x: + arch: s390x + build_id: 748451 + buildroot_id: 4380605 + buildtime: 1534098647 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6196675 + metadata_only: false + name: tmux + payloadhash: ab1fb6f57f5507df5e09b82b68896192 + release: 1.el8 + size: 308844 + version: '2.7' +toolbox-0.0.8-3.rhaos4.7.el8.noarch: + arch: noarch + build_id: 1500048 + buildroot_id: 7052655 + buildtime: 1613053034 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9318904 + metadata_only: false + name: toolbox + payloadhash: 5654e1621dca83f41bc287c7eed0afde + release: 3.rhaos4.7.el8 + size: 15744 + version: 0.0.8 +tpm2-tools-4.1.1-1.el8.s390x: + arch: s390x + build_id: 1184718 + buildroot_id: 5931175 + buildtime: 1588640183 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8030446 + metadata_only: false + name: tpm2-tools + payloadhash: 73d57225a572664af61718fe54033c11 + release: 1.el8 + size: 1027420 + version: 4.1.1 +tpm2-tss-2.3.2-2.el8.s390x: + arch: s390x + build_id: 1179555 + buildroot_id: 5909275 + buildtime: 1588021058 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8012316 + metadata_only: false + name: tpm2-tss + payloadhash: f98d074c130955b7122836572887cffa + release: 2.el8 + size: 237736 + version: 2.3.2 +trousers-0.3.14-4.el8.s390x: + arch: s390x + build_id: 909547 + buildroot_id: 4970188 + buildtime: 1560196460 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7075169 + metadata_only: false + name: trousers + payloadhash: 446f2291b4bd9dbd0d4176c5bf1e1d69 + release: 4.el8 + size: 143276 + version: 0.3.14 +trousers-lib-0.3.14-4.el8.s390x: + arch: s390x + build_id: 909547 + buildroot_id: 4970188 + buildtime: 1560196460 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7075174 + metadata_only: false + name: trousers-lib + payloadhash: cb4109d866154273938da01872443afc + release: 4.el8 + size: 154656 + version: 0.3.14 +tzdata-2021a-1.el8.noarch: + arch: noarch + build_id: 1473607 + buildroot_id: 6962315 + buildtime: 1611592265 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9169364 + metadata_only: false + name: tzdata + payloadhash: a928d660b5bd64a91bd6bfc055c865e5 + release: 1.el8 + size: 482936 + version: 2021a +unbound-libs-1.7.3-14.el8.s390x: + arch: s390x + build_id: 1207223 + buildroot_id: 6017425 + buildtime: 1590669457 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8113499 + metadata_only: false + name: unbound-libs + payloadhash: 29b3259f3ea5b9c3cf97c35049cd5169 + release: 14.el8 + size: 472152 + version: 1.7.3 +userspace-rcu-0.10.1-2.el8.s390x: + arch: s390x + build_id: 748512 + buildroot_id: 4380913 + buildtime: 1534100447 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6200260 + metadata_only: false + name: userspace-rcu + payloadhash: 151933be1d398053ca2443379c795f1e + release: 2.el8 + size: 98708 + version: 0.10.1 +util-linux-2.32.1-24.el8.s390x: + arch: s390x + build_id: 1238207 + buildroot_id: 6129072 + buildtime: 1593157326 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8220245 + metadata_only: false + name: util-linux + payloadhash: 9b023d6b1f943c22701bca88772806a8 + release: 24.el8 + size: 2490916 + version: 2.32.1 +vim-minimal-8.0.1763-15.el8.s390x: + arch: s390x + build_id: 1213699 + buildroot_id: 6041038 + buildtime: 1591175278 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8134030 + metadata_only: false + name: vim-minimal + payloadhash: 8b2b7c5088347ddacda859376736aebf + release: 15.el8 + size: 572740 + version: 8.0.1763 +which-2.21-12.el8.s390x: + arch: s390x + build_id: 1013911 + buildroot_id: 5340494 + buildtime: 1574160713 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7520904 + metadata_only: false + name: which + payloadhash: f92ea05e8ef18ef8e86ff5de757b370d + release: 12.el8 + size: 49048 + version: '2.21' +xfsprogs-5.0.0-4.el8.s390x: + arch: s390x + build_id: 1215701 + buildroot_id: 6048640 + buildtime: 1591294157 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8143831 + metadata_only: false + name: xfsprogs + payloadhash: d1b197c07986bc48f67be9e55ac455dd + release: 4.el8 + size: 1070720 + version: 5.0.0 +xkeyboard-config-2.28-1.el8.noarch: + arch: noarch + build_id: 1000732 + buildroot_id: 5289907 + buildtime: 1572582653 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7457246 + metadata_only: false + name: xkeyboard-config + payloadhash: 69870c5c6d7faa29a0a1c9333f321fc5 + release: 1.el8 + size: 799896 + version: '2.28' +xz-5.2.4-3.el8.s390x: + arch: s390x + build_id: 803342 + buildroot_id: 4585479 + buildtime: 1542895742 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6547278 + metadata_only: false + name: xz + payloadhash: 5d24c67417d9976ff3d27b8c75f20de9 + release: 3.el8 + size: 153848 + version: 5.2.4 +xz-libs-5.2.4-3.el8.s390x: + arch: s390x + build_id: 803342 + buildroot_id: 4585479 + buildtime: 1542895742 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6547281 + metadata_only: false + name: xz-libs + payloadhash: e002c9c7de03e8a4ac1d4c95fd0d4d07 + release: 3.el8 + size: 94892 + version: 5.2.4 +yajl-2.1.0-10.el8.s390x: + arch: s390x + build_id: 748608 + buildroot_id: 4381355 + buildtime: 1534101163 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6201476 + metadata_only: false + name: yajl + payloadhash: f61690e7964aed7fb89327d879964a21 + release: 10.el8 + size: 39532 + version: 2.1.0 +zlib-1.2.11-16.2.el8_3.s390x: + arch: s390x + build_id: 1517313 + buildroot_id: 7106934 + buildtime: 1614264874 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9389807 + metadata_only: false + name: zlib + payloadhash: 546ac40ee0a1b9258fd3e06a85de43fd + release: 16.2.el8_3 + size: 106760 + version: 1.2.11 diff --git a/tests/resources/sriov-operator-must-gather/build_dicts.yaml b/tests/resources/sriov-operator-must-gather/build_dicts.yaml new file mode 100644 index 000000000..336d62e7c --- /dev/null +++ b/tests/resources/sriov-operator-must-gather/build_dicts.yaml @@ -0,0 +1,4670 @@ +# List of all builds associated with packages used by underlying archive ima +745929: + build_id: 745929 + cg_id: null + cg_name: null + completion_time: '2018-08-12 07:54:06.053845' + completion_ts: 1534060446.05384 + creation_event_id: 21094076 + creation_time: '2018-08-12 07:48:15.882529' + creation_ts: 1534060095.88253 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libxcrypt?#39cb4db5d6921432ac58314ecbce0499b3175030 + id: 745929 + name: libxcrypt + nvr: libxcrypt-4.1.1-4.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 67791 + package_name: libxcrypt + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libxcrypt#39cb4db5d6921432ac58314ecbce0499b3175030 + start_time: '2018-08-12 07:48:15.882529' + start_ts: 1534060095.88253 + state: 1 + task_id: 17778574 + version: 4.1.1 + volume_id: 9 + volume_name: rhel-8 +745934: + build_id: 745934 + cg_id: null + cg_name: null + completion_time: '2018-08-12 07:55:13.376681' + completion_ts: 1534060513.37668 + creation_event_id: 21094083 + creation_time: '2018-08-12 07:48:16.919100' + creation_ts: 1534060096.9191 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/grep?#c300a00f9d91514feb8a5eef8d06800c4be6a03b + id: 745934 + name: grep + nvr: grep-3.1-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 797 + package_name: grep + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/grep#c300a00f9d91514feb8a5eef8d06800c4be6a03b + start_time: '2018-08-12 07:48:16.919100' + start_ts: 1534060096.9191 + state: 1 + task_id: 17778576 + version: '3.1' + volume_id: 9 + volume_name: rhel-8 +745941: + build_id: 745941 + cg_id: null + cg_name: null + completion_time: '2018-08-12 07:57:33.801035' + completion_ts: 1534060653.80103 + creation_event_id: 21094119 + creation_time: '2018-08-12 07:48:50.761707' + creation_ts: 1534060130.76171 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/bzip2?#6c320812716142f745e87c19d37aef88b455b320 + id: 745941 + name: bzip2 + nvr: bzip2-1.0.6-26.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 228 + package_name: bzip2 + release: 26.el8 + source: git://pkgs.devel.redhat.com/rpms/bzip2#6c320812716142f745e87c19d37aef88b455b320 + start_time: '2018-08-12 07:48:50.761707' + start_ts: 1534060130.76171 + state: 1 + task_id: 17778572 + version: 1.0.6 + volume_id: 9 + volume_name: rhel-8 +745979: + build_id: 745979 + cg_id: null + cg_name: null + completion_time: '2018-08-12 08:48:59.304322' + completion_ts: 1534063739.30432 + creation_event_id: 21094765 + creation_time: '2018-08-12 08:34:28.122113' + creation_ts: 1534062868.12211 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/acl?#70b98f966df90873e3b660938109a701fea4d520 + id: 745979 + name: acl + nvr: acl-2.2.53-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 79 + package_name: acl + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/acl#70b98f966df90873e3b660938109a701fea4d520 + start_time: '2018-08-12 08:34:28.122113' + start_ts: 1534062868.12211 + state: 1 + task_id: 17779252 + version: 2.2.53 + volume_id: 9 + volume_name: rhel-8 +746019: + build_id: 746019 + cg_id: null + cg_name: null + completion_time: '2018-08-12 08:56:05.688880' + completion_ts: 1534064165.68888 + creation_event_id: 21095063 + creation_time: '2018-08-12 08:38:33.487185' + creation_ts: 1534063113.48719 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/attr?#fdfcc6e99dda82ee784f779aea1e6583d6a9114f + id: 746019 + name: attr + nvr: attr-2.4.48-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 156 + package_name: attr + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/attr#fdfcc6e99dda82ee784f779aea1e6583d6a9114f + start_time: '2018-08-12 08:38:33.487185' + start_ts: 1534063113.48719 + state: 1 + task_id: 17779299 + version: 2.4.48 + volume_id: 9 + volume_name: rhel-8 +746023: + build_id: 746023 + cg_id: null + cg_name: null + completion_time: '2018-08-12 08:40:25.060266' + completion_ts: 1534063225.06027 + creation_event_id: 21095103 + creation_time: '2018-08-12 08:39:16.029840' + creation_ts: 1534063156.02984 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/basesystem?#a5396e2dfce9e5a71fa15c63cf074f949ea2677c + id: 746023 + name: basesystem + nvr: basesystem-11-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 183 + package_name: basesystem + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/basesystem#a5396e2dfce9e5a71fa15c63cf074f949ea2677c + start_time: '2018-08-12 08:39:16.029840' + start_ts: 1534063156.02984 + state: 1 + task_id: 17779314 + version: '11' + volume_id: 9 + volume_name: rhel-8 +746151: + build_id: 746151 + cg_id: null + cg_name: null + completion_time: '2018-08-12 09:47:12.616545' + completion_ts: 1534067232.61654 + creation_event_id: 21096462 + creation_time: '2018-08-12 09:12:52.361476' + creation_ts: 1534065172.36148 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dbus-glib?#5eb05e6c24dd7ccebca79678a8bcc876ada6db0f + id: 746151 + name: dbus-glib + nvr: dbus-glib-0.110-2.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 3370 + package_name: dbus-glib + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/dbus-glib#5eb05e6c24dd7ccebca79678a8bcc876ada6db0f + start_time: '2018-08-12 09:12:52.361476' + start_ts: 1534065172.36148 + state: 1 + task_id: 17779461 + version: '0.110' + volume_id: 9 + volume_name: rhel-8 +746526: + build_id: 746526 + cg_id: null + cg_name: null + completion_time: '2018-08-12 12:58:19.089212' + completion_ts: 1534078699.08921 + creation_event_id: 21101096 + creation_time: '2018-08-12 11:18:47.516665' + creation_ts: 1534072727.51666 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gobject-introspection?#36eb0ce62a6550943166ca0fc6ad5819ad12acd1 + id: 746526 + name: gobject-introspection + nvr: gobject-introspection-1.56.1-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 14420 + package_name: gobject-introspection + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/gobject-introspection#36eb0ce62a6550943166ca0fc6ad5819ad12acd1 + start_time: '2018-08-12 11:18:47.516665' + start_ts: 1534072727.51666 + state: 1 + task_id: 17779936 + version: 1.56.1 + volume_id: 9 + volume_name: rhel-8 +746599: + build_id: 746599 + cg_id: null + cg_name: null + completion_time: '2018-08-12 13:39:05.607625' + completion_ts: 1534081145.60763 + creation_event_id: 21103702 + creation_time: '2018-08-12 12:16:28.131995' + creation_ts: 1534076188.13199 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/hostname?#921430a8e173de21d01d6878929253a6d3c09291 + id: 746599 + name: hostname + nvr: hostname-3.20-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 33899 + package_name: hostname + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/hostname#921430a8e173de21d01d6878929253a6d3c09291 + start_time: '2018-08-12 12:16:28.131995' + start_ts: 1534076188.13199 + state: 1 + task_id: 17785068 + version: '3.20' + volume_id: 9 + volume_name: rhel-8 +746857: + build_id: 746857 + cg_id: null + cg_name: null + completion_time: '2018-08-12 12:44:56.534532' + completion_ts: 1534077896.53453 + creation_event_id: 21105692 + creation_time: '2018-08-12 12:43:15.087719' + creation_ts: 1534077795.08772 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-chardet?#bc10a725de0ebf632b9cd67735bb46c1c31df1ba + id: 746857 + name: python-chardet + nvr: python-chardet-3.0.4-7.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 16728 + package_name: python-chardet + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/python-chardet#bc10a725de0ebf632b9cd67735bb46c1c31df1ba + start_time: '2018-08-12 12:43:15.087719' + start_ts: 1534077795.08772 + state: 1 + task_id: 17786731 + version: 3.0.4 + volume_id: 9 + volume_name: rhel-8 +746941: + build_id: 746941 + cg_id: null + cg_name: null + completion_time: '2018-08-12 12:55:23.463853' + completion_ts: 1534078523.46385 + creation_event_id: 21106398 + creation_time: '2018-08-12 12:52:24.058563' + creation_ts: 1534078344.05856 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-decorator?#e80551f4e524f020d9b557eed072faba6e1970a8 + id: 746941 + name: python-decorator + nvr: python-decorator-4.2.1-2.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11011 + package_name: python-decorator + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/python-decorator#e80551f4e524f020d9b557eed072faba6e1970a8 + start_time: '2018-08-12 12:52:24.058563' + start_ts: 1534078344.05856 + state: 1 + task_id: 17786739 + version: 4.2.1 + volume_id: 9 + volume_name: rhel-8 +746949: + build_id: 746949 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:22:26.014249' + completion_ts: 1534083746.01425 + creation_event_id: 21106450 + creation_time: '2018-08-12 12:52:59.489932' + creation_ts: 1534078379.48993 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/keyutils?#1e1d1f7c7b63c45fb82fe791e56fa78739c07fdd + id: 746949 + name: keyutils + nvr: keyutils-1.5.10-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 1766 + package_name: keyutils + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/keyutils#1e1d1f7c7b63c45fb82fe791e56fa78739c07fdd + start_time: '2018-08-12 12:52:59.489932' + start_ts: 1534078379.48993 + state: 1 + task_id: 17785458 + version: 1.5.10 + volume_id: 9 + volume_name: rhel-8 +746975: + build_id: 746975 + cg_id: null + cg_name: null + completion_time: '2018-08-12 12:59:11.858327' + completion_ts: 1534078751.85833 + creation_event_id: 21106734 + creation_time: '2018-08-12 12:56:45.113042' + creation_ts: 1534078605.11304 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/langpacks?#3d878a90e1c0a1d62fcea7b63aa1fc389991ab4d + id: 746975 + name: langpacks + nvr: langpacks-1.0-12.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 66850 + package_name: langpacks + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/langpacks#3d878a90e1c0a1d62fcea7b63aa1fc389991ab4d + start_time: '2018-08-12 12:56:45.113042' + start_ts: 1534078605.11304 + state: 1 + task_id: 17785484 + version: '1.0' + volume_id: 9 + volume_name: rhel-8 +747009: + build_id: 747009 + cg_id: null + cg_name: null + completion_time: '2018-08-12 13:05:15.107515' + completion_ts: 1534079115.10752 + creation_event_id: 21106980 + creation_time: '2018-08-12 13:01:26.000775' + creation_ts: 1534078886.00078 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-dateutil?#e8441401ab6a860bcd370ffde42e9f605bb92e3d + id: 747009 + name: python-dateutil + nvr: python-dateutil-2.6.1-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 9692 + package_name: python-dateutil + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/python-dateutil#e8441401ab6a860bcd370ffde42e9f605bb92e3d + start_time: '2018-08-12 13:01:26.000775' + start_ts: 1534078886.00078 + state: 1 + task_id: 17786744 + version: 2.6.1 + volume_id: 9 + volume_name: rhel-8 +747020: + build_id: 747020 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:34:09.006942' + completion_ts: 1534084449.00694 + creation_event_id: 21107091 + creation_time: '2018-08-12 13:03:07.114456' + creation_ts: 1534078987.11446 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libassuan?#3de5b0bcfc1ed6c812fd4bb6e171584655be414a + id: 747020 + name: libassuan + nvr: libassuan-2.5.1-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11689 + package_name: libassuan + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libassuan#3de5b0bcfc1ed6c812fd4bb6e171584655be414a + start_time: '2018-08-12 13:03:07.114456' + start_ts: 1534078987.11446 + state: 1 + task_id: 17785514 + version: 2.5.1 + volume_id: 9 + volume_name: rhel-8 +747111: + build_id: 747111 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:08:57.071389' + completion_ts: 1534086537.07139 + creation_event_id: 21108028 + creation_time: '2018-08-12 13:22:41.029274' + creation_ts: 1534080161.02927 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libgpg-error?#ac00f435a46e5609f4a4504a87fed9edcd51f374 + id: 747111 + name: libgpg-error + nvr: libgpg-error-1.31-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 1923 + package_name: libgpg-error + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libgpg-error#ac00f435a46e5609f4a4504a87fed9edcd51f374 + start_time: '2018-08-12 13:22:41.029274' + start_ts: 1534080161.02927 + state: 1 + task_id: 17785598 + version: '1.31' + volume_id: 9 + volume_name: rhel-8 +747162: + build_id: 747162 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:33:56.497199' + completion_ts: 1534088036.4972 + creation_event_id: 21108620 + creation_time: '2018-08-12 13:34:13.974343' + creation_ts: 1534080853.97434 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmetalink?#9db18453d8f15058aa2ed53a91d96e95bc310122 + id: 747162 + name: libmetalink + nvr: libmetalink-0.1.3-7.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 54477 + package_name: libmetalink + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/libmetalink#9db18453d8f15058aa2ed53a91d96e95bc310122 + start_time: '2018-08-12 13:34:13.974343' + start_ts: 1534080853.97434 + state: 1 + task_id: 17785653 + version: 0.1.3 + volume_id: 9 + volume_name: rhel-8 +747165: + build_id: 747165 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:34:31.232025' + completion_ts: 1534088071.23202 + creation_event_id: 21108630 + creation_time: '2018-08-12 13:34:25.013399' + creation_ts: 1534080865.0134 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libksba?#5330764c41688700b0e275abd191571061788dd5 + id: 747165 + name: libksba + nvr: libksba-1.3.5-7.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11688 + package_name: libksba + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/libksba#5330764c41688700b0e275abd191571061788dd5 + start_time: '2018-08-12 13:34:25.013399' + start_ts: 1534080865.0134 + state: 1 + task_id: 17785638 + version: 1.3.5 + volume_id: 9 + volume_name: rhel-8 +747178: + build_id: 747178 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:37:48.337794' + completion_ts: 1534088268.33779 + creation_event_id: 21108883 + creation_time: '2018-08-12 13:40:41.604620' + creation_ts: 1534081241.60462 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmnl?#a5c8227fcb05868272b9df79acb750dae0029e2c + id: 747178 + name: libmnl + nvr: libmnl-1.0.4-6.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 34807 + package_name: libmnl + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/libmnl#a5c8227fcb05868272b9df79acb750dae0029e2c + start_time: '2018-08-12 13:40:41.604620' + start_ts: 1534081241.60462 + state: 1 + task_id: 17785659 + version: 1.0.4 + volume_id: 9 + volume_name: rhel-8 +747193: + build_id: 747193 + cg_id: null + cg_name: null + completion_time: '2018-08-12 13:45:27.752106' + completion_ts: 1534081527.75211 + creation_event_id: 21109056 + creation_time: '2018-08-12 13:43:50.972875' + creation_ts: 1534081430.97288 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-idna?#d8344b1f29b2a1cbbd3775ae8c7c796379b583a9 + id: 747193 + name: python-idna + nvr: python-idna-2.5-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 54340 + package_name: python-idna + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/python-idna#d8344b1f29b2a1cbbd3775ae8c7c796379b583a9 + start_time: '2018-08-12 13:43:50.972875' + start_ts: 1534081430.97288 + state: 1 + task_id: 17786771 + version: '2.5' + volume_id: 9 + volume_name: rhel-8 +747205: + build_id: 747205 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:45:38.275190' + completion_ts: 1534088738.27519 + creation_event_id: 21109127 + creation_time: '2018-08-12 13:44:53.599159' + creation_ts: 1534081493.59916 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libnsl2?#3aaef48927091509dfedb2a21bf8b81f460f89e1 + id: 747205 + name: libnsl2 + nvr: libnsl2-1.2.0-2.20180605git4a062cf.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 64980 + package_name: libnsl2 + release: 2.20180605git4a062cf.el8 + source: git://pkgs.devel.redhat.com/rpms/libnsl2#3aaef48927091509dfedb2a21bf8b81f460f89e1 + start_time: '2018-08-12 13:44:53.599159' + start_ts: 1534081493.59916 + state: 1 + task_id: 17785682 + version: 1.2.0 + volume_id: 9 + volume_name: rhel-8 +747226: + build_id: 747226 + cg_id: null + cg_name: null + completion_time: '2018-08-12 13:53:53.917553' + completion_ts: 1534082033.91755 + creation_event_id: 21109519 + creation_time: '2018-08-12 13:51:24.556297' + creation_ts: 1534081884.5563 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-iniparse?#a34eb76c56747a185d15c5fb7dd44ae5a66bfcf9 + id: 747226 + name: python-iniparse + nvr: python-iniparse-0.4-31.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 4343 + package_name: python-iniparse + release: 31.el8 + source: git://pkgs.devel.redhat.com/rpms/python-iniparse#a34eb76c56747a185d15c5fb7dd44ae5a66bfcf9 + start_time: '2018-08-12 13:51:24.556297' + start_ts: 1534081884.5563 + state: 1 + task_id: 17786777 + version: '0.4' + volume_id: 9 + volume_name: rhel-8 +747252: + build_id: 747252 + cg_id: null + cg_name: null + completion_time: '2018-08-12 14:11:42.730069' + completion_ts: 1534083102.73007 + creation_event_id: 21109997 + creation_time: '2018-08-12 13:59:49.662407' + creation_ts: 1534082389.66241 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/librtas?#5bd611030a1a6478c84dcfc7a0860fb100328113 + id: 747252 + name: librtas + nvr: librtas-2.0.2-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 1965 + package_name: librtas + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/librtas#5bd611030a1a6478c84dcfc7a0860fb100328113 + start_time: '2018-08-12 13:59:49.662407' + start_ts: 1534082389.66241 + state: 1 + task_id: 17785745 + version: 2.0.2 + volume_id: 9 + volume_name: rhel-8 +747270: + build_id: 747270 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:03:04.254933' + completion_ts: 1534089784.25493 + creation_event_id: 21110214 + creation_time: '2018-08-12 14:05:47.314542' + creation_ts: 1534082747.31454 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsigsegv?#67798a99164bf6a86104365323cdd1e96aa481ac + id: 747270 + name: libsigsegv + nvr: libsigsegv-2.11-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 14987 + package_name: libsigsegv + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libsigsegv#67798a99164bf6a86104365323cdd1e96aa481ac + start_time: '2018-08-12 14:05:47.314542' + start_ts: 1534082747.31454 + state: 1 + task_id: 17785757 + version: '2.11' + volume_id: 9 + volume_name: rhel-8 +747294: + build_id: 747294 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:11:01.829578' + completion_ts: 1534090261.82958 + creation_event_id: 21110510 + creation_time: '2018-08-12 14:13:26.044141' + creation_ts: 1534083206.04414 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libtasn1?#40055340ab66e9c05f1a56302a1a3e0cb25857c6 + id: 747294 + name: libtasn1 + nvr: libtasn1-4.13-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 4563 + package_name: libtasn1 + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libtasn1#40055340ab66e9c05f1a56302a1a3e0cb25857c6 + start_time: '2018-08-12 14:13:26.044141' + start_ts: 1534083206.04414 + state: 1 + task_id: 17785776 + version: '4.13' + volume_id: 9 + volume_name: rhel-8 +747306: + build_id: 747306 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:16:31.803475' + completion_ts: 1534090591.80347 + creation_event_id: 21110661 + creation_time: '2018-08-12 14:16:18.320642' + creation_ts: 1534083378.32064 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libverto?#c208df9dbddec8fb6bfc8ad0e57d10d183166ca0 + id: 747306 + name: libverto + nvr: libverto-0.3.0-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 35376 + package_name: libverto + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libverto#c208df9dbddec8fb6bfc8ad0e57d10d183166ca0 + start_time: '2018-08-12 14:16:18.320642' + start_ts: 1534083378.32064 + state: 1 + task_id: 17785799 + version: 0.3.0 + volume_id: 9 + volume_name: rhel-8 +747310: + build_id: 747310 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:11:54.794849' + completion_ts: 1534090314.79485 + creation_event_id: 21110692 + creation_time: '2018-08-12 14:17:03.061324' + creation_ts: 1534083423.06132 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libutempter?#e269bbe32b6035d279754a5ee33a9e017ab337b8 + id: 747310 + name: libutempter + nvr: libutempter-1.1.6-14.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 3387 + package_name: libutempter + release: 14.el8 + source: git://pkgs.devel.redhat.com/rpms/libutempter#e269bbe32b6035d279754a5ee33a9e017ab337b8 + start_time: '2018-08-12 14:17:03.061324' + start_ts: 1534083423.06132 + state: 1 + task_id: 17785792 + version: 1.1.6 + volume_id: 9 + volume_name: rhel-8 +747381: + build_id: 747381 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:39:51.161715' + completion_ts: 1534091991.16172 + creation_event_id: 21111660 + creation_time: '2018-08-12 14:42:59.063355' + creation_ts: 1534084979.06335 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libyaml?#23f1a0c7bf8a0013a158d71431038038f95ca6cb + id: 747381 + name: libyaml + nvr: libyaml-0.1.7-5.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 11185 + package_name: libyaml + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libyaml#23f1a0c7bf8a0013a158d71431038038f95ca6cb + start_time: '2018-08-12 14:42:59.063355' + start_ts: 1534084979.06335 + state: 1 + task_id: 17785867 + version: 0.1.7 + volume_id: 9 + volume_name: rhel-8 +747521: + build_id: 747521 + cg_id: null + cg_name: null + completion_time: '2018-08-12 17:11:36.446563' + completion_ts: 1534093896.44656 + creation_event_id: 21113326 + creation_time: '2018-08-12 15:20:19.465758' + creation_ts: 1534087219.46576 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/mpfr?#7f705032792f282cb684476c9da5bcdbeaca46de + id: 747521 + name: mpfr + nvr: mpfr-3.1.6-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 10903 + package_name: mpfr + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/mpfr#7f705032792f282cb684476c9da5bcdbeaca46de + start_time: '2018-08-12 15:20:19.465758' + start_ts: 1534087219.46576 + state: 1 + task_id: 17786018 + version: 3.1.6 + volume_id: 9 + volume_name: rhel-8 +747578: + build_id: 747578 + cg_id: null + cg_name: null + completion_time: '2018-08-12 15:37:01.933179' + completion_ts: 1534088221.93318 + creation_event_id: 21113914 + creation_time: '2018-08-12 15:34:27.314399' + creation_ts: 1534088067.3144 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-pysocks?#7d9d71368d52d8212cee62f3c27e446ec1ef4658 + id: 747578 + name: python-pysocks + nvr: python-pysocks-1.6.8-3.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 58390 + package_name: python-pysocks + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/python-pysocks#7d9d71368d52d8212cee62f3c27e446ec1ef4658 + start_time: '2018-08-12 15:34:27.314399' + start_ts: 1534088067.3144 + state: 1 + task_id: 17786832 + version: 1.6.8 + volume_id: 9 + volume_name: rhel-8 +747600: + build_id: 747600 + cg_id: null + cg_name: null + completion_time: '2018-08-12 17:17:16.796933' + completion_ts: 1534094236.79693 + creation_event_id: 21114185 + creation_time: '2018-08-12 15:40:13.596919' + creation_ts: 1534088413.59692 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/npth?#a4981bb31f79089dc8b3457db23d090cfec97e2a + id: 747600 + name: npth + nvr: npth-1.5-4.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 54480 + package_name: npth + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/npth#a4981bb31f79089dc8b3457db23d090cfec97e2a + start_time: '2018-08-12 15:40:13.596919' + start_ts: 1534088413.59692 + state: 1 + task_id: 17786095 + version: '1.5' + volume_id: 9 + volume_name: rhel-8 +747717: + build_id: 747717 + cg_id: null + cg_name: null + completion_time: '2018-08-12 16:23:13.233261' + completion_ts: 1534090993.23326 + creation_event_id: 21115734 + creation_time: '2018-08-12 16:21:22.754756' + creation_ts: 1534090882.75476 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-six?#b3661c255a5569db674adbb27e1ffa6cd35ba017 + id: 747717 + name: python-six + nvr: python-six-1.11.0-8.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 41053 + package_name: python-six + release: 8.el8 + source: git://pkgs.devel.redhat.com/rpms/python-six#b3661c255a5569db674adbb27e1ffa6cd35ba017 + start_time: '2018-08-12 16:21:22.754756' + start_ts: 1534090882.75476 + state: 1 + task_id: 17786856 + version: 1.11.0 + volume_id: 9 + volume_name: rhel-8 +748188: + build_id: 748188 + cg_id: null + cg_name: null + completion_time: '2018-08-12 17:24:18.931684' + completion_ts: 1534094658.93168 + creation_event_id: 21119932 + creation_time: '2018-08-12 17:22:42.041177' + creation_ts: 1534094562.04118 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/publicsuffix-list?#33aaa9362fba95857a515475feaff035f59b3384 + id: 748188 + name: publicsuffix-list + nvr: publicsuffix-list-20180723-1.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 59982 + package_name: publicsuffix-list + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/publicsuffix-list#33aaa9362fba95857a515475feaff035f59b3384 + start_time: '2018-08-12 17:22:42.041177' + start_ts: 1534094562.04118 + state: 1 + task_id: 17786703 + version: '20180723' + volume_id: 9 + volume_name: rhel-8 +748275: + build_id: 748275 + cg_id: null + cg_name: null + completion_time: '2018-08-12 19:24:46.240535' + completion_ts: 1534101886.24054 + creation_event_id: 21120932 + creation_time: '2018-08-12 17:46:49.567268' + creation_ts: 1534096009.56727 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/readline?#a73f0afebb2bcab9432598512ed4c166710381a4 + id: 748275 + name: readline + nvr: readline-7.0-10.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 2636 + package_name: readline + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/readline#a73f0afebb2bcab9432598512ed4c166710381a4 + start_time: '2018-08-12 17:46:49.567268' + start_ts: 1534096009.56727 + state: 1 + task_id: 17786949 + version: '7.0' + volume_id: 9 + volume_name: rhel-8 +748292: + build_id: 748292 + cg_id: null + cg_name: null + completion_time: '2018-08-12 17:53:42.725871' + completion_ts: 1534096422.72587 + creation_event_id: 21121118 + creation_time: '2018-08-12 17:52:02.639103' + creation_ts: 1534096322.6391 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rootfiles?#5a644f3b114add933d247f8c8f136c41e80dd0b2 + id: 748292 + name: rootfiles + nvr: rootfiles-8.1-22.el8 + owner_id: 1665 + owner_name: tdawson + package_id: 2926 + package_name: rootfiles + release: 22.el8 + source: git://pkgs.devel.redhat.com/rpms/rootfiles#5a644f3b114add933d247f8c8f136c41e80dd0b2 + start_time: '2018-08-12 17:52:02.639103' + start_ts: 1534096322.6391 + state: 1 + task_id: 17786974 + version: '8.1' + volume_id: 9 + volume_name: rhel-8 +753876: + build_id: 753876 + cg_id: null + cg_name: null + completion_time: '2018-08-17 20:50:29.069375' + completion_ts: 1534539029.06938 + creation_event_id: 21240930 + creation_time: '2018-08-17 20:44:58.677168' + creation_ts: 1534538698.67717 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libunistring#10c31f1b7221e427e7ae5925cd95860117eb0ccf + id: 753876 + name: libunistring + nvr: libunistring-0.9.9-3.el8 + owner_id: 1972 + owner_name: mfabian + package_id: 32931 + package_name: libunistring + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libunistring#10c31f1b7221e427e7ae5925cd95860117eb0ccf + start_time: '2018-08-17 20:44:58.677168' + start_ts: 1534538698.67717 + state: 1 + task_id: 17936032 + version: 0.9.9 + volume_id: 9 + volume_name: rhel-8 +761272: + build_id: 761272 + cg_id: null + cg_name: null + completion_time: '2018-09-03 10:23:16.385231' + completion_ts: 1535970196.38523 + creation_event_id: 21426191 + creation_time: '2018-09-03 10:15:29.365549' + creation_ts: 1535969729.36555 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pcre#72e01e347afd513a5c84669b0fd0c5661794ac19 + id: 761272 + name: pcre + nvr: pcre-8.42-4.el8 + owner_id: 1207 + owner_name: ppisar + package_id: 2369 + package_name: pcre + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/pcre#72e01e347afd513a5c84669b0fd0c5661794ac19 + start_time: '2018-09-03 10:15:29.365549' + start_ts: 1535969729.36555 + state: 1 + task_id: 18137329 + version: '8.42' + volume_id: 9 + volume_name: rhel-8 +774503: + build_id: 774503 + cg_id: null + cg_name: null + completion_time: '2018-09-28 10:22:12.525048' + completion_ts: 1538130132.52505 + creation_event_id: 21917849 + creation_time: '2018-09-28 10:18:54.435901' + creation_ts: 1538129934.4359 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gdbm#e60961ea5ba78ead745dc35d7982464b3fa8241a + id: 774503 + name: gdbm + nvr: gdbm-1.18-1.el8 + owner_id: 2769 + owner_name: mskalick + package_id: 527 + package_name: gdbm + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/gdbm#e60961ea5ba78ead745dc35d7982464b3fa8241a + start_time: '2018-09-28 10:18:54.435901' + start_ts: 1538129934.4359 + state: 1 + task_id: 18569332 + version: '1.18' + volume_id: 9 + volume_name: rhel-8 +782991: + build_id: 782991 + cg_id: null + cg_name: null + completion_time: '2018-10-16 14:03:23.716476' + completion_ts: 1539698603.71648 + creation_event_id: 22149041 + creation_time: '2018-10-16 13:59:22.133802' + creation_ts: 1539698362.1338 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/json-glib#9c5843980e980d2c8163e684ff2b81a7acf49bad + id: 782991 + name: json-glib + nvr: json-glib-1.4.4-1.el8 + owner_id: 3004 + owner_name: klember + package_id: 14701 + package_name: json-glib + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/json-glib#9c5843980e980d2c8163e684ff2b81a7acf49bad + start_time: '2018-10-16 13:59:22.133802' + start_ts: 1539698362.1338 + state: 1 + task_id: 18804462 + version: 1.4.4 + volume_id: 9 + volume_name: rhel-8 +791846: + build_id: 791846 + cg_id: null + cg_name: null + completion_time: '2018-10-31 19:53:34.465925' + completion_ts: 1541015614.46592 + creation_event_id: 22301407 + creation_time: '2018-10-31 19:49:35.977170' + creation_ts: 1541015375.97717 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/virt-what#5408dcbf81cf0d1ef8f1abfa594f90388061005f + id: 791846 + name: virt-what + nvr: virt-what-1.18-6.el8 + owner_id: 555 + owner_name: rjones + package_id: 30815 + package_name: virt-what + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/virt-what#5408dcbf81cf0d1ef8f1abfa594f90388061005f + start_time: '2018-10-31 19:49:35.977170' + start_ts: 1541015375.97717 + state: 1 + task_id: 19000461 + version: '1.18' + volume_id: 9 + volume_name: rhel-8 +794639: + build_id: 794639 + cg_id: null + cg_name: null + completion_time: '2018-11-05 14:26:15.487245' + completion_ts: 1541427975.48725 + creation_event_id: 22368087 + creation_time: '2018-11-05 14:18:25.126513' + creation_ts: 1541427505.12651 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/findutils#6f1548a04bb65985b57d417d8830c068b697dc8d + id: 794639 + name: findutils + nvr: findutils-4.6.0-20.el8 + owner_id: 889 + owner_name: kdudka + package_id: 465 + package_name: findutils + release: 20.el8 + source: git://pkgs.devel.redhat.com/rpms/findutils#6f1548a04bb65985b57d417d8830c068b697dc8d + start_time: '2018-11-05 14:18:25.126513' + start_ts: 1541427505.12651 + state: 1 + task_id: 19062924 + version: 4.6.0 + volume_id: 9 + volume_name: rhel-8 +800820: + build_id: 800820 + cg_id: null + cg_name: null + completion_time: '2018-11-15 10:01:21.188662' + completion_ts: 1542276081.18866 + creation_event_id: 22481185 + creation_time: '2018-11-15 09:59:48.797579' + creation_ts: 1542275988.79758 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-inotify#f57fac45551fa077aa273dab9780688212baef3d + id: 800820 + name: python-inotify + nvr: python-inotify-0.9.6-13.el8 + owner_id: 4437 + owner_name: mmarusak + package_id: 16764 + package_name: python-inotify + release: 13.el8 + source: git://pkgs.devel.redhat.com/rpms/python-inotify#f57fac45551fa077aa273dab9780688212baef3d + start_time: '2018-11-15 09:59:48.797579' + start_ts: 1542275988.79758 + state: 1 + task_id: 19189704 + version: 0.9.6 + volume_id: 9 + volume_name: rhel-8 +802356: + build_id: 802356 + cg_id: null + cg_name: null + completion_time: '2018-11-20 10:21:17.541313' + completion_ts: 1542709277.54131 + creation_event_id: 22504416 + creation_time: '2018-11-20 10:17:23.833064' + creation_ts: 1542709043.83306 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/usermode#e0c5902be7b68157d7b4b7861ec6d8dde29f23e8 + id: 802356 + name: usermode + nvr: usermode-1.113-1.el8 + owner_id: 4262 + owner_name: jkucera + package_id: 1201 + package_name: usermode + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/usermode#e0c5902be7b68157d7b4b7861ec6d8dde29f23e8 + start_time: '2018-11-20 10:17:23.833064' + start_ts: 1542709043.83306 + state: 1 + task_id: 19224307 + version: '1.113' + volume_id: 9 + volume_name: rhel-8 +803342: + build_id: 803342 + cg_id: null + cg_name: null + completion_time: '2018-11-22 14:10:28.869324' + completion_ts: 1542895828.86932 + creation_event_id: 22529207 + creation_time: '2018-11-22 14:07:12.750976' + creation_ts: 1542895632.75098 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/xz#6d2e8135582cdc986dad07f7131791bb52f1c3e4 + id: 803342 + name: xz + nvr: xz-5.2.4-3.el8 + owner_id: 1613 + owner_name: praiskup + package_id: 17973 + package_name: xz + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/xz#6d2e8135582cdc986dad07f7131791bb52f1c3e4 + start_time: '2018-11-22 14:07:12.750976' + start_ts: 1542895632.75098 + state: 1 + task_id: 19254961 + version: 5.2.4 + volume_id: 9 + volume_name: rhel-8 +804625: + build_id: 804625 + cg_id: null + cg_name: null + completion_time: '2018-11-26 15:33:41.411978' + completion_ts: 1543246421.41198 + creation_event_id: 22546128 + creation_time: '2018-11-26 15:30:28.312216' + creation_ts: 1543246228.31222 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cracklib#89e354f1cbadcb79257a8d0dbe802b3aa76196b5 + id: 804625 + name: cracklib + nvr: cracklib-2.9.6-15.el8 + owner_id: 118 + owner_name: tmraz + package_id: 299 + package_name: cracklib + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/cracklib#89e354f1cbadcb79257a8d0dbe802b3aa76196b5 + start_time: '2018-11-26 15:30:28.312216' + start_ts: 1543246228.31222 + state: 1 + task_id: 19280802 + version: 2.9.6 + volume_id: 9 + volume_name: rhel-8 +812275: + build_id: 812275 + cg_id: null + cg_name: null + completion_time: '2018-12-10 14:13:46.931799' + completion_ts: 1544451226.9318 + creation_event_id: 22776805 + creation_time: '2018-12-10 14:09:52.821324' + creation_ts: 1544450992.82132 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-ethtool#09b4f96cbd43bf2affc1963331e1662db1ecb919 + id: 812275 + name: python-ethtool + nvr: python-ethtool-0.14-3.el8 + owner_id: 3705 + owner_name: lbalhar + package_id: 4494 + package_name: python-ethtool + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/python-ethtool#09b4f96cbd43bf2affc1963331e1662db1ecb919 + start_time: '2018-12-10 14:09:52.821324' + start_ts: 1544450992.82132 + state: 1 + task_id: 19437546 + version: '0.14' + volume_id: 9 + volume_name: rhel-8 +829223: + build_id: 829223 + cg_id: null + cg_name: null + completion_time: '2019-01-16 13:08:30.340147' + completion_ts: 1547644110.34015 + creation_event_id: 23087255 + creation_time: '2019-01-16 13:00:55.009040' + creation_ts: 1547643655.00904 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ncurses#3a9407e31f9f866583b7775b9cbc994b5aa754bd + id: 829223 + name: ncurses + nvr: ncurses-6.1-7.20180224.el8 + owner_id: 172 + owner_name: mlichvar + package_id: 2238 + package_name: ncurses + release: 7.20180224.el8 + source: git://pkgs.devel.redhat.com/rpms/ncurses#3a9407e31f9f866583b7775b9cbc994b5aa754bd + start_time: '2019-01-16 13:00:55.009040' + start_ts: 1547643655.00904 + state: 1 + task_id: 19830598 + version: '6.1' + volume_id: 9 + volume_name: rhel-8 +893483: + build_id: 893483 + cg_id: null + cg_name: null + completion_time: '2019-05-08 09:56:39.081111' + completion_ts: 1557309399.08111 + creation_event_id: 24525155 + creation_time: '2019-05-08 09:55:08.411640' + creation_ts: 1557309308.41164 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-dmidecode#0000a651a46c5b2f01f1e9d33377c02174768c43 + id: 893483 + name: python-dmidecode + nvr: python-dmidecode-3.12.2-15.el8 + owner_id: 4214 + owner_name: lijiang + package_id: 11220 + package_name: python-dmidecode + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/python-dmidecode#0000a651a46c5b2f01f1e9d33377c02174768c43 + start_time: '2019-05-08 09:55:08.411640' + start_ts: 1557309308.41164 + state: 1 + task_id: 21564533 + version: 3.12.2 + volume_id: 9 + volume_name: rhel-8 +906174: + build_id: 906174 + cg_id: null + cg_name: null + completion_time: '2019-06-03 15:47:11.751637' + completion_ts: 1559576831.75164 + creation_event_id: 24912887 + creation_time: '2019-06-03 15:44:10.717077' + creation_ts: 1559576650.71708 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/lua#5cbfdee3d1907f553f0998853facb24e52016982 + id: 906174 + name: lua + nvr: lua-5.3.4-11.el8 + owner_id: 230 + owner_name: ffesti + package_id: 10836 + package_name: lua + release: 11.el8 + source: git://pkgs.devel.redhat.com/rpms/lua#5cbfdee3d1907f553f0998853facb24e52016982 + start_time: '2019-06-03 15:44:10.717077' + start_ts: 1559576650.71708 + state: 1 + task_id: 21962566 + version: 5.3.4 + volume_id: 9 + volume_name: rhel-8 +907679: + build_id: 907679 + cg_id: null + cg_name: null + completion_time: '2019-06-06 12:00:16.593984' + completion_ts: 1559822416.59398 + creation_event_id: 25010765 + creation_time: '2019-06-06 11:53:25.307384' + creation_ts: 1559822005.30738 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dbus-python#45e35d535a5cd8f48ab9394b495dbf673eb903cd + id: 907679 + name: dbus-python + nvr: dbus-python-1.2.4-15.el8 + owner_id: 1687 + owner_name: jboyer + package_id: 3371 + package_name: dbus-python + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/dbus-python#45e35d535a5cd8f48ab9394b495dbf673eb903cd + start_time: '2019-06-06 11:53:25.307384' + start_ts: 1559822005.30738 + state: 1 + task_id: 22041041 + version: 1.2.4 + volume_id: 9 + volume_name: rhel-8 +908277: + build_id: 908277 + cg_id: null + cg_name: null + completion_time: '2019-06-07 12:52:59.135102' + completion_ts: 1559911979.1351 + creation_event_id: 25028133 + creation_time: '2019-06-07 12:50:42.711481' + creation_ts: 1559911842.71148 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python36?#0107d5ea1b25775a09477c8be7605229a0a136bd + id: 908277 + name: python36 + nvr: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7 + owner_id: 4066 + owner_name: mbs + package_id: 67639 + package_name: python36 + release: 2.module+el8.1.0+3334+5cb623d7 + source: git://pkgs.devel.redhat.com/rpms/python36#0107d5ea1b25775a09477c8be7605229a0a136bd + start_time: '2019-06-07 12:50:42.711481' + start_ts: 1559911842.71148 + state: 1 + task_id: 22057214 + version: 3.6.8 + volume_id: 9 + volume_name: rhel-8 +909244: + build_id: 909244 + cg_id: null + cg_name: null + completion_time: '2019-06-10 10:27:43.028174' + completion_ts: 1560162463.02817 + creation_event_id: 25054431 + creation_time: '2019-06-10 10:23:05.764166' + creation_ts: 1560162185.76417 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libidn2#844711723d62e709fb16cc01b988468b226e9659 + id: 909244 + name: libidn2 + nvr: libidn2-2.2.0-1.el8 + owner_id: 172 + owner_name: mlichvar + package_id: 54476 + package_name: libidn2 + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libidn2#844711723d62e709fb16cc01b988468b226e9659 + start_time: '2019-06-10 10:23:05.764166' + start_ts: 1560162185.76417 + state: 1 + task_id: 22083916 + version: 2.2.0 + volume_id: 9 + volume_name: rhel-8 +911719: + build_id: 911719 + cg_id: null + cg_name: null + completion_time: '2019-06-14 08:48:36.844035' + completion_ts: 1560502116.84403 + creation_event_id: 25111640 + creation_time: '2019-06-14 08:37:52.154271' + creation_ts: 1560501472.15427 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gmp#4dc17181317221d892edd8c38de60467f6470d07 + id: 911719 + name: gmp + nvr: gmp-6.1.2-10.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 589 + package_name: gmp + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/gmp#4dc17181317221d892edd8c38de60467f6470d07 + start_time: '2019-06-14 08:37:52.154271' + start_ts: 1560501472.15427 + state: 1 + task_id: 22149338 + version: 6.1.2 + volume_id: 9 + volume_name: rhel-8 +919146: + build_id: 919146 + cg_id: null + cg_name: null + completion_time: '2019-06-26 19:20:43.090664' + completion_ts: 1561576843.09066 + creation_event_id: 25326462 + creation_time: '2019-06-26 19:11:16.627506' + creation_ts: 1561576276.62751 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libuser#5eebab5dfa0d39e3dd3890d45e682fce480ea006 + id: 919146 + name: libuser + nvr: libuser-0.62-23.el8 + owner_id: 510 + owner_name: jhrozek + package_id: 1987 + package_name: libuser + release: 23.el8 + source: git://pkgs.devel.redhat.com/rpms/libuser#5eebab5dfa0d39e3dd3890d45e682fce480ea006 + start_time: '2019-06-26 19:11:16.627506' + start_ts: 1561576276.62751 + state: 1 + task_id: 22374785 + version: '0.62' + volume_id: 9 + volume_name: rhel-8 +936936: + build_id: 936936 + cg_id: null + cg_name: null + completion_time: '2019-07-24 16:05:32.675439' + completion_ts: 1563984332.67544 + creation_event_id: 25687802 + creation_time: '2019-07-24 16:00:00.245179' + creation_ts: 1563984000.24518 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libtirpc#143bca6dbc5bd42050fd3e111c82015530a93eb4 + id: 936936 + name: libtirpc + nvr: libtirpc-1.1.4-4.el8 + owner_id: 150 + owner_name: steved + package_id: 3434 + package_name: libtirpc + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libtirpc#143bca6dbc5bd42050fd3e111c82015530a93eb4 + start_time: '2019-07-24 16:00:00.245179' + start_ts: 1563984000.24518 + state: 1 + task_id: 22767704 + version: 1.1.4 + volume_id: 9 + volume_name: rhel-8 +989775: + build_id: 989775 + cg_id: null + cg_name: null + completion_time: '2019-10-17 08:02:31.286600' + completion_ts: 1571299351.2866 + creation_event_id: 26818880 + creation_time: '2019-10-17 07:59:25.575231' + creation_ts: 1571299165.57523 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-requests#0698f7814c7835c323828c7e1aa90e768593077b + id: 989775 + name: python-requests + nvr: python-requests-2.20.0-2.1.el8_1 + owner_id: 3344 + owner_name: torsava + package_id: 33623 + package_name: python-requests + release: 2.1.el8_1 + source: git://pkgs.devel.redhat.com/rpms/python-requests#0698f7814c7835c323828c7e1aa90e768593077b + start_time: '2019-10-17 07:59:25.575231' + start_ts: 1571299165.57523 + state: 1 + task_id: 24110892 + version: 2.20.0 + volume_id: 9 + volume_name: rhel-8 +1003002: + build_id: 1003002 + cg_id: null + cg_name: null + completion_time: '2019-11-05 08:39:32.245771' + completion_ts: 1572943172.24577 + creation_event_id: 27119019 + creation_time: '2019-11-05 08:35:23.342872' + creation_ts: 1572942923.34287 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libcap-ng#be0aa33305de7a4b9f74302d747537888178229f + id: 1003002 + name: libcap-ng + nvr: libcap-ng-0.7.9-5.el8 + owner_id: 4293 + owner_name: mtamasko + package_id: 18016 + package_name: libcap-ng + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libcap-ng#be0aa33305de7a4b9f74302d747537888178229f + start_time: '2019-11-05 08:35:23.342872' + start_ts: 1572942923.34287 + state: 1 + task_id: 24455905 + version: 0.7.9 + volume_id: 9 + volume_name: rhel-8 +1013911: + build_id: 1013911 + cg_id: null + cg_name: null + completion_time: '2019-11-19 10:55:07.943336' + completion_ts: 1574160907.94334 + creation_event_id: 27382174 + creation_time: '2019-11-19 10:51:05.700563' + creation_ts: 1574160665.70056 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/which#cf53e48c5c92672744f3b24d4e52cb5014cef416 + id: 1013911 + name: which + nvr: which-2.21-12.el8 + owner_id: 67 + owner_name: than + package_id: 1146 + package_name: which + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/which#cf53e48c5c92672744f3b24d4e52cb5014cef416 + start_time: '2019-11-19 10:51:05.700563' + start_ts: 1574160665.70056 + state: 1 + task_id: 24801756 + version: '2.21' + volume_id: 9 + volume_name: rhel-8 +1014155: + build_id: 1014155 + cg_id: null + cg_name: null + completion_time: '2019-11-19 14:27:12.981518' + completion_ts: 1574173632.98152 + creation_event_id: 27433335 + creation_time: '2019-11-19 14:19:22.389985' + creation_ts: 1574173162.38999 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/diffutils#c4f2935585b7b1c45abf59a440cf0d815142412d + id: 1014155 + name: diffutils + nvr: diffutils-3.6-6.el8 + owner_id: 67 + owner_name: than + package_id: 356 + package_name: diffutils + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/diffutils#c4f2935585b7b1c45abf59a440cf0d815142412d + start_time: '2019-11-19 14:19:22.389985' + start_ts: 1574173162.38999 + state: 1 + task_id: 24825939 + version: '3.6' + volume_id: 9 + volume_name: rhel-8 +1020741: + build_id: 1020741 + cg_id: null + cg_name: null + completion_time: '2019-11-26 19:44:04.083845' + completion_ts: 1574797444.08384 + creation_event_id: 27562774 + creation_time: '2019-11-26 19:34:22.084826' + creation_ts: 1574796862.08483 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libnl3#149d8419697353dee2482e3bbdadacb8d4c30ab8 + id: 1020741 + name: libnl3 + nvr: libnl3-3.5.0-1.el8 + owner_id: 2354 + owner_name: thaller + package_id: 35441 + package_name: libnl3 + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libnl3#149d8419697353dee2482e3bbdadacb8d4c30ab8 + start_time: '2019-11-26 19:34:22.084826' + start_ts: 1574796862.08483 + state: 1 + task_id: 24972427 + version: 3.5.0 + volume_id: 9 + volume_name: rhel-8 +1025058: + build_id: 1025058 + cg_id: null + cg_name: null + completion_time: '2019-12-01 06:42:31.381703' + completion_ts: 1575182551.3817 + creation_event_id: 27630958 + creation_time: '2019-12-01 06:38:44.299844' + creation_ts: 1575182324.29984 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/socat#44d3115c3c618ba1c5faea85adcaf9bf84b82825 + id: 1025058 + name: socat + nvr: socat-1.7.3.3-2.el8 + owner_id: 2118 + owner_name: pwouters + package_id: 17221 + package_name: socat + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/socat#44d3115c3c618ba1c5faea85adcaf9bf84b82825 + start_time: '2019-12-01 06:38:44.299844' + start_ts: 1575182324.29984 + state: 1 + task_id: 25059933 + version: 1.7.3.3 + volume_id: 9 + volume_name: rhel-8 +1037354: + build_id: 1037354 + cg_id: null + cg_name: null + completion_time: '2019-12-13 18:43:13.265169' + completion_ts: 1576262593.26517 + creation_event_id: 27885611 + creation_time: '2019-12-13 18:39:21.549473' + creation_ts: 1576262361.54947 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/passwd#be05db5f2a0a043b0b12f06ca58b84387c73bdf4 + id: 1037354 + name: passwd + nvr: passwd-0.80-3.el8 + owner_id: 4262 + owner_name: jkucera + package_id: 2359 + package_name: passwd + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/passwd#be05db5f2a0a043b0b12f06ca58b84387c73bdf4 + start_time: '2019-12-13 18:39:21.549473' + start_ts: 1576262361.54947 + state: 1 + task_id: 25364321 + version: '0.80' + volume_id: 9 + volume_name: rhel-8 +1054304: + build_id: 1054304 + cg_id: null + cg_name: null + completion_time: '2020-01-08 16:54:00.010013' + completion_ts: 1578502440.01001 + creation_event_id: 28415791 + creation_time: '2020-01-08 16:49:15.232077' + creation_ts: 1578502155.23208 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/audit#18705603a57530fef869f81f1e677ea7e7a397e7 + id: 1054304 + name: audit + nvr: audit-3.0-0.17.20191104git1c2f876.el8 + owner_id: 117 + owner_name: sgrubb + package_id: 159 + package_name: audit + release: 0.17.20191104git1c2f876.el8 + source: git://pkgs.devel.redhat.com/rpms/audit#18705603a57530fef869f81f1e677ea7e7a397e7 + start_time: '2020-01-08 16:49:15.232077' + start_ts: 1578502155.23208 + state: 1 + task_id: 25670541 + version: '3.0' + volume_id: 9 + volume_name: rhel-8 +1054659: + build_id: 1054659 + cg_id: null + cg_name: null + completion_time: '2020-01-09 10:20:54.048176' + completion_ts: 1578565254.04818 + creation_event_id: 28422252 + creation_time: '2020-01-09 10:15:13.702952' + creation_ts: 1578564913.70295 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/texinfo#f70619ed3b9835ab3a476eb89c00c753384a31dc + id: 1054659 + name: texinfo + nvr: texinfo-6.5-6.el8 + owner_id: 502 + owner_name: vcrhonek + package_id: 1303 + package_name: texinfo + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/texinfo#f70619ed3b9835ab3a476eb89c00c753384a31dc + start_time: '2020-01-09 10:15:13.702952' + start_ts: 1578564913.70295 + state: 1 + task_id: 25678403 + version: '6.5' + volume_id: 9 + volume_name: rhel-8 +1147995: + build_id: 1147995 + cg_id: null + cg_name: null + completion_time: '2020-03-26 13:03:32.964368' + completion_ts: 1585227812.96437 + creation_event_id: 30360056 + creation_time: '2020-03-26 12:59:39.514315' + creation_ts: 1585227579.51431 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-setuptools#427ea974e8d8dec25bf3e3bdd65c37eeeff8a99e + id: 1147995 + name: python-setuptools + nvr: python-setuptools-39.2.0-6.el8 + owner_id: 3286 + owner_name: cstratak + package_id: 3226 + package_name: python-setuptools + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/python-setuptools#427ea974e8d8dec25bf3e3bdd65c37eeeff8a99e + start_time: '2020-03-26 12:59:39.514315' + start_ts: 1585227579.51431 + state: 1 + task_id: 27503294 + version: 39.2.0 + volume_id: 9 + volume_name: rhel-8 +1157209: + build_id: 1157209 + cg_id: null + cg_name: null + completion_time: '2020-04-03 11:14:28.869960' + completion_ts: 1585912468.86996 + creation_event_id: 30563219 + creation_time: '2020-04-03 11:00:45.434658' + creation_ts: 1585911645.43466 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/wget#554cfcca2dda86c49eed4be11fb911357d74abc8 + id: 1157209 + name: wget + nvr: wget-1.19.5-10.el8 + owner_id: 1900 + owner_name: thozza + package_id: 1147 + package_name: wget + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/wget#554cfcca2dda86c49eed4be11fb911357d74abc8 + start_time: '2020-04-03 11:00:45.434658' + start_ts: 1585911645.43466 + state: 1 + task_id: 27696577 + version: 1.19.5 + volume_id: 9 + volume_name: rhel-8 +1165793: + build_id: 1165793 + cg_id: null + cg_name: null + completion_time: '2020-04-14 12:19:27.782641' + completion_ts: 1586866767.78264 + creation_event_id: 30823996 + creation_time: '2020-04-14 12:10:24.443835' + creation_ts: 1586866224.44384 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/coreutils#4baab245c3fda3410c84eff776bbea8561c56e1e + id: 1165793 + name: coreutils + nvr: coreutils-8.30-8.el8 + owner_id: 889 + owner_name: kdudka + package_id: 294 + package_name: coreutils + release: 8.el8 + source: git://pkgs.devel.redhat.com/rpms/coreutils#4baab245c3fda3410c84eff776bbea8561c56e1e + start_time: '2020-04-14 12:10:24.443835' + start_ts: 1586866224.44384 + state: 1 + task_id: 27915058 + version: '8.30' + volume_id: 9 + volume_name: rhel-8 +1166694: + build_id: 1166694 + cg_id: null + cg_name: null + completion_time: '2020-04-15 09:43:27.571423' + completion_ts: 1586943807.57142 + creation_event_id: 30843063 + creation_time: '2020-04-15 09:41:49.904787' + creation_ts: 1586943709.90479 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/setup#e1ce54d3a8c72177b4bfce208870f507b21e56f9 + id: 1166694 + name: setup + nvr: setup-2.12.2-6.el8 + owner_id: 2110 + owner_name: pzhukov + package_id: 3006 + package_name: setup + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/setup#e1ce54d3a8c72177b4bfce208870f507b21e56f9 + start_time: '2020-04-15 09:41:49.904787' + start_ts: 1586943709.90479 + state: 1 + task_id: 27941114 + version: 2.12.2 + volume_id: 9 + volume_name: rhel-8 +1168710: + build_id: 1168710 + cg_id: null + cg_name: null + completion_time: '2020-04-17 07:50:07.511639' + completion_ts: 1587109807.51164 + creation_event_id: 30920639 + creation_time: '2020-04-17 07:42:24.644955' + creation_ts: 1587109344.64495 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/chkconfig#53ee67e595df3f2ab047b17e5f8da21cda83fe16 + id: 1168710 + name: chkconfig + nvr: chkconfig-1.13-2.el8 + owner_id: 4969 + owner_name: jamacku + package_id: 251 + package_name: chkconfig + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/chkconfig#53ee67e595df3f2ab047b17e5f8da21cda83fe16 + start_time: '2020-04-17 07:42:24.644955' + start_ts: 1587109344.64495 + state: 1 + task_id: 28006097 + version: '1.13' + volume_id: 9 + volume_name: rhel-8 +1172035: + build_id: 1172035 + cg_id: null + cg_name: null + completion_time: '2020-04-20 11:29:59.371259' + completion_ts: 1587382199.37126 + creation_event_id: 30997072 + creation_time: '2020-04-20 11:26:51.611900' + creation_ts: 1587382011.6119 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/lsof#6d2ecfc02bfac758043581543fffff77df26a5f1 + id: 1172035 + name: lsof + nvr: lsof-4.93.2-1.el8 + owner_id: 3430 + owner_name: jrybar + package_id: 2040 + package_name: lsof + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/lsof#6d2ecfc02bfac758043581543fffff77df26a5f1 + start_time: '2020-04-20 11:26:51.611900' + start_ts: 1587382011.6119 + state: 1 + task_id: 28065929 + version: 4.93.2 + volume_id: 9 + volume_name: rhel-8 +1175627: + build_id: 1175627 + cg_id: null + cg_name: null + completion_time: '2020-04-23 06:28:24.524952' + completion_ts: 1587623304.52495 + creation_event_id: 31077586 + creation_time: '2020-04-23 06:24:35.509740' + creation_ts: 1587623075.50974 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/filesystem#7c0cf9bff649b2c714ca6155dcfb7adaf6876e84 + id: 1175627 + name: filesystem + nvr: filesystem-3.8-3.el8 + owner_id: 2110 + owner_name: pzhukov + package_id: 463 + package_name: filesystem + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/filesystem#7c0cf9bff649b2c714ca6155dcfb7adaf6876e84 + start_time: '2020-04-23 06:24:35.509740' + start_ts: 1587623075.50974 + state: 1 + task_id: 28134908 + version: '3.8' + volume_id: 9 + volume_name: rhel-8 +1177309: + build_id: 1177309 + cg_id: null + cg_name: null + completion_time: '2020-04-24 15:32:00.725367' + completion_ts: 1587742320.72537 + creation_event_id: 31106025 + creation_time: '2020-04-24 15:27:27.719736' + creation_ts: 1587742047.71974 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/expat#8a586ebd7d27bd3e43ce1a63be713686b3fc1195 + id: 1177309 + name: expat + nvr: expat-2.2.5-4.el8 + owner_id: 113 + owner_name: jorton + package_id: 446 + package_name: expat + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/expat#8a586ebd7d27bd3e43ce1a63be713686b3fc1195 + start_time: '2020-04-24 15:27:27.719736' + start_ts: 1587742047.71974 + state: 1 + task_id: 28167275 + version: 2.2.5 + volume_id: 9 + volume_name: rhel-8 +1184235: + build_id: 1184235 + cg_id: null + cg_name: null + completion_time: '2020-05-04 16:38:55.899519' + completion_ts: 1588610335.89952 + creation_event_id: 31275935 + creation_time: '2020-05-04 16:31:46.220026' + creation_ts: 1588609906.22003 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gnupg2#db5b2a68a75a1ebf713564b974ff4e1158f539eb + id: 1184235 + name: gnupg2 + nvr: gnupg2-2.2.20-2.el8 + owner_id: 118 + owner_name: tmraz + package_id: 11685 + package_name: gnupg2 + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/gnupg2#db5b2a68a75a1ebf713564b974ff4e1158f539eb + start_time: '2020-05-04 16:31:46.220026' + start_ts: 1588609906.22003 + state: 1 + task_id: 28358990 + version: 2.2.20 + volume_id: 9 + volume_name: rhel-8 +1188151: + build_id: 1188151 + cg_id: null + cg_name: null + completion_time: '2020-05-07 17:44:02.769939' + completion_ts: 1588873442.76994 + creation_event_id: 31340664 + creation_time: '2020-05-07 17:34:57.540994' + creation_ts: 1588872897.54099 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cyrus-sasl#c0c907dee86d26e3a3a04cc5c7097ab4cf9bffaf + id: 1188151 + name: cyrus-sasl + nvr: cyrus-sasl-2.1.27-5.el8 + owner_id: 500 + owner_name: ssorce + package_id: 321 + package_name: cyrus-sasl + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/cyrus-sasl#c0c907dee86d26e3a3a04cc5c7097ab4cf9bffaf + start_time: '2020-05-07 17:34:57.540994' + start_ts: 1588872897.54099 + state: 1 + task_id: 28440565 + version: 2.1.27 + volume_id: 9 + volume_name: rhel-8 +1192639: + build_id: 1192639 + cg_id: null + cg_name: null + completion_time: '2020-05-13 18:44:38.136252' + completion_ts: 1589395478.13625 + creation_event_id: 31461780 + creation_time: '2020-05-13 18:40:33.735809' + creation_ts: 1589395233.73581 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libffi#2fa2de3fbfa5af6e65710811e9e24493da78b3f8 + id: 1192639 + name: libffi + nvr: libffi-3.1-22.el8 + owner_id: 665 + owner_name: dj + package_id: 1894 + package_name: libffi + release: 22.el8 + source: git://pkgs.devel.redhat.com/rpms/libffi#2fa2de3fbfa5af6e65710811e9e24493da78b3f8 + start_time: '2020-05-13 18:40:33.735809' + start_ts: 1589395233.73581 + state: 1 + task_id: 28562281 + version: '3.1' + volume_id: 9 + volume_name: rhel-8 +1197484: + build_id: 1197484 + cg_id: null + cg_name: null + completion_time: '2020-05-19 10:30:36.443429' + completion_ts: 1589884236.44343 + creation_event_id: 31568626 + creation_time: '2020-05-19 10:25:15.586164' + creation_ts: 1589883915.58616 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/sed#240d31e9fa458dbec445d5b401ccf5e3b61e7860 + id: 1197484 + name: sed + nvr: sed-4.5-2.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 2987 + package_name: sed + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/sed#240d31e9fa458dbec445d5b401ccf5e3b61e7860 + start_time: '2020-05-19 10:25:15.586164' + start_ts: 1589883915.58616 + state: 1 + task_id: 28675560 + version: '4.5' + volume_id: 9 + volume_name: rhel-8 +1199395: + build_id: 1199395 + cg_id: null + cg_name: null + completion_time: '2020-05-20 20:19:47.714044' + completion_ts: 1590005987.71404 + creation_event_id: 31610858 + creation_time: '2020-05-20 20:12:44.224013' + creation_ts: 1590005564.22401 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmodulemd#33d6c648f9f382edf5f5a5bd19064846a01fefba + id: 1199395 + name: libmodulemd + nvr: libmodulemd-2.9.4-2.el8 + owner_id: 1014 + owner_name: sgallagh + package_id: 66634 + package_name: libmodulemd + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libmodulemd#33d6c648f9f382edf5f5a5bd19064846a01fefba + start_time: '2020-05-20 20:12:44.224013' + start_ts: 1590005564.22401 + state: 1 + task_id: 28728246 + version: 2.9.4 + volume_id: 9 + volume_name: rhel-8 +1201127: + build_id: 1201127 + cg_id: null + cg_name: null + completion_time: '2020-05-22 11:47:01.135038' + completion_ts: 1590148021.13504 + creation_event_id: 31636603 + creation_time: '2020-05-22 11:43:37.897300' + creation_ts: 1590147817.8973 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libcap#a9adb530869e5daea60e6843b25ad9366ce1e461 + id: 1201127 + name: libcap + nvr: libcap-2.26-4.el8 + owner_id: 3737 + owner_name: jvymazal + package_id: 1879 + package_name: libcap + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libcap#a9adb530869e5daea60e6843b25ad9366ce1e461 + start_time: '2020-05-22 11:43:37.876637' + start_ts: 1590147817.87664 + state: 1 + task_id: 28755520 + version: '2.26' + volume_id: 9 + volume_name: rhel-8 +1207296: + build_id: 1207296 + cg_id: null + cg_name: null + completion_time: '2020-05-28 17:07:58.443299' + completion_ts: 1590685678.4433 + creation_event_id: 31753614 + creation_time: '2020-05-28 16:59:06.106200' + creation_ts: 1590685146.1062 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pcre2#883d23d3f0c3e873fd4cf0e8d312f7f88d65c922 + id: 1207296 + name: pcre2 + nvr: pcre2-10.32-2.el8 + owner_id: 1207 + owner_name: ppisar + package_id: 61793 + package_name: pcre2 + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/pcre2#883d23d3f0c3e873fd4cf0e8d312f7f88d65c922 + start_time: '2020-05-28 16:59:06.086978' + start_ts: 1590685146.08698 + state: 1 + task_id: 28891915 + version: '10.32' + volume_id: 9 + volume_name: rhel-8 +1213699: + build_id: 1213699 + cg_id: null + cg_name: null + completion_time: '2020-06-03 09:17:51.389797' + completion_ts: 1591175871.3898 + creation_event_id: 31910138 + creation_time: '2020-06-03 09:05:05.660670' + creation_ts: 1591175105.66067 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/vim#fdc3ac9d1ef5d34358fb91217d31697cb542cf7a + id: 1213699 + name: vim + nvr: vim-8.0.1763-15.el8 + owner_id: 3328 + owner_name: zdohnal + package_id: 1179 + package_name: vim + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/vim#fdc3ac9d1ef5d34358fb91217d31697cb542cf7a + start_time: '2020-06-03 09:05:05.655534' + start_ts: 1591175105.65553 + state: 1 + task_id: 29032476 + version: 8.0.1763 + volume_id: 9 + volume_name: rhel-8 +1215600: + build_id: 1215600 + cg_id: null + cg_name: null + completion_time: '2020-06-04 17:16:35.980679' + completion_ts: 1591290995.98068 + creation_event_id: 31947308 + creation_time: '2020-06-04 17:11:49.737302' + creation_ts: 1591290709.7373 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libpsl#752b285122bce7c00a05be51e81f253d6ee8c00a + id: 1215600 + name: libpsl + nvr: libpsl-0.20.2-6.el8 + owner_id: 889 + owner_name: kdudka + package_id: 59664 + package_name: libpsl + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/libpsl#752b285122bce7c00a05be51e81f253d6ee8c00a + start_time: '2020-06-04 17:11:49.731555' + start_ts: 1591290709.73155 + state: 1 + task_id: 29076641 + version: 0.20.2 + volume_id: 9 + volume_name: rhel-8 +1216822: + build_id: 1216822 + cg_id: null + cg_name: null + completion_time: '2020-06-05 09:26:22.557467' + completion_ts: 1591349182.55747 + creation_event_id: 31980500 + creation_time: '2020-06-05 09:19:41.200397' + creation_ts: 1591348781.2004 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/zstd#41d137254dabfa495e5585021335d646538846d8 + id: 1216822 + name: zstd + nvr: zstd-1.4.4-1.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 63328 + package_name: zstd + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/zstd#41d137254dabfa495e5585021335d646538846d8 + start_time: '2020-06-05 09:19:41.186356' + start_ts: 1591348781.18636 + state: 1 + task_id: 29104995 + version: 1.4.4 + volume_id: 9 + volume_name: rhel-8 +1220066: + build_id: 1220066 + cg_id: null + cg_name: null + completion_time: '2020-06-08 10:37:16.749987' + completion_ts: 1591612636.74999 + creation_event_id: 32047437 + creation_time: '2020-06-08 09:39:57.016657' + creation_ts: 1591609197.01666 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/e2fsprogs#d1d411f01b969d28a07c0f6116572ede4a293147 + id: 1220066 + name: e2fsprogs + nvr: e2fsprogs-1.45.6-1.el8 + owner_id: 1304 + owner_name: lczerner + package_id: 395 + package_name: e2fsprogs + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/e2fsprogs#d1d411f01b969d28a07c0f6116572ede4a293147 + start_time: '2020-06-08 09:39:56.956868' + start_ts: 1591609196.95687 + state: 1 + task_id: 29165228 + version: 1.45.6 + volume_id: 9 + volume_name: rhel-8 +1221242: + build_id: 1221242 + cg_id: null + cg_name: null + completion_time: '2020-06-09 08:49:27.280149' + completion_ts: 1591692567.28015 + creation_event_id: 32106194 + creation_time: '2020-06-09 08:44:36.982270' + creation_ts: 1591692276.98227 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libmaxminddb#859e23b7d126fb01c87498e423c42d48e1b8cee1 + id: 1221242 + name: libmaxminddb + nvr: libmaxminddb-1.2.0-10.el8 + owner_id: 3573 + owner_name: mruprich + package_id: 69923 + package_name: libmaxminddb + release: 10.el8 + source: git://pkgs.devel.redhat.com/rpms/libmaxminddb#859e23b7d126fb01c87498e423c42d48e1b8cee1 + start_time: '2020-06-09 08:44:36.966792' + start_ts: 1591692276.96679 + state: 1 + task_id: 29204790 + version: 1.2.0 + volume_id: 9 + volume_name: rhel-8 +1221598: + build_id: 1221598 + cg_id: null + cg_name: null + completion_time: '2020-06-09 11:39:15.562387' + completion_ts: 1591702755.56239 + creation_event_id: 32123679 + creation_time: '2020-06-09 11:28:03.068684' + creation_ts: 1591702083.06868 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nghttp2#eea201c136d170f4497695a3bfa4ce716780d2ea + id: 1221598 + name: nghttp2 + nvr: nghttp2-1.33.0-3.el8_2.1 + owner_id: 889 + owner_name: kdudka + package_id: 54911 + package_name: nghttp2 + release: 3.el8_2.1 + source: git://pkgs.devel.redhat.com/rpms/nghttp2#eea201c136d170f4497695a3bfa4ce716780d2ea + start_time: '2020-06-09 11:28:03.019533' + start_ts: 1591702083.01953 + state: 1 + task_id: 29212718 + version: 1.33.0 + volume_id: 9 + volume_name: rhel-8 +1224593: + build_id: 1224593 + cg_id: null + cg_name: null + completion_time: '2020-06-11 20:05:24.883890' + completion_ts: 1591905924.88389 + creation_event_id: 32259719 + creation_time: '2020-06-11 19:59:07.755955' + creation_ts: 1591905547.75595 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pygobject3#53477796225e557d49a99871db8dcf8728f900b6 + id: 1224593 + name: pygobject3 + nvr: pygobject3-3.28.3-2.el8 + owner_id: 61 + owner_name: rstrode + package_id: 34038 + package_name: pygobject3 + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/pygobject3#53477796225e557d49a99871db8dcf8728f900b6 + start_time: '2020-06-11 19:59:07.721206' + start_ts: 1591905547.72121 + state: 1 + task_id: 29336571 + version: 3.28.3 + volume_id: 9 + volume_name: rhel-8 +1225800: + build_id: 1225800 + cg_id: null + cg_name: null + completion_time: '2020-06-15 16:27:31.342045' + completion_ts: 1592238451.34205 + creation_event_id: 32326633 + creation_time: '2020-06-15 16:19:40.180879' + creation_ts: 1592237980.18088 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libgcrypt#87f3355e783bc163915dfee59b7d8f51b370b339 + id: 1225800 + name: libgcrypt + nvr: libgcrypt-1.8.5-4.el8 + owner_id: 118 + owner_name: tmraz + package_id: 1904 + package_name: libgcrypt + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libgcrypt#87f3355e783bc163915dfee59b7d8f51b370b339 + start_time: '2020-06-15 16:19:40.176100' + start_ts: 1592237980.1761 + state: 1 + task_id: 29402410 + version: 1.8.5 + volume_id: 9 + volume_name: rhel-8 +1229781: + build_id: 1229781 + cg_id: null + cg_name: null + completion_time: '2020-06-19 10:32:11.223455' + completion_ts: 1592562731.22345 + creation_event_id: 32545449 + creation_time: '2020-06-19 10:13:38.679219' + creation_ts: 1592561618.67922 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/tar#cdd5b9f08090db9739f730ef2b8389d4a8df7dfb + id: 1229781 + name: tar + nvr: tar-1.30-5.el8 + owner_id: 4932 + owner_name: odubaj + package_id: 3151 + package_name: tar + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/tar#cdd5b9f08090db9739f730ef2b8389d4a8df7dfb + start_time: '2020-06-19 10:13:38.673642' + start_ts: 1592561618.67364 + state: 1 + task_id: 29547629 + version: '1.30' + volume_id: 9 + volume_name: rhel-8 +1234030: + build_id: 1234030 + cg_id: null + cg_name: null + completion_time: '2020-06-22 23:19:38.583148' + completion_ts: 1592867978.58315 + creation_event_id: 32609334 + creation_time: '2020-06-22 23:18:07.421725' + creation_ts: 1592867887.42173 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ca-certificates#08eaaed43b44f1cf81d1d3ff73133f69d2fc1f38 + id: 1234030 + name: ca-certificates + nvr: ca-certificates-2020.2.41-80.0.el8_2 + owner_id: 360 + owner_name: rrelyea + package_id: 11840 + package_name: ca-certificates + release: 80.0.el8_2 + source: git://pkgs.devel.redhat.com/rpms/ca-certificates#08eaaed43b44f1cf81d1d3ff73133f69d2fc1f38 + start_time: '2020-06-22 23:18:07.416595' + start_ts: 1592867887.41659 + state: 1 + task_id: 29618121 + version: 2020.2.41 + volume_id: 9 + volume_name: rhel-8 +1237213: + build_id: 1237213 + cg_id: null + cg_name: null + completion_time: '2020-06-25 14:22:16.664270' + completion_ts: 1593094936.66427 + creation_event_id: 32663242 + creation_time: '2020-06-25 14:07:37.871224' + creation_ts: 1593094057.87122 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libssh#a81cda4aa0c730dcc426de8ceebd961670e2d3af + id: 1237213 + name: libssh + nvr: libssh-0.9.4-2.el8 + owner_id: 4150 + owner_name: ansasaki + package_id: 33952 + package_name: libssh + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libssh#a81cda4aa0c730dcc426de8ceebd961670e2d3af + start_time: '2020-06-25 14:07:37.864731' + start_ts: 1593094057.86473 + state: 1 + task_id: 29685939 + version: 0.9.4 + volume_id: 9 + volume_name: rhel-8 +1286148: + build_id: 1286148 + cg_id: null + cg_name: null + completion_time: '2020-08-12 14:34:14.997549' + completion_ts: 1597242854.99755 + creation_event_id: 33648373 + creation_time: '2020-08-12 14:31:02.399050' + creation_ts: 1597242662.39905 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libusbx#ca5dec750fe81d6a60c442ecbffb1bde77a86d94 + id: 1286148 + name: libusbx + nvr: libusbx-1.0.23-4.el8 + owner_id: 3238 + owner_name: vtosodec + package_id: 36467 + package_name: libusbx + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/libusbx#ca5dec750fe81d6a60c442ecbffb1bde77a86d94 + start_time: '2020-08-12 14:31:02.392819' + start_ts: 1597242662.39282 + state: 1 + task_id: 30721770 + version: 1.0.23 + volume_id: 9 + volume_name: rhel-8 +1290417: + build_id: 1290417 + cg_id: null + cg_name: null + completion_time: '2020-08-19 06:48:46.550598' + completion_ts: 1597819726.5506 + creation_event_id: 33751900 + creation_time: '2020-08-19 06:37:14.064441' + creation_ts: 1597819034.06444 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libreport#cd702428f310bfec7ef6fb24f959a8ba3d1e7a99 + id: 1290417 + name: libreport + nvr: libreport-2.9.5-15.el8 + owner_id: 4797 + owner_name: ekulik + package_id: 32834 + package_name: libreport + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/libreport#cd702428f310bfec7ef6fb24f959a8ba3d1e7a99 + start_time: '2020-08-19 06:37:14.060331' + start_ts: 1597819034.06033 + state: 1 + task_id: 30816496 + version: 2.9.5 + volume_id: 9 + volume_name: rhel-8 +1334981: + build_id: 1334981 + cg_id: null + cg_name: null + completion_time: '2020-09-30 00:21:26.728041' + completion_ts: 1601425286.72804 + creation_event_id: 34707588 + creation_time: '2020-09-29 20:21:17.715392' + creation_ts: 1601410877.71539 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gcc#8b8dbee58106c1b73a08e8a91cd2f4f401e4dd15 + id: 1334981 + name: gcc + nvr: gcc-8.4.1-1.el8 + owner_id: 1497 + owner_name: mpolacek + package_id: 517 + package_name: gcc + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/gcc#8b8dbee58106c1b73a08e8a91cd2f4f401e4dd15 + start_time: '2020-09-29 20:21:17.711629' + start_ts: 1601410877.71163 + state: 1 + task_id: 31615248 + version: 8.4.1 + volume_id: 9 + volume_name: rhel-8 +1335853: + build_id: 1335853 + cg_id: null + cg_name: null + completion_time: '2020-09-30 10:25:55.332614' + completion_ts: 1601461555.33261 + creation_event_id: 34720247 + creation_time: '2020-09-30 10:11:41.821247' + creation_ts: 1601460701.82125 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libarchive#84a8f604ce571b3698f3322f0383f4b818c472ca + id: 1335853 + name: libarchive + nvr: libarchive-3.3.3-1.el8 + owner_id: 4932 + owner_name: odubaj + package_id: 12084 + package_name: libarchive + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libarchive#84a8f604ce571b3698f3322f0383f4b818c472ca + start_time: '2020-09-30 10:11:41.818030' + start_ts: 1601460701.81803 + state: 1 + task_id: 31634303 + version: 3.3.3 + volume_id: 9 + volume_name: rhel-8 +1337704: + build_id: 1337704 + cg_id: null + cg_name: null + completion_time: '2020-10-01 16:27:04.163015' + completion_ts: 1601569624.16301 + creation_event_id: 34750702 + creation_time: '2020-10-01 16:09:28.733223' + creation_ts: 1601568568.73322 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/brotli#1c0ee161fd58068d9081ef1f9825adc72e88500b + id: 1337704 + name: brotli + nvr: brotli-1.0.6-3.el8 + owner_id: 2247 + owner_name: erathke + package_id: 67794 + package_name: brotli + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/brotli#1c0ee161fd58068d9081ef1f9825adc72e88500b + start_time: '2020-10-01 16:09:28.729507' + start_ts: 1601568568.72951 + state: 1 + task_id: 31688078 + version: 1.0.6 + volume_id: 9 + volume_name: rhel-8 +1360527: + build_id: 1360527 + cg_id: null + cg_name: null + completion_time: '2020-10-21 09:54:10.426015' + completion_ts: 1603274050.42601 + creation_event_id: 35195605 + creation_time: '2020-10-21 09:48:50.102242' + creation_ts: 1603273730.10224 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libselinux#d0a79ace0fcde3fb0fe43a8820eb388704c4bafb + id: 1360527 + name: libselinux + nvr: libselinux-2.9-5.el8 + owner_id: 3775 + owner_name: vmojzis + package_id: 1968 + package_name: libselinux + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libselinux#d0a79ace0fcde3fb0fe43a8820eb388704c4bafb + start_time: '2020-10-21 09:48:50.098524' + start_ts: 1603273730.09852 + state: 1 + task_id: 32252659 + version: '2.9' + volume_id: 9 + volume_name: rhel-8 +1364758: + build_id: 1364758 + cg_id: null + cg_name: null + completion_time: '2020-10-26 13:14:10.389231' + completion_ts: 1603718050.38923 + creation_event_id: 35274639 + creation_time: '2020-10-26 13:07:59.894691' + creation_ts: 1603717679.89469 + epoch: 2 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/shadow-utils#00e92f722fdd6cec58227696ecc40e957e09d2ae + id: 1364758 + name: shadow-utils + nvr: shadow-utils-4.6-12.el8 + owner_id: 5361 + owner_name: ipedrosa + package_id: 3014 + package_name: shadow-utils + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/shadow-utils#00e92f722fdd6cec58227696ecc40e957e09d2ae + start_time: '2020-10-26 13:07:59.891490' + start_ts: 1603717679.89149 + state: 1 + task_id: 32416211 + version: '4.6' + volume_id: 9 + volume_name: rhel-8 +1366387: + build_id: 1366387 + cg_id: null + cg_name: null + completion_time: '2020-10-27 08:54:51.812744' + completion_ts: 1603788891.81274 + creation_event_id: 35290050 + creation_time: '2020-10-27 08:48:02.330320' + creation_ts: 1603788482.33032 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/zlib#d393f921436401f7b30f4cfb29bf7c4998cc49df + id: 1366387 + name: zlib + nvr: zlib-1.2.11-17.el8 + owner_id: 4932 + owner_name: odubaj + package_id: 558 + package_name: zlib + release: 17.el8 + source: git://pkgs.devel.redhat.com/rpms/zlib#d393f921436401f7b30f4cfb29bf7c4998cc49df + start_time: '2020-10-27 08:48:02.302262' + start_ts: 1603788482.30226 + state: 1 + task_id: 32456883 + version: 1.2.11 + volume_id: 9 + volume_name: rhel-8 +1374200: + build_id: 1374200 + cg_id: null + cg_name: null + completion_time: '2020-11-02 15:26:16.890714' + completion_ts: 1604330776.89071 + creation_event_id: 35442772 + creation_time: '2020-11-02 15:23:05.969998' + creation_ts: 1604330585.97 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pciutils#d060686d3b588a7aade75a36b5adb75980963ad2 + id: 1374200 + name: pciutils + nvr: pciutils-3.7.0-1.el8 + owner_id: 746 + owner_name: mhlavink + package_id: 2366 + package_name: pciutils + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/pciutils#d060686d3b588a7aade75a36b5adb75980963ad2 + start_time: '2020-11-02 15:23:05.965475' + start_ts: 1604330585.96548 + state: 1 + task_id: 32737176 + version: 3.7.0 + volume_id: 9 + volume_name: rhel-8 +1378172: + build_id: 1378172 + cg_id: null + cg_name: null + completion_time: '2020-11-05 15:27:59.307483' + completion_ts: 1604590079.30748 + creation_event_id: 35529717 + creation_time: '2020-11-05 15:13:05.507792' + creation_ts: 1604589185.50779 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/pam#4cee47851bcbf235fcd9802532cdc5b06ffdf9cd + id: 1378172 + name: pam + nvr: pam-1.3.1-14.el8 + owner_id: 5361 + owner_name: ipedrosa + package_id: 2346 + package_name: pam + release: 14.el8 + source: git://pkgs.devel.redhat.com/rpms/pam#4cee47851bcbf235fcd9802532cdc5b06ffdf9cd + start_time: '2020-11-05 15:13:05.502248' + start_ts: 1604589185.50225 + state: 1 + task_id: 32890512 + version: 1.3.1 + volume_id: 9 + volume_name: rhel-8 +1380689: + build_id: 1380689 + cg_id: null + cg_name: null + completion_time: '2020-11-09 17:22:25.231753' + completion_ts: 1604942545.23175 + creation_event_id: 35596123 + creation_time: '2020-11-09 17:20:04.727623' + creation_ts: 1604942404.72762 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-urllib3#0b1830c33ef40cacf0f51d8846e3cb4bde424766 + id: 1380689 + name: python-urllib3 + nvr: python-urllib3-1.24.2-5.el8 + owner_id: 3286 + owner_name: cstratak + package_id: 41051 + package_name: python-urllib3 + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/python-urllib3#0b1830c33ef40cacf0f51d8846e3cb4bde424766 + start_time: '2020-11-09 17:20:04.702284' + start_ts: 1604942404.70228 + state: 1 + task_id: 32981671 + version: 1.24.2 + volume_id: 9 + volume_name: rhel-8 +1389452: + build_id: 1389452 + cg_id: null + cg_name: null + completion_time: '2020-11-20 18:08:30.749499' + completion_ts: 1605895710.7495 + creation_event_id: 35751472 + creation_time: '2020-11-20 18:03:49.133273' + creation_ts: 1605895429.13327 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/tpm2-tss#ae9a7b37402c1e3b75dd2bddfb3b495294cf0197 + id: 1389452 + name: tpm2-tss + nvr: tpm2-tss-2.3.2-3.el8 + owner_id: 2698 + owner_name: jsnitsel + package_id: 61807 + package_name: tpm2-tss + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/tpm2-tss#ae9a7b37402c1e3b75dd2bddfb3b495294cf0197 + start_time: '2020-11-20 18:03:49.129148' + start_ts: 1605895429.12915 + state: 1 + task_id: 33189327 + version: 2.3.2 + volume_id: 9 + volume_name: rhel-8 +1397463: + build_id: 1397463 + cg_id: null + cg_name: null + completion_time: '2020-12-01 14:22:47.854695' + completion_ts: 1606832567.8547 + creation_event_id: 35933105 + creation_time: '2020-12-01 14:00:27.235925' + creation_ts: 1606831227.23592 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/sqlite#662a0a380806095e01673bcec1a4e7f9edce676f + id: 1397463 + name: sqlite + nvr: sqlite-3.26.0-13.el8 + owner_id: 4932 + owner_name: odubaj + package_id: 3060 + package_name: sqlite + release: 13.el8 + source: git://pkgs.devel.redhat.com/rpms/sqlite#662a0a380806095e01673bcec1a4e7f9edce676f + start_time: '2020-12-01 14:00:27.191538' + start_ts: 1606831227.19154 + state: 1 + task_id: 33410864 + version: 3.26.0 + volume_id: 9 + volume_name: rhel-8 +1397548: + build_id: 1397548 + cg_id: null + cg_name: null + completion_time: '2020-12-01 16:27:41.737017' + completion_ts: 1606840061.73702 + creation_event_id: 35936192 + creation_time: '2020-12-01 16:23:09.769626' + creation_ts: 1606839789.76963 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/procps-ng#9962caeb9791fb12757360b5e00828a0e93a8e89 + id: 1397548 + name: procps-ng + nvr: procps-ng-3.3.15-6.el8 + owner_id: 3430 + owner_name: jrybar + package_id: 36198 + package_name: procps-ng + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/procps-ng#9962caeb9791fb12757360b5e00828a0e93a8e89 + start_time: '2020-12-01 16:23:09.765062' + start_ts: 1606839789.76506 + state: 1 + task_id: 33417732 + version: 3.3.15 + volume_id: 9 + volume_name: rhel-8 +1399757: + build_id: 1399757 + cg_id: null + cg_name: null + completion_time: '2020-12-03 11:50:32.467102' + completion_ts: 1606996232.4671 + creation_event_id: 35966854 + creation_time: '2020-12-03 11:39:14.054588' + creation_ts: 1606995554.05459 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libdb#8717bfe6169a46bfcec5e65e17809f26c8aed7af + id: 1399757 + name: libdb + nvr: libdb-5.3.28-40.el8 + owner_id: 4932 + owner_name: odubaj + package_id: 33932 + package_name: libdb + release: 40.el8 + source: git://pkgs.devel.redhat.com/rpms/libdb#8717bfe6169a46bfcec5e65e17809f26c8aed7af + start_time: '2020-12-03 11:39:14.048302' + start_ts: 1606995554.0483 + state: 1 + task_id: 33461014 + version: 5.3.28 + volume_id: 9 + volume_name: rhel-8 +1399824: + build_id: 1399824 + cg_id: null + cg_name: null + completion_time: '2020-12-03 12:21:31.141746' + completion_ts: 1606998091.14175 + creation_event_id: 35967593 + creation_time: '2020-12-03 12:11:16.993122' + creation_ts: 1606997476.99312 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gawk#faa14eb18c14ef1a43ab2eb1e5b2b56ee92e1547 + id: 1399824 + name: gawk + nvr: gawk-4.2.1-2.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 516 + package_name: gawk + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/gawk#faa14eb18c14ef1a43ab2eb1e5b2b56ee92e1547 + start_time: '2020-12-03 12:11:16.986877' + start_ts: 1606997476.98688 + state: 1 + task_id: 33462304 + version: 4.2.1 + volume_id: 9 + volume_name: rhel-8 +1410760: + build_id: 1410760 + cg_id: null + cg_name: null + completion_time: '2020-12-10 03:12:27.982399' + completion_ts: 1607569947.9824 + creation_event_id: 36154674 + creation_time: '2020-12-10 03:10:49.326038' + creation_ts: 1607569849.32604 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dmidecode#5edb51cabe6f5056adacd84ac37bad35fa9512ff + id: 1410760 + name: dmidecode + nvr: dmidecode-3.2-8.el8 + owner_id: 4214 + owner_name: lijiang + package_id: 366 + package_name: dmidecode + release: 8.el8 + source: git://pkgs.devel.redhat.com/rpms/dmidecode#5edb51cabe6f5056adacd84ac37bad35fa9512ff + start_time: '2020-12-10 03:10:49.319947' + start_ts: 1607569849.31995 + state: 1 + task_id: 33628891 + version: '3.2' + volume_id: 9 + volume_name: rhel-8 +1412741: + build_id: 1412741 + cg_id: null + cg_name: null + completion_time: '2020-12-12 02:57:04.865218' + completion_ts: 1607741824.86522 + creation_event_id: 36203691 + creation_time: '2020-12-12 02:42:29.359230' + creation_ts: 1607740949.35923 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gdb#5918bab7267adffac488745ee7970fe855837dce + id: 1412741 + name: gdb + nvr: gdb-8.2-15.el8 + owner_id: 146 + owner_name: keiths + package_id: 526 + package_name: gdb + release: 15.el8 + source: git://pkgs.devel.redhat.com/rpms/gdb#5918bab7267adffac488745ee7970fe855837dce + start_time: '2020-12-12 02:42:29.351780' + start_ts: 1607740949.35178 + state: 1 + task_id: 33691660 + version: '8.2' + volume_id: 9 + volume_name: rhel-8 +1416620: + build_id: 1416620 + cg_id: null + cg_name: null + completion_time: '2020-12-15 10:11:36.533911' + completion_ts: 1608027096.53391 + creation_event_id: 36242750 + creation_time: '2020-12-15 10:05:49.874670' + creation_ts: 1608026749.87467 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/librepo#8907bca4369588b7112aef9b868fafc37a220025 + id: 1416620 + name: librepo + nvr: librepo-1.12.0-3.el8 + owner_id: 4410 + owner_name: mblaha + package_id: 49263 + package_name: librepo + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/librepo#8907bca4369588b7112aef9b868fafc37a220025 + start_time: '2020-12-15 10:05:49.857962' + start_ts: 1608026749.85796 + state: 1 + task_id: 33746487 + version: 1.12.0 + volume_id: 9 + volume_name: rhel-8 +1419017: + build_id: 1419017 + cg_id: null + cg_name: null + completion_time: '2020-12-16 18:06:30.899134' + completion_ts: 1608141990.89913 + creation_event_id: 36279850 + creation_time: '2020-12-16 17:45:58.635682' + creation_ts: 1608140758.63568 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/krb5#7abc81559d6414aee36f3b6f035df28198643eec + id: 1419017 + name: krb5 + nvr: krb5-1.18.2-8.el8 + owner_id: 2717 + owner_name: rharwood + package_id: 1793 + package_name: krb5 + release: 8.el8 + source: git://pkgs.devel.redhat.com/rpms/krb5#7abc81559d6414aee36f3b6f035df28198643eec + start_time: '2020-12-16 17:45:58.529935' + start_ts: 1608140758.52993 + state: 1 + task_id: 33796689 + version: 1.18.2 + volume_id: 9 + volume_name: rhel-8 +1420642: + build_id: 1420642 + cg_id: null + cg_name: null + completion_time: '2020-12-17 12:53:13.424415' + completion_ts: 1608209593.42442 + creation_event_id: 36307241 + creation_time: '2020-12-17 12:45:12.296502' + creation_ts: 1608209112.2965 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/elfutils#73ccdc951fee0d506177d895d249ef75dfd8a283 + id: 1420642 + name: elfutils + nvr: elfutils-0.182-3.el8 + owner_id: 395 + owner_name: mwielaar + package_id: 420 + package_name: elfutils + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/elfutils#73ccdc951fee0d506177d895d249ef75dfd8a283 + start_time: '2020-12-17 12:45:12.060111' + start_ts: 1608209112.06011 + state: 1 + task_id: 33819891 + version: '0.182' + volume_id: 9 + volume_name: rhel-8 +1421942: + build_id: 1421942 + cg_id: null + cg_name: null + completion_time: '2020-12-18 06:41:10.367971' + completion_ts: 1608273670.36797 + creation_event_id: 36318247 + creation_time: '2020-12-18 06:36:34.147472' + creation_ts: 1608273394.14747 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rsync#cb7e5a599cc10c8e7a0da30d45e2737ae9d17781 + id: 1421942 + name: rsync + nvr: rsync-3.1.3-12.el8 + owner_id: 3573 + owner_name: mruprich + package_id: 2941 + package_name: rsync + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/rsync#cb7e5a599cc10c8e7a0da30d45e2737ae9d17781 + start_time: '2020-12-18 06:36:34.052827' + start_ts: 1608273394.05283 + state: 1 + task_id: 33841144 + version: 3.1.3 + volume_id: 9 + volume_name: rhel-8 +1441861: + build_id: 1441861 + cg_id: null + cg_name: null + completion_time: '2021-01-04 11:43:07.335715' + completion_ts: 1609760587.33572 + creation_event_id: 36476628 + creation_time: '2021-01-04 11:36:38.661474' + creation_ts: 1609760198.66147 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gpgme#383c7aef4eb4b098c7494e42020052d5d2db418d + id: 1441861 + name: gpgme + nvr: gpgme-1.13.1-7.el8 + owner_id: 4262 + owner_name: jkucera + package_id: 4527 + package_name: gpgme + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/gpgme#383c7aef4eb4b098c7494e42020052d5d2db418d + start_time: '2021-01-04 11:36:38.623596' + start_ts: 1609760198.6236 + state: 1 + task_id: 34032760 + version: 1.13.1 + volume_id: 9 + volume_name: rhel-8 +1446215: + build_id: 1446215 + cg_id: null + cg_name: null + completion_time: '2021-01-06 12:39:38.352243' + completion_ts: 1609936778.35224 + creation_event_id: 36558158 + creation_time: '2021-01-06 12:36:21.713333' + creation_ts: 1609936581.71333 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/librhsm#9036432438dda92a768177ec4545cfceda312fa3 + id: 1446215 + name: librhsm + nvr: librhsm-0.0.3-4.el8 + owner_id: 4410 + owner_name: mblaha + package_id: 61543 + package_name: librhsm + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/librhsm#9036432438dda92a768177ec4545cfceda312fa3 + start_time: '2021-01-06 12:36:21.680685' + start_ts: 1609936581.68069 + state: 1 + task_id: 34098445 + version: 0.0.3 + volume_id: 9 + volume_name: rhel-8 +1446322: + build_id: 1446322 + cg_id: null + cg_name: null + completion_time: '2021-01-06 14:07:00.851927' + completion_ts: 1609942020.85193 + creation_event_id: 36560058 + creation_time: '2021-01-06 14:05:25.905127' + creation_ts: 1609941925.90513 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-ply#13c839c62a399cd2399143992de93eb55d5fddbf + id: 1446322 + name: python-ply + nvr: python-ply-3.9-9.el8 + owner_id: 3048 + owner_name: cheimes + package_id: 16804 + package_name: python-ply + release: 9.el8 + source: git://pkgs.devel.redhat.com/rpms/python-ply#13c839c62a399cd2399143992de93eb55d5fddbf + start_time: '2021-01-06 14:05:25.851546' + start_ts: 1609941925.85155 + state: 1 + task_id: 34099703 + version: '3.9' + volume_id: 9 + volume_name: rhel-8 +1446652: + build_id: 1446652 + cg_id: null + cg_name: null + completion_time: '2021-01-06 17:19:33.790688' + completion_ts: 1609953573.79069 + creation_event_id: 36566987 + creation_time: '2021-01-06 17:14:34.830868' + creation_ts: 1609953274.83087 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/fstrm#8c34b476f3a9702e9b612cd95804afc5ce06ca72 + id: 1446652 + name: fstrm + nvr: fstrm-0.6.0-3.el8.1 + owner_id: 3655 + owner_name: pemensik + package_id: 77498 + package_name: fstrm + release: 3.el8.1 + source: git://pkgs.devel.redhat.com/rpms/fstrm#8c34b476f3a9702e9b612cd95804afc5ce06ca72 + start_time: '2021-01-06 17:14:34.824012' + start_ts: 1609953274.82401 + state: 1 + task_id: 34103674 + version: 0.6.0 + volume_id: 9 + volume_name: rhel-8 +1447539: + build_id: 1447539 + cg_id: null + cg_name: null + completion_time: '2021-01-07 11:06:22.084826' + completion_ts: 1610017582.08483 + creation_event_id: 36576559 + creation_time: '2021-01-07 11:03:22.772967' + creation_ts: 1610017402.77297 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/popt#63b1c8ea59d934997b71b3970a8581528a6e40bf + id: 1447539 + name: popt + nvr: popt-1.18-1.el8 + owner_id: 537 + owner_name: pmatilai + package_id: 2525 + package_name: popt + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/popt#63b1c8ea59d934997b71b3970a8581528a6e40bf + start_time: '2021-01-07 11:03:22.724670' + start_ts: 1610017402.72467 + state: 1 + task_id: 34118303 + version: '1.18' + volume_id: 9 + volume_name: rhel-8 +1449200: + build_id: 1449200 + cg_id: null + cg_name: null + completion_time: '2021-01-08 10:59:42.640682' + completion_ts: 1610103582.64068 + creation_event_id: 36590629 + creation_time: '2021-01-08 10:57:21.043452' + creation_ts: 1610103441.04345 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python-pip#e28abc34ae1c3309c5bc37d169a77b382deaa376 + id: 1449200 + name: python-pip + nvr: python-pip-9.0.3-19.el8 + owner_id: 3705 + owner_name: lbalhar + package_id: 34258 + package_name: python-pip + release: 19.el8 + source: git://pkgs.devel.redhat.com/rpms/python-pip#e28abc34ae1c3309c5bc37d169a77b382deaa376 + start_time: '2021-01-08 10:57:21.036696' + start_ts: 1610103441.0367 + state: 1 + task_id: 34140209 + version: 9.0.3 + volume_id: 9 + volume_name: rhel-8 +1449225: + build_id: 1449225 + cg_id: null + cg_name: null + completion_time: '2021-01-08 11:29:24.459670' + completion_ts: 1610105364.45967 + creation_event_id: 36591114 + creation_time: '2021-01-08 11:25:22.716972' + creation_ts: 1610105122.71697 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/kmod#cc419f40db03fa17ce729f831a679657f7a6e996 + id: 1449225 + name: kmod + nvr: kmod-25-17.el8 + owner_id: 3579 + owner_name: ykaliuta + package_id: 35350 + package_name: kmod + release: 17.el8 + source: git://pkgs.devel.redhat.com/rpms/kmod#cc419f40db03fa17ce729f831a679657f7a6e996 + start_time: '2021-01-08 11:25:22.710240' + start_ts: 1610105122.71024 + state: 1 + task_id: 34140599 + version: '25' + volume_id: 9 + volume_name: rhel-8 +1449855: + build_id: 1449855 + cg_id: null + cg_name: null + completion_time: '2021-01-08 17:15:23.090999' + completion_ts: 1610126123.091 + creation_event_id: 36611782 + creation_time: '2021-01-08 17:12:01.906838' + creation_ts: 1610125921.90684 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsepol#24175e0aa569dffad49262186406ef6fb469a36b + id: 1449855 + name: libsepol + nvr: libsepol-2.9-2.el8 + owner_id: 3775 + owner_name: vmojzis + package_id: 1970 + package_name: libsepol + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libsepol#24175e0aa569dffad49262186406ef6fb469a36b + start_time: '2021-01-08 17:12:01.874650' + start_ts: 1610125921.87465 + state: 1 + task_id: 34147749 + version: '2.9' + volume_id: 9 + volume_name: rhel-8 +1453279: + build_id: 1453279 + cg_id: null + cg_name: null + completion_time: '2021-01-11 13:58:52.160978' + completion_ts: 1610373532.16098 + creation_event_id: 36639562 + creation_time: '2021-01-11 13:54:03.975043' + creation_ts: 1610373243.97504 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/p11-kit#0c8b48a11122293fefbc43a65c1be9bb7818ad49 + id: 1453279 + name: p11-kit + nvr: p11-kit-0.23.22-1.el8 + owner_id: 1285 + owner_name: dueno + package_id: 33978 + package_name: p11-kit + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/p11-kit#0c8b48a11122293fefbc43a65c1be9bb7818ad49 + start_time: '2021-01-11 13:54:03.967840' + start_ts: 1610373243.96784 + state: 1 + task_id: 34185446 + version: 0.23.22 + volume_id: 9 + volume_name: rhel-8 +1454801: + build_id: 1454801 + cg_id: null + cg_name: null + completion_time: '2021-01-12 09:57:30.322813' + completion_ts: 1610445450.32281 + creation_event_id: 36652890 + creation_time: '2021-01-12 09:52:51.543210' + creation_ts: 1610445171.54321 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gzip#2d7e87992607a67b1ad96db8a12925212c5f0655 + id: 1454801 + name: gzip + nvr: gzip-1.9-12.el8 + owner_id: 3340 + owner_name: jamartis + package_id: 851 + package_name: gzip + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/gzip#2d7e87992607a67b1ad96db8a12925212c5f0655 + start_time: '2021-01-12 09:52:51.526169' + start_ts: 1610445171.52617 + state: 1 + task_id: 34206962 + version: '1.9' + volume_id: 9 + volume_name: rhel-8 +1460531: + build_id: 1460531 + cg_id: null + cg_name: null + completion_time: '2021-01-15 11:25:45.102434' + completion_ts: 1610709945.10243 + creation_event_id: 36743981 + creation_time: '2021-01-15 11:19:46.568332' + creation_ts: 1610709586.56833 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsolv#eda39344511208e6e90800b758d69800050f34f5 + id: 1460531 + name: libsolv + nvr: libsolv-0.7.16-2.el8 + owner_id: 5503 + owner_name: nsella + package_id: 46512 + package_name: libsolv + release: 2.el8 + source: git://pkgs.devel.redhat.com/rpms/libsolv#eda39344511208e6e90800b758d69800050f34f5 + start_time: '2021-01-15 11:19:46.559440' + start_ts: 1610709586.55944 + state: 1 + task_id: 34290856 + version: 0.7.16 + volume_id: 9 + volume_name: rhel-8 +1460547: + build_id: 1460547 + cg_id: null + cg_name: null + completion_time: '2021-01-15 11:42:05.647677' + completion_ts: 1610710925.64768 + creation_event_id: 36744135 + creation_time: '2021-01-15 11:36:37.619327' + creation_ts: 1610710597.61933 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libcomps#e7940a4e7370ad64147746863ef8769fb2e3a2dc + id: 1460547 + name: libcomps + nvr: libcomps-0.1.11-5.el8 + owner_id: 5503 + owner_name: nsella + package_id: 49510 + package_name: libcomps + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libcomps#e7940a4e7370ad64147746863ef8769fb2e3a2dc + start_time: '2021-01-15 11:36:37.508646' + start_ts: 1610710597.50865 + state: 1 + task_id: 34291084 + version: 0.1.11 + volume_id: 9 + volume_name: rhel-8 +1465270: + build_id: 1465270 + cg_id: null + cg_name: null + completion_time: '2021-01-19 09:45:38.703938' + completion_ts: 1611049538.70394 + creation_event_id: 36790695 + creation_time: '2021-01-19 09:41:17.073064' + creation_ts: 1611049277.07306 + epoch: 14 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libpcap#deaa9c0a61150c6be089c2c35a2560c7af8ecb0f + id: 1465270 + name: libpcap + nvr: libpcap-1.9.1-5.el8 + owner_id: 3573 + owner_name: mruprich + package_id: 1953 + package_name: libpcap + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/libpcap#deaa9c0a61150c6be089c2c35a2560c7af8ecb0f + start_time: '2021-01-19 09:41:17.065493' + start_ts: 1611049277.06549 + state: 1 + task_id: 34357844 + version: 1.9.1 + volume_id: 9 + volume_name: rhel-8 +1465282: + build_id: 1465282 + cg_id: null + cg_name: null + completion_time: '2021-01-19 09:56:09.396365' + completion_ts: 1611050169.39636 + creation_event_id: 36790858 + creation_time: '2021-01-19 09:49:46.125794' + creation_ts: 1611049786.12579 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/util-linux#8135cbb40c14e0ab2a68a32391216d5aa216f2c1 + id: 1465282 + name: util-linux + nvr: util-linux-2.32.1-27.el8 + owner_id: 148 + owner_name: kzak + package_id: 1197 + package_name: util-linux + release: 27.el8 + source: git://pkgs.devel.redhat.com/rpms/util-linux#8135cbb40c14e0ab2a68a32391216d5aa216f2c1 + start_time: '2021-01-19 09:49:46.095307' + start_ts: 1611049786.09531 + state: 1 + task_id: 34358042 + version: 2.32.1 + volume_id: 9 + volume_name: rhel-8 +1473607: + build_id: 1473607 + cg_id: null + cg_name: null + completion_time: '2021-01-25 16:31:55.129287' + completion_ts: 1611592315.12929 + creation_event_id: 36903833 + creation_time: '2021-01-25 16:28:55.385468' + creation_ts: 1611592135.38547 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/tzdata#6c957bbd5068cc19b01658b1e8a8f664c929f96b + id: 1473607 + name: tzdata + nvr: tzdata-2021a-1.el8 + owner_id: 1849 + owner_name: pfrankli + package_id: 1228 + package_name: tzdata + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/tzdata#6c957bbd5068cc19b01658b1e8a8f664c929f96b + start_time: '2021-01-25 16:28:55.359733' + start_ts: 1611592135.35973 + state: 1 + task_id: 34499125 + version: 2021a + volume_id: 9 + volume_name: rhel-8 +1476759: + build_id: 1476759 + cg_id: null + cg_name: null + completion_time: '2021-01-27 11:54:52.706672' + completion_ts: 1611748492.70667 + creation_event_id: 36961019 + creation_time: '2021-01-27 11:48:28.795077' + creation_ts: 1611748108.79508 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/iptables#9256ac2eeae54b0683faa03acfd9c70ec4a5527c + id: 1476759 + name: iptables + nvr: iptables-1.8.4-17.el8 + owner_id: 3021 + owner_name: psutter + package_id: 912 + package_name: iptables + release: 17.el8 + source: git://pkgs.devel.redhat.com/rpms/iptables#9256ac2eeae54b0683faa03acfd9c70ec4a5527c + start_time: '2021-01-27 11:48:28.783767' + start_ts: 1611748108.78377 + state: 1 + task_id: 34553295 + version: 1.8.4 + volume_id: 9 + volume_name: rhel-8 +1479079: + build_id: 1479079 + cg_id: null + cg_name: null + completion_time: '2021-01-29 16:53:10.186657' + completion_ts: 1611939190.18666 + creation_event_id: 37010296 + creation_time: '2021-01-29 16:25:28.236029' + creation_ts: 1611937528.23603 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/curl#2007787e348366296c4a41ff31f2cdfcc162f104 + id: 1479079 + name: curl + nvr: curl-7.61.1-18.el8 + owner_id: 889 + owner_name: kdudka + package_id: 317 + package_name: curl + release: 18.el8 + source: git://pkgs.devel.redhat.com/rpms/curl#2007787e348366296c4a41ff31f2cdfcc162f104 + start_time: '2021-01-29 16:25:28.164774' + start_ts: 1611937528.16477 + state: 1 + task_id: 34613445 + version: 7.61.1 + volume_id: 9 + volume_name: rhel-8 +1479677: + build_id: 1479677 + cg_id: null + cg_name: null + completion_time: '2021-01-29 04:12:38.994899' + completion_ts: 1611893558.9949 + creation_event_id: 37001117 + creation_time: '2021-01-29 04:07:09.834862' + creation_ts: 1611893229.83486 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rdma-core#0b57141a99179ff811630c6019de43d134c40547 + id: 1479677 + name: rdma-core + nvr: rdma-core-32.0-4.el8 + owner_id: 1864 + owner_name: honli + package_id: 61658 + package_name: rdma-core + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/rdma-core#0b57141a99179ff811630c6019de43d134c40547 + start_time: '2021-01-29 04:07:09.827114' + start_ts: 1611893229.82711 + state: 1 + task_id: 34602425 + version: '32.0' + volume_id: 9 + volume_name: rhel-8 +1480523: + build_id: 1480523 + cg_id: null + cg_name: null + completion_time: '2021-01-29 16:24:25.477678' + completion_ts: 1611937465.47768 + creation_event_id: 37010242 + creation_time: '2021-01-29 16:21:05.954792' + creation_ts: 1611937265.95479 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/file#629a8f659a4248bafc1ca32e0f7a2c0653045f3b + id: 1480523 + name: file + nvr: file-5.33-16.el8_3.1 + owner_id: 5393 + owner_name: vmihalko + package_id: 461 + package_name: file + release: 16.el8_3.1 + source: git://pkgs.devel.redhat.com/rpms/file#629a8f659a4248bafc1ca32e0f7a2c0653045f3b + start_time: '2021-01-29 16:21:05.916473' + start_ts: 1611937265.91647 + state: 1 + task_id: 34613348 + version: '5.33' + volume_id: 9 + volume_name: rhel-8 +1483913: + build_id: 1483913 + cg_id: null + cg_name: null + completion_time: '2021-02-01 18:52:53.966715' + completion_ts: 1612205573.96672 + creation_event_id: 37047283 + creation_time: '2021-02-01 18:47:52.166672' + creation_ts: 1612205272.16667 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libsemanage#02837b9e403facefc3b16fca38368ea712bc3ae8 + id: 1483913 + name: libsemanage + nvr: libsemanage-2.9-6.el8 + owner_id: 830 + owner_name: plautrba + package_id: 1969 + package_name: libsemanage + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/libsemanage#02837b9e403facefc3b16fca38368ea712bc3ae8 + start_time: '2021-02-01 18:47:52.134767' + start_ts: 1612205272.13477 + state: 1 + task_id: 34657477 + version: '2.9' + volume_id: 9 + volume_name: rhel-8 +1487216: + build_id: 1487216 + cg_id: null + cg_name: null + completion_time: '2021-02-03 13:56:52.067591' + completion_ts: 1612360612.06759 + creation_event_id: 37100388 + creation_time: '2021-02-03 13:51:18.731669' + creation_ts: 1612360278.73167 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/protobuf-c#3d19b62f289344c10f8e0f6bbde99030f09bfbe1 + id: 1487216 + name: protobuf-c + nvr: protobuf-c-1.3.0-6.el8 + owner_id: 3655 + owner_name: pemensik + package_id: 51740 + package_name: protobuf-c + release: 6.el8 + source: git://pkgs.devel.redhat.com/rpms/protobuf-c#3d19b62f289344c10f8e0f6bbde99030f09bfbe1 + start_time: '2021-02-03 13:51:18.716342' + start_ts: 1612360278.71634 + state: 1 + task_id: 34709866 + version: 1.3.0 + volume_id: 9 + volume_name: rhel-8 +1487471: + build_id: 1487471 + cg_id: null + cg_name: null + completion_time: '2021-02-03 16:56:19.545659' + completion_ts: 1612371379.54566 + creation_event_id: 37104107 + creation_time: '2021-02-03 16:51:14.612819' + creation_ts: 1612371074.61282 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/json-c#090abf73dd48ab4fbdc6a73407ea1e787d65e778 + id: 1487471 + name: json-c + nvr: json-c-0.13.1-0.4.el8 + owner_id: 3655 + owner_name: pemensik + package_id: 35466 + package_name: json-c + release: 0.4.el8 + source: git://pkgs.devel.redhat.com/rpms/json-c#090abf73dd48ab4fbdc6a73407ea1e787d65e778 + start_time: '2021-02-03 16:51:14.600887' + start_ts: 1612371074.60089 + state: 1 + task_id: 34714482 + version: 0.13.1 + volume_id: 9 + volume_name: rhel-8 +1495269: + build_id: 1495269 + cg_id: null + cg_name: null + completion_time: '2021-02-08 11:34:51.083447' + completion_ts: 1612784091.08345 + creation_event_id: 37204765 + creation_time: '2021-02-08 11:33:18.301800' + creation_ts: 1612783998.3018 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/hwdata#4a773954c091ddf39441304f3d6619099f3ea99f + id: 1495269 + name: hwdata + nvr: hwdata-0.314-8.8.el8 + owner_id: 502 + owner_name: vcrhonek + package_id: 879 + package_name: hwdata + release: 8.8.el8 + source: git://pkgs.devel.redhat.com/rpms/hwdata#4a773954c091ddf39441304f3d6619099f3ea99f + start_time: '2021-02-08 11:33:18.294667' + start_ts: 1612783998.29467 + state: 1 + task_id: 34819848 + version: '0.314' + volume_id: 9 + volume_name: rhel-8 +1500241: + build_id: 1500241 + cg_id: null + cg_name: null + completion_time: '2021-02-11 17:17:34.664917' + completion_ts: 1613063854.66492 + creation_event_id: 37281553 + creation_time: '2021-02-11 17:14:19.227790' + creation_ts: 1613063659.22779 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/crypto-policies#f081a2999a117e367f383e9041086d7307ce2811 + id: 1500241 + name: crypto-policies + nvr: crypto-policies-20210209-1.gitbfb6bed.el8_3 + owner_id: 5079 + owner_name: asosedki + package_id: 54430 + package_name: crypto-policies + release: 1.gitbfb6bed.el8_3 + source: git://pkgs.devel.redhat.com/rpms/crypto-policies#f081a2999a117e367f383e9041086d7307ce2811 + start_time: '2021-02-11 17:14:19.217782' + start_ts: 1613063659.21778 + state: 1 + task_id: 34898082 + version: '20210209' + volume_id: 9 + volume_name: rhel-8 +1507689: + build_id: 1507689 + cg_id: null + cg_name: null + completion_time: '2021-02-18 16:26:33.315918' + completion_ts: 1613665593.31592 + creation_event_id: 37391783 + creation_time: '2021-02-18 16:22:45.439103' + creation_ts: 1613665365.4391 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/cryptsetup#14c84f57c07c12494595951d8d499a40eaf1c3be + id: 1507689 + name: cryptsetup + nvr: cryptsetup-2.3.3-4.el8 + owner_id: 2012 + owner_name: okozina + package_id: 311 + package_name: cryptsetup + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/cryptsetup#14c84f57c07c12494595951d8d499a40eaf1c3be + start_time: '2021-02-18 16:22:45.366038' + start_ts: 1613665365.36604 + state: 1 + task_id: 35017179 + version: 2.3.3 + volume_id: 9 + volume_name: rhel-8 +1508952: + build_id: 1508952 + cg_id: null + cg_name: null + completion_time: '2021-02-19 10:46:23.737790' + completion_ts: 1613731583.73779 + creation_event_id: 37411922 + creation_time: '2021-02-19 10:40:57.344866' + creation_ts: 1613731257.34487 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libseccomp#815c1a3025fc9e48846eef3e966e6b035df536ec + id: 1508952 + name: libseccomp + nvr: libseccomp-2.5.1-1.el8 + owner_id: 3112 + owner_name: rsroka + package_id: 37539 + package_name: libseccomp + release: 1.el8 + source: git://pkgs.devel.redhat.com/rpms/libseccomp#815c1a3025fc9e48846eef3e966e6b035df536ec + start_time: '2021-02-19 10:40:57.338312' + start_ts: 1613731257.33831 + state: 1 + task_id: 35033564 + version: 2.5.1 + volume_id: 9 + volume_name: rhel-8 +1509562: + build_id: 1509562 + cg_id: null + cg_name: null + completion_time: '2021-02-19 16:49:43.091014' + completion_ts: 1613753383.09101 + creation_event_id: 37421515 + creation_time: '2021-02-19 16:43:07.089072' + creation_ts: 1613752987.08907 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/ima-evm-utils#14ff723c10237225d71585ee05524248b63a05e2 + id: 1509562 + name: ima-evm-utils + nvr: ima-evm-utils-1.3.2-12.el8 + owner_id: 3895 + owner_name: brdeoliv + package_id: 59574 + package_name: ima-evm-utils + release: 12.el8 + source: git://pkgs.devel.redhat.com/rpms/ima-evm-utils#14ff723c10237225d71585ee05524248b63a05e2 + start_time: '2021-02-19 16:43:07.039449' + start_ts: 1613752987.03945 + state: 1 + task_id: 35043586 + version: 1.3.2 + volume_id: 9 + volume_name: rhel-8 +1513957: + build_id: 1513957 + cg_id: null + cg_name: null + completion_time: '2021-02-22 14:57:18.655365' + completion_ts: 1614005838.65536 + creation_event_id: 37475682 + creation_time: '2021-02-22 14:51:50.470724' + creation_ts: 1614005510.47072 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libpwquality#32c8c111a806d667c1e5484816cc94650f16c740 + id: 1513957 + name: libpwquality + nvr: libpwquality-1.4.4-3.el8 + owner_id: 5834 + owner_name: dbelyavs + package_id: 35375 + package_name: libpwquality + release: 3.el8 + source: git://pkgs.devel.redhat.com/rpms/libpwquality#32c8c111a806d667c1e5484816cc94650f16c740 + start_time: '2021-02-22 14:51:50.448676' + start_ts: 1614005510.44868 + state: 1 + task_id: 35092050 + version: 1.4.4 + volume_id: 9 + volume_name: rhel-8 +1525173: + build_id: 1525173 + cg_id: null + cg_name: null + completion_time: '2021-03-05 13:16:36.268740' + completion_ts: 1614950196.26874 + creation_event_id: 37685493 + creation_time: '2021-03-05 13:10:28.804600' + creation_ts: 1614949828.8046 + epoch: 8 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/lvm2#bd49fd403dcbaf7f2fa8c879dd98f0f6a595ad8e + id: 1525173 + name: lvm2 + nvr: lvm2-2.03.11-5.el8 + owner_id: 846 + owner_name: mcsontos + package_id: 2069 + package_name: lvm2 + release: 5.el8 + source: git://pkgs.devel.redhat.com/rpms/lvm2#bd49fd403dcbaf7f2fa8c879dd98f0f6a595ad8e + start_time: '2021-03-05 13:10:28.789762' + start_ts: 1614949828.78976 + state: 1 + task_id: 35281619 + version: 2.03.11 + volume_id: 9 + volume_name: rhel-8 +1525306: + build_id: 1525306 + cg_id: null + cg_name: null + completion_time: '2021-03-05 17:53:19.659292' + completion_ts: 1614966799.65929 + creation_event_id: 37686805 + creation_time: '2021-03-05 16:44:50.205432' + creation_ts: 1614962690.20543 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/glibc#63da7b9e0994c5238ea6ea59e164ba51f35268b2 + id: 1525306 + name: glibc + nvr: glibc-2.28-151.el8 + owner_id: 5739 + owner_name: sipoyare + package_id: 556 + package_name: glibc + release: 151.el8 + source: git://pkgs.devel.redhat.com/rpms/glibc#63da7b9e0994c5238ea6ea59e164ba51f35268b2 + start_time: '2021-03-05 16:44:50.153672' + start_ts: 1614962690.15367 + state: 1 + task_id: 35284275 + version: '2.28' + volume_id: 9 + volume_name: rhel-8 +1528091: + build_id: 1528091 + cg_id: null + cg_name: null + completion_time: '2021-03-08 15:15:28.372666' + completion_ts: 1615216528.37267 + creation_event_id: 37722910 + creation_time: '2021-03-08 15:12:29.191653' + creation_ts: 1615216349.19165 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dnf-plugins-core#f3bce87bcd8c4af17b88c2b685d7517b520f9b3f + id: 1528091 + name: dnf-plugins-core + nvr: dnf-plugins-core-4.0.18-4.el8 + owner_id: 4410 + owner_name: mblaha + package_id: 56986 + package_name: dnf-plugins-core + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/dnf-plugins-core#f3bce87bcd8c4af17b88c2b685d7517b520f9b3f + start_time: '2021-03-08 15:12:29.183199' + start_ts: 1615216349.1832 + state: 1 + task_id: 35315384 + version: 4.0.18 + volume_id: 9 + volume_name: rhel-8 +1528104: + build_id: 1528104 + cg_id: null + cg_name: null + completion_time: '2021-03-08 15:45:56.126670' + completion_ts: 1615218356.12667 + creation_event_id: 37723265 + creation_time: '2021-03-08 15:39:45.430686' + creation_ts: 1615217985.43069 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libdnf#bb594554f0a925a437fb155587595d1f39dca917 + id: 1528104 + name: libdnf + nvr: libdnf-0.55.0-7.el8 + owner_id: 4410 + owner_name: mblaha + package_id: 61544 + package_name: libdnf + release: 7.el8 + source: git://pkgs.devel.redhat.com/rpms/libdnf#bb594554f0a925a437fb155587595d1f39dca917 + start_time: '2021-03-08 15:39:45.420951' + start_ts: 1615217985.42095 + state: 1 + task_id: 35316202 + version: 0.55.0 + volume_id: 9 + volume_name: rhel-8 +1528106: + build_id: 1528106 + cg_id: null + cg_name: null + completion_time: '2021-03-08 15:43:55.706655' + completion_ts: 1615218235.70666 + creation_event_id: 37723286 + creation_time: '2021-03-08 15:40:42.292736' + creation_ts: 1615218042.29274 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dnf#334c7faa543afd6517af971b46b747e57d3563ac + id: 1528106 + name: dnf + nvr: dnf-4.4.2-11.el8 + owner_id: 4410 + owner_name: mblaha + package_id: 54433 + package_name: dnf + release: 11.el8 + source: git://pkgs.devel.redhat.com/rpms/dnf#334c7faa543afd6517af971b46b747e57d3563ac + start_time: '2021-03-08 15:40:42.271603' + start_ts: 1615218042.2716 + state: 1 + task_id: 35316295 + version: 4.4.2 + volume_id: 9 + volume_name: rhel-8 +1533934: + build_id: 1533934 + cg_id: null + cg_name: null + completion_time: '2021-03-12 19:03:21.477817' + completion_ts: 1615575801.47782 + creation_event_id: 37851411 + creation_time: '2021-03-12 18:58:46.425411' + creation_ts: 1615575526.42541 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/iproute#beecdecf03aa13344f1b442b22e21dfbeb4cd5e1 + id: 1533934 + name: iproute + nvr: iproute-5.9.0-4.el8 + owner_id: 4597 + owner_name: aclaudi + package_id: 909 + package_name: iproute + release: 4.el8 + source: git://pkgs.devel.redhat.com/rpms/iproute#beecdecf03aa13344f1b442b22e21dfbeb4cd5e1 + start_time: '2021-03-12 18:58:46.418984' + start_ts: 1615575526.41898 + state: 1 + task_id: 35409181 + version: 5.9.0 + volume_id: 9 + volume_name: rhel-8 +1540243: + build_id: 1540243 + cg_id: null + cg_name: null + completion_time: '2021-03-18 14:07:22.325214' + completion_ts: 1616076442.32521 + creation_event_id: 37952460 + creation_time: '2021-03-18 12:48:50.595531' + creation_ts: 1616071730.59553 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/python3#e4fe9c47cd47708c11eb95c1d35340f972b3f36c + id: 1540243 + name: python3 + nvr: python3-3.6.8-37.el8 + owner_id: 2481 + owner_name: pviktori + package_id: 34040 + package_name: python3 + release: 37.el8 + source: git://pkgs.devel.redhat.com/rpms/python3#e4fe9c47cd47708c11eb95c1d35340f972b3f36c + start_time: '2021-03-18 12:48:50.492675' + start_ts: 1616071730.49268 + state: 1 + task_id: 35537646 + version: 3.6.8 + volume_id: 9 + volume_name: rhel-8 +1550360: + build_id: 1550360 + cg_id: null + cg_name: null + completion_time: '2021-03-25 16:56:18.405268' + completion_ts: 1616691378.40527 + creation_event_id: 38129940 + creation_time: '2021-03-25 16:44:48.853425' + creation_ts: 1616690688.85343 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openssl#7153cdebc8daa4e7ceff3e62dd9d5f83150a06c2 + id: 1550360 + name: openssl + nvr: openssl-1.1.1g-15.el8_3 + owner_id: 5442 + owner_name: shebburn + package_id: 2328 + package_name: openssl + release: 15.el8_3 + source: git://pkgs.devel.redhat.com/rpms/openssl#7153cdebc8daa4e7ceff3e62dd9d5f83150a06c2 + start_time: '2021-03-25 16:44:48.846116' + start_ts: 1616690688.84612 + state: 1 + task_id: 35735826 + version: 1.1.1g + volume_id: 9 + volume_name: rhel-8 +1557760: + build_id: 1557760 + cg_id: null + cg_name: null + completion_time: '2021-03-31 08:29:05.204259' + completion_ts: 1617179345.20426 + creation_event_id: 38245879 + creation_time: '2021-03-31 08:26:22.649030' + creation_ts: 1617179182.64903 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/redhat-release#24314447f685baa975ee85f855e9d1277af48058 + id: 1557760 + name: redhat-release + nvr: redhat-release-8.4-0.6.el8 + owner_id: 3646 + owner_name: asabadra + package_id: 2672 + package_name: redhat-release + release: 0.6.el8 + source: git://pkgs.devel.redhat.com/rpms/redhat-release#24314447f685baa975ee85f855e9d1277af48058 + start_time: '2021-03-31 08:26:22.642598' + start_ts: 1617179182.6426 + state: 1 + task_id: 35862702 + version: '8.4' + volume_id: 9 + volume_name: rhel-8 +1559858: + build_id: 1559858 + cg_id: null + cg_name: null + completion_time: '2021-04-01 13:25:50.129799' + completion_ts: 1617283550.1298 + creation_event_id: 38268596 + creation_time: '2021-04-01 13:13:09.041592' + creation_ts: 1617282789.04159 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/gnutls#eb82699c90579d58fe78ef70b9c2ec46014334b3 + id: 1559858 + name: gnutls + nvr: gnutls-3.6.14-8.el8_3 + owner_id: 1285 + owner_name: dueno + package_id: 770 + package_name: gnutls + release: 8.el8_3 + source: git://pkgs.devel.redhat.com/rpms/gnutls#eb82699c90579d58fe78ef70b9c2ec46014334b3 + start_time: '2021-04-01 13:13:09.035190' + start_ts: 1617282789.03519 + state: 1 + task_id: 35905549 + version: 3.6.14 + volume_id: 9 + volume_name: rhel-8 +1565615: + build_id: 1565615 + cg_id: null + cg_name: null + completion_time: '2021-04-07 07:58:14.895444' + completion_ts: 1617782294.89544 + creation_event_id: 38376341 + creation_time: '2021-04-07 07:54:10.862751' + creation_ts: 1617782050.86275 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/nettle#f0d45c2112f0974adc4bf19e6e91de2d74629b2c + id: 1565615 + name: nettle + nvr: nettle-3.4.1-4.el8_3 + owner_id: 1285 + owner_name: dueno + package_id: 15400 + package_name: nettle + release: 4.el8_3 + source: git://pkgs.devel.redhat.com/rpms/nettle#f0d45c2112f0974adc4bf19e6e91de2d74629b2c + start_time: '2021-04-07 07:54:10.855748' + start_ts: 1617782050.85575 + state: 1 + task_id: 36008850 + version: 3.4.1 + volume_id: 9 + volume_name: rhel-8 +1573801: + build_id: 1573801 + cg_id: null + cg_name: null + completion_time: '2021-04-14 13:16:27.961567' + completion_ts: 1618406187.96157 + creation_event_id: 38507660 + creation_time: '2021-04-14 13:10:58.466253' + creation_ts: 1618405858.46625 + epoch: 1 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/dbus#a56167ce437451f6155e7308e9fa5b1057ff1839 + id: 1573801 + name: dbus + nvr: dbus-1.12.8-12.el8_4.2 + owner_id: 2473 + owner_name: dking + package_id: 333 + package_name: dbus + release: 12.el8_4.2 + source: git://pkgs.devel.redhat.com/rpms/dbus#a56167ce437451f6155e7308e9fa5b1057ff1839 + start_time: '2021-04-14 13:10:58.459518' + start_ts: 1618405858.45952 + state: 1 + task_id: 36139274 + version: 1.12.8 + volume_id: 9 + volume_name: rhel-8 +1584181: + build_id: 1584181 + cg_id: null + cg_name: null + completion_time: '2021-04-21 14:11:13.264549' + completion_ts: 1619014273.26455 + creation_event_id: 38647555 + creation_time: '2021-04-21 14:04:15.803634' + creation_ts: 1619013855.80363 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/bash#4cbab69537d8401a4c9b3c326f25fa95c5f6f6ee + id: 1584181 + name: bash + nvr: bash-4.4.20-1.el8_4 + owner_id: 2577 + owner_name: svashish + package_id: 184 + package_name: bash + release: 1.el8_4 + source: git://pkgs.devel.redhat.com/rpms/bash#4cbab69537d8401a4c9b3c326f25fa95c5f6f6ee + start_time: '2021-04-21 14:04:15.787763' + start_ts: 1619013855.78776 + state: 1 + task_id: 36339137 + version: 4.4.20 + volume_id: 9 + volume_name: rhel-8 +1588980: + build_id: 1588980 + cg_id: null + cg_name: null + completion_time: '2021-04-27 12:18:28.827034' + completion_ts: 1619525908.82703 + creation_event_id: 38733748 + creation_time: '2021-04-27 11:57:59.558447' + creation_ts: 1619524679.55845 + epoch: 32 + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/bind#02a491a40f730da0f92c5fc889356efb03c13967 + id: 1588980 + name: bind + nvr: bind-9.11.26-4.el8_4 + owner_id: 3655 + owner_name: pemensik + package_id: 194 + package_name: bind + release: 4.el8_4 + source: git://pkgs.devel.redhat.com/rpms/bind#02a491a40f730da0f92c5fc889356efb03c13967 + start_time: '2021-04-27 11:57:59.548680' + start_ts: 1619524679.54868 + state: 1 + task_id: 36462188 + version: 9.11.26 + volume_id: 9 + volume_name: rhel-8 +1606778: + build_id: 1606778 + cg_id: null + cg_name: null + completion_time: '2021-05-19 08:16:44.799300' + completion_ts: 1621412204.7993 + creation_event_id: 39049458 + creation_time: '2021-05-19 08:12:11.166673' + creation_ts: 1621411931.16667 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/libxml2#8f5beded7ceddbc9441c6b5e41fbc2fbb56cde65 + id: 1606778 + name: libxml2 + nvr: libxml2-2.9.7-9.el8_4.2 + owner_id: 2473 + owner_name: dking + package_id: 2004 + package_name: libxml2 + release: 9.el8_4.2 + source: git://pkgs.devel.redhat.com/rpms/libxml2#8f5beded7ceddbc9441c6b5e41fbc2fbb56cde65 + start_time: '2021-05-19 08:12:11.160591' + start_ts: 1621411931.16059 + state: 1 + task_id: 36883709 + version: 2.9.7 + volume_id: 9 + volume_name: rhel-8 +1608370: + build_id: 1608370 + cg_id: null + cg_name: null + completion_time: '2021-05-21 07:15:58.933742' + completion_ts: 1621581358.93374 + creation_event_id: 39076218 + creation_time: '2021-05-20 22:13:21.428272' + creation_ts: 1621548801.42827 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/glib2#79643c78fe48c086b29f9e738a3546256d38485e + id: 1608370 + name: glib2 + nvr: glib2-2.56.4-10.el8_4 + owner_id: 5512 + owner_name: mcatanza + package_id: 555 + package_name: glib2 + release: 10.el8_4 + source: git://pkgs.devel.redhat.com/rpms/glib2#79643c78fe48c086b29f9e738a3546256d38485e + start_time: '2021-05-20 22:13:21.421200' + start_ts: 1621548801.4212 + state: 1 + task_id: 36918454 + version: 2.56.4 + volume_id: 9 + volume_name: rhel-8 +1615115: + build_id: 1615115 + cg_id: null + cg_name: null + completion_time: '2021-05-27 13:18:30.864959' + completion_ts: 1622121510.86496 + creation_event_id: 39161160 + creation_time: '2021-05-27 13:15:29.456743' + creation_ts: 1622121329.45674 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/lz4#f024e0067da0f2157c0108391673fae4d952d283 + id: 1615115 + name: lz4 + nvr: lz4-1.8.3-3.el8_4 + owner_id: 3340 + owner_name: jamartis + package_id: 57477 + package_name: lz4 + release: 3.el8_4 + source: git://pkgs.devel.redhat.com/rpms/lz4#f024e0067da0f2157c0108391673fae4d952d283 + start_time: '2021-05-27 13:15:29.449674' + start_ts: 1622121329.44967 + state: 1 + task_id: 37027429 + version: 1.8.3 + volume_id: 9 + volume_name: rhel-8 +1618827: + build_id: 1618827 + cg_id: null + cg_name: null + completion_time: '2021-05-31 16:44:31.298900' + completion_ts: 1622479471.2989 + creation_event_id: 39234176 + creation_time: '2021-05-31 16:40:45.974329' + creation_ts: 1622479245.97433 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/rpm#3370d597ef5d1e41d311ad4efa9b1a16524e31f6 + id: 1618827 + name: rpm + nvr: rpm-4.14.3-14.el8_4 + owner_id: 1943 + owner_name: mdomonko + package_id: 2930 + package_name: rpm + release: 14.el8_4 + source: git://pkgs.devel.redhat.com/rpms/rpm#3370d597ef5d1e41d311ad4efa9b1a16524e31f6 + start_time: '2021-05-31 16:40:45.967819' + start_ts: 1622479245.96782 + state: 1 + task_id: 37103202 + version: 4.14.3 + volume_id: 9 + volume_name: rhel-8 +1627034: + build_id: 1627034 + cg_id: null + cg_name: null + completion_time: '2021-06-08 19:15:07.716501' + completion_ts: 1623179707.7165 + creation_event_id: 39364609 + creation_time: '2021-06-08 19:08:40.922153' + creation_ts: 1623179320.92215 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/subscription-manager#e551d789914bdbb36e9f29367672d5433e5de898 + id: 1627034 + name: subscription-manager + nvr: subscription-manager-1.28.13-3.el8_4 + owner_id: 3172 + owner_name: csnyder + package_id: 19375 + package_name: subscription-manager + release: 3.el8_4 + source: git://pkgs.devel.redhat.com/rpms/subscription-manager#e551d789914bdbb36e9f29367672d5433e5de898 + start_time: '2021-06-08 19:08:40.915614' + start_ts: 1623179320.91561 + state: 1 + task_id: 37306646 + version: 1.28.13 + volume_id: 9 + volume_name: rhel-8 +1636355: + build_id: 1636355 + cg_id: null + cg_name: null + completion_time: '2021-06-16 14:48:18.527894' + completion_ts: 1623854898.52789 + creation_event_id: 39508991 + creation_time: '2021-06-16 14:41:25.372093' + creation_ts: 1623854485.37209 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/openldap#8a5dee772c9c6640fc365d58e03cb535970e3d22 + id: 1636355 + name: openldap + nvr: openldap-2.4.46-17.el8_4 + owner_id: 3050 + owner_name: spichugi + package_id: 2313 + package_name: openldap + release: 17.el8_4 + source: git://pkgs.devel.redhat.com/rpms/openldap#8a5dee772c9c6640fc365d58e03cb535970e3d22 + start_time: '2021-06-16 14:41:25.365186' + start_ts: 1623854485.36519 + state: 1 + task_id: 37526628 + version: 2.4.46 + volume_id: 9 + volume_name: rhel-8 +1647417: + build_id: 1647417 + cg_id: null + cg_name: null + completion_time: '2021-06-29 09:36:29.009603' + completion_ts: 1624959389.0096 + creation_event_id: 39708408 + creation_time: '2021-06-29 09:27:15.563251' + creation_ts: 1624958835.56325 + epoch: null + extra: + source: + original_url: git://pkgs.devel.redhat.com/rpms/systemd#b2dc96a5cda3b98a8ea4d329f8452a95d4f86ad5 + id: 1647417 + name: systemd + nvr: systemd-239-45.el8_4.2 + owner_id: 4969 + owner_name: jamacku + package_id: 34071 + package_name: systemd + release: 45.el8_4.2 + source: git://pkgs.devel.redhat.com/rpms/systemd#b2dc96a5cda3b98a8ea4d329f8452a95d4f86ad5 + start_time: '2021-06-29 09:27:15.533669' + start_ts: 1624958835.53367 + state: 1 + task_id: 37783997 + version: '239' + volume_id: 9 + volume_name: rhel-8 diff --git a/tests/resources/sriov-operator-must-gather/container_image_archive_rpms.yaml b/tests/resources/sriov-operator-must-gather/container_image_archive_rpms.yaml new file mode 100644 index 000000000..857550fd2 --- /dev/null +++ b/tests/resources/sriov-operator-must-gather/container_image_archive_rpms.yaml @@ -0,0 +1,13526 @@ +# The results of listRPMs() indexed by the archive imageID +5229574: +# Artificially removing tzdata from one of the archives for testing purposes. +#- arch: noarch +# build_id: 1473607 +# buildroot_id: 6962315 +# buildtime: 1611592265 +# epoch: null +# external_repo_id: 0 +# external_repo_name: INTERNAL +# extra: null +# id: 9169364 +# metadata_only: false +# name: tzdata +# nvr: tzdata-2021a-1.el8 +# payloadhash: a928d660b5bd64a91bd6bfc055c865e5 +# release: 1.el8 +# size: 482936 +# version: 2021a +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075063 + metadata_only: false + name: python3-pip-wheel + nvr: python3-pip-wheel-9.0.3-19.el8 + payloadhash: 997ee4c01abb0e5b77e5d43a9181e252 + release: 19.el8 + size: 1094660 + version: 9.0.3 +- arch: noarch + build_id: 1573801 + buildroot_id: 7272689 + buildtime: 1618406023 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561237 + metadata_only: false + name: dbus-common + nvr: dbus-common-1.12.8-12.el8_4.2 + payloadhash: 9eeffd2111ff14f34ac723276c01283b + release: 12.el8_4.2 + size: 45624 + version: 1.12.8 +- arch: noarch + build_id: 1166694 + buildroot_id: 5856989 + buildtime: 1586943783 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7971019 + metadata_only: false + name: setup + nvr: setup-2.12.2-6.el8 + payloadhash: 109811c80a28ad746bcd12d4d0c06794 + release: 6.el8 + size: 183896 + version: 2.12.2 +- arch: noarch + build_id: 746023 + buildroot_id: 4369700 + buildtime: 1534063206 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156542 + metadata_only: false + name: basesystem + nvr: basesystem-11-5.el8 + payloadhash: 31bc067a6462aacd3b891681bdb27512 + release: 5.el8 + size: 9652 + version: '11' +- arch: noarch + build_id: 829223 + buildroot_id: 4678814 + buildtime: 1547644074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696179 + metadata_only: false + name: ncurses-base + nvr: ncurses-base-6.1-7.20180224.el8 + payloadhash: 6f474c29de2d5954bf13ae3a68215dc9 + release: 7.20180224.el8 + size: 81712 + version: '6.1' +- arch: s390x + build_id: 1360527 + buildroot_id: 6582954 + buildtime: 1603273834 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8672668 + metadata_only: false + name: libselinux + nvr: libselinux-2.9-5.el8 + payloadhash: bc723e63488942a9e79bd87c13e1591a + release: 5.el8 + size: 165808 + version: '2.9' +- arch: s390x + build_id: 1525306 + buildroot_id: 7130575 + buildtime: 1614965215 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9413128 + metadata_only: false + name: glibc-minimal-langpack + nvr: glibc-minimal-langpack-2.28-151.el8 + payloadhash: f4fa9493837038b5b58716db6d44a573 + release: 151.el8 + size: 56288 + version: '2.28' +- arch: s390x + build_id: 1525306 + buildroot_id: 7130575 + buildtime: 1614965215 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412924 + metadata_only: false + name: glibc + nvr: glibc-2.28-151.el8 + payloadhash: 0449f6b49cedccf7d1f18b8451dff8ba + release: 151.el8 + size: 3375204 + version: '2.28' +- arch: s390x + build_id: 1449855 + buildroot_id: 6885595 + buildtime: 1610126028 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9079460 + metadata_only: false + name: libsepol + nvr: libsepol-2.9-2.el8 + payloadhash: 27b4a1c50aba7b19a5822c0474c45e08 + release: 2.el8 + size: 321800 + version: '2.9' +- arch: s390x + build_id: 803342 + buildroot_id: 4585479 + buildtime: 1542895742 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6547281 + metadata_only: false + name: xz-libs + nvr: xz-libs-5.2.4-3.el8 + payloadhash: e002c9c7de03e8a4ac1d4c95fd0d4d07 + release: 3.el8 + size: 94892 + version: 5.2.4 +- arch: s390x + build_id: 747111 + buildroot_id: 4374877 + buildtime: 1534080222 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6175790 + metadata_only: false + name: libgpg-error + nvr: libgpg-error-1.31-1.el8 + payloadhash: d2929d3570d08dbc4f848c5d9652e795 + release: 1.el8 + size: 243080 + version: '1.31' +- arch: s390x + build_id: 1201127 + buildroot_id: 5994862 + buildtime: 1590147907 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8090627 + metadata_only: false + name: libcap + nvr: libcap-2.26-4.el8 + payloadhash: dc02e325d47a964b687b07fbdd278143 + release: 4.el8 + size: 58912 + version: '2.26' +- arch: s390x + build_id: 1216822 + buildroot_id: 6052385 + buildtime: 1591348934 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8146176 + metadata_only: false + name: libzstd + nvr: libzstd-1.4.4-1.el8 + payloadhash: 1df9a004666be3ea4a9370d3001f249c + release: 1.el8 + size: 247452 + version: 1.4.4 +- arch: s390x + build_id: 1606778 + buildroot_id: 7397474 + buildtime: 1621412062 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9736510 + metadata_only: false + name: libxml2 + nvr: libxml2-2.9.7-9.el8_4.2 + payloadhash: 8836f058d6622e0bff71c2ac0785dac3 + release: 9.el8_4.2 + size: 660928 + version: 2.9.7 +- arch: s390x + build_id: 1397463 + buildroot_id: 6715856 + buildtime: 1606832015 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8878732 + metadata_only: false + name: sqlite-libs + nvr: sqlite-libs-3.26.0-13.el8 + payloadhash: 2328b59452e419c8fee51cef111a5be7 + release: 13.el8 + size: 566668 + version: 3.26.0 +- arch: s390x + build_id: 1487471 + buildroot_id: 7009376 + buildtime: 1612371180 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9239295 + metadata_only: false + name: json-c + nvr: json-c-0.13.1-0.4.el8 + payloadhash: e9981d46426feff8dc3ebf185228a67b + release: 0.4.el8 + size: 38956 + version: 0.13.1 +- arch: s390x + build_id: 1192639 + buildroot_id: 5961303 + buildtime: 1589395312 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8062231 + metadata_only: false + name: libffi + nvr: libffi-3.1-22.el8 + payloadhash: d63a1535cac737e513f0e28a55e50b17 + release: 22.el8 + size: 35176 + version: '3.1' +- arch: s390x + build_id: 748275 + buildroot_id: 4379820 + buildtime: 1534096081 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6192845 + metadata_only: false + name: readline + nvr: readline-7.0-10.el8 + payloadhash: 8cd29bcf434ee6c0398e25a4a8a45ea2 + release: 10.el8 + size: 201404 + version: '7.0' +- arch: s390x + build_id: 746019 + buildroot_id: 4369689 + buildtime: 1534063185 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6157323 + metadata_only: false + name: libattr + nvr: libattr-2.4.48-3.el8 + payloadhash: eaf56ed40c57769be9b81e7bf0ff605f + release: 3.el8 + size: 26032 + version: 2.4.48 +- arch: s390x + build_id: 1165793 + buildroot_id: 5853081 + buildtime: 1586866518 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7967298 + metadata_only: false + name: coreutils-single + nvr: coreutils-single-8.30-8.el8 + payloadhash: b772e6be24031e17c19dd8fccea6a1e8 + release: 8.el8 + size: 619644 + version: '8.30' +- arch: s390x + build_id: 1465282 + buildroot_id: 6933595 + buildtime: 1611049939 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133032 + metadata_only: false + name: libmount + nvr: libmount-2.32.1-27.el8 + payloadhash: abb36b402fa2f362f4a7aab19849e7d6 + release: 27.el8 + size: 228924 + version: 2.32.1 +- arch: s390x + build_id: 1465282 + buildroot_id: 6933595 + buildtime: 1611049939 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133030 + metadata_only: false + name: libsmartcols + nvr: libsmartcols-2.32.1-27.el8 + payloadhash: 0a65b622902666a26879b6b6a35a6f84 + release: 27.el8 + size: 174676 + version: 2.32.1 +- arch: s390x + build_id: 906174 + buildroot_id: 4955479 + buildtime: 1559576713 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7052260 + metadata_only: false + name: lua-libs + nvr: lua-libs-5.3.4-11.el8 + payloadhash: ef21a425583024002b2413577dfa0b1f + release: 11.el8 + size: 115236 + version: 5.3.4 +- arch: s390x + build_id: 1168710 + buildroot_id: 5866950 + buildtime: 1587109414 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7983731 + metadata_only: false + name: chkconfig + nvr: chkconfig-1.13-2.el8 + payloadhash: 240243873ef9808c4ace321de1c622d1 + release: 2.el8 + size: 195348 + version: '1.13' +- arch: s390x + build_id: 909244 + buildroot_id: 4969000 + buildtime: 1560162252 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7072883 + metadata_only: false + name: libidn2 + nvr: libidn2-2.2.0-1.el8 + payloadhash: c6541dd1fcd76038170314bf47f111f8 + release: 1.el8 + size: 93892 + version: 2.2.0 +- arch: s390x + build_id: 1480523 + buildroot_id: 6984976 + buildtime: 1611937391 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201006 + metadata_only: false + name: file-libs + nvr: file-libs-5.33-16.el8_3.1 + payloadhash: a58f5ed72fe37f2a4b6720d2769697aa + release: 16.el8_3.1 + size: 552084 + version: '5.33' +- arch: s390x + build_id: 1054304 + buildroot_id: 5491131 + buildtime: 1578502232 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7666109 + metadata_only: false + name: audit-libs + nvr: audit-libs-3.0-0.17.20191104git1c2f876.el8 + payloadhash: eeb03267b8b55ff94021435e4f82b50b + release: 0.17.20191104git1c2f876.el8 + size: 113516 + version: '3.0' +- arch: s390x + build_id: 1615115 + buildroot_id: 7425899 + buildtime: 1622121386 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9773210 + metadata_only: false + name: lz4-libs + nvr: lz4-libs-1.8.3-3.el8_4 + payloadhash: 85fd7ea50bb9eec24659b57441697b84 + release: 3.el8_4 + size: 65804 + version: 1.8.3 +- arch: s390x + build_id: 774503 + buildroot_id: 4488609 + buildtime: 1538130016 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399073 + metadata_only: false + name: gdbm-libs + nvr: gdbm-libs-1.18-1.el8 + payloadhash: 83ff9ed81bee653f4228af50fe53a3da + release: 1.el8 + size: 60524 + version: '1.18' +- arch: s390x + build_id: 747294 + buildroot_id: 4375871 + buildtime: 1534083326 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180527 + metadata_only: false + name: libtasn1 + nvr: libtasn1-4.13-3.el8 + payloadhash: 5eea350ae52bf84742ccd778eafd82c2 + release: 3.el8 + size: 75912 + version: '4.13' +- arch: s390x + build_id: 761272 + buildroot_id: 4433029 + buildtime: 1535969821 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6279942 + metadata_only: false + name: pcre + nvr: pcre-8.42-4.el8 + payloadhash: 7d81705d6e664b3312010fd651bbae77 + release: 4.el8 + size: 130772 + version: '8.42' +- arch: s390x + build_id: 1647417 + buildroot_id: 7537567 + buildtime: 1624959128 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912936 + metadata_only: false + name: systemd-libs + nvr: systemd-libs-239-45.el8_4.2 + payloadhash: 29398ee3c5d378a838e8b35d9cfb75b5 + release: 45.el8_4.2 + size: 1006680 + version: '239' +- arch: noarch + build_id: 1234030 + buildroot_id: 6114472 + buildtime: 1592867963 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8205302 + metadata_only: false + name: ca-certificates + nvr: ca-certificates-2020.2.41-80.0.el8_2 + payloadhash: df20d39b69d47efe9a26fb1316c8b323 + release: 80.0.el8_2 + size: 399264 + version: 2020.2.41 +- arch: s390x + build_id: 1286148 + buildroot_id: 6307445 + buildtime: 1597242764 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8351520 + metadata_only: false + name: libusbx + nvr: libusbx-1.0.23-4.el8 + payloadhash: 85b925baa2ea12e2f5061f4a71f9c4a6 + release: 4.el8 + size: 71532 + version: 1.0.23 +- arch: s390x + build_id: 1483913 + buildroot_id: 6995724 + buildtime: 1612205476 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9211065 + metadata_only: false + name: libsemanage + nvr: libsemanage-2.9-6.el8 + payloadhash: a2f9d509d83d38084f6d30548234bbf0 + release: 6.el8 + size: 163100 + version: '2.9' +- arch: s390x + build_id: 747310 + buildroot_id: 4375965 + buildtime: 1534083574 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180636 + metadata_only: false + name: libutempter + nvr: libutempter-1.1.6-14.el8 + payloadhash: 60aeddb64e2e5f777680b085e6de31ed + release: 14.el8 + size: 30992 + version: 1.1.6 +- arch: s390x + build_id: 1215600 + buildroot_id: 6048394 + buildtime: 1591290776 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8143593 + metadata_only: false + name: libpsl + nvr: libpsl-0.20.2-6.el8 + payloadhash: 3c166e9937f047996d0f46cf090e6b60 + release: 6.el8 + size: 61692 + version: 0.20.2 +- arch: s390x + build_id: 1454801 + buildroot_id: 6900336 + buildtime: 1610445288 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9094387 + metadata_only: false + name: gzip + nvr: gzip-1.9-12.el8 + payloadhash: 0256e850fe7c2ab0e0c8107d5ed55296 + release: 12.el8 + size: 170880 + version: '1.9' +- arch: s390x + build_id: 804625 + buildroot_id: 4589605 + buildtime: 1543246281 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551438 + metadata_only: false + name: cracklib-dicts + nvr: cracklib-dicts-2.9.6-15.el8 + payloadhash: 4f52aae907f4fcc4ecace03ae358ad83 + release: 15.el8 + size: 4119868 + version: 2.9.6 +- arch: s390x + build_id: 747521 + buildroot_id: 4376964 + buildtime: 1534087312 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6184919 + metadata_only: false + name: mpfr + nvr: mpfr-3.1.6-1.el8 + payloadhash: fc66607bc6990ce55c2f50f0f6f95b72 + release: 1.el8 + size: 223812 + version: 3.1.6 +- arch: s390x + build_id: 1460547 + buildroot_id: 6918058 + buildtime: 1610710722 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9118102 + metadata_only: false + name: libcomps + nvr: libcomps-0.1.11-5.el8 + payloadhash: 267902d7646f1b8102e3089470dca2cc + release: 5.el8 + size: 78912 + version: 0.1.11 +- arch: s390x + build_id: 747165 + buildroot_id: 4375140 + buildtime: 1534081067 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177355 + metadata_only: false + name: libksba + nvr: libksba-1.3.5-7.el8 + payloadhash: 044b90f8dc9bc1ae7eadacfe7bf26728 + release: 7.el8 + size: 130052 + version: 1.3.5 +- arch: s390x + build_id: 1221598 + buildroot_id: 6070237 + buildtime: 1591702523 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157495 + metadata_only: false + name: libnghttp2 + nvr: libnghttp2-1.33.0-3.el8_2.1 + payloadhash: 86b28474cbed029c964a89872740a0ee + release: 3.el8_2.1 + size: 74360 + version: 1.33.0 +- arch: s390x + build_id: 747270 + buildroot_id: 4375749 + buildtime: 1534082812 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6179892 + metadata_only: false + name: libsigsegv + nvr: libsigsegv-2.11-5.el8 + payloadhash: e182243c0efafda080dbe6d11b6055aa + release: 5.el8 + size: 29640 + version: '2.11' +- arch: s390x + build_id: 747306 + buildroot_id: 4375948 + buildtime: 1534083513 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180869 + metadata_only: false + name: libverto + nvr: libverto-0.3.0-5.el8 + payloadhash: 77fcf5ca7c3de76c1af2e27e693d7ff7 + release: 5.el8 + size: 23052 + version: 0.3.0 +- arch: s390x + build_id: 1550360 + buildroot_id: 7208304 + buildtime: 1616691117 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9500769 + metadata_only: false + name: openssl-libs + nvr: openssl-libs-1.1.1g-15.el8_3 + payloadhash: af3547a9db1680db5688e49b9dbc501e + release: 15.el8_3 + size: 1204092 + version: 1.1.1g +- arch: s390x + build_id: 1419017 + buildroot_id: 6793819 + buildtime: 1608141718 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9016758 + metadata_only: false + name: krb5-libs + nvr: krb5-libs-1.18.2-8.el8 + payloadhash: 11e9d170f75b5703595ad971eeafc9b6 + release: 8.el8 + size: 820144 + version: 1.18.2 +- arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320563 + metadata_only: false + name: crypto-policies-scripts + nvr: crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3 + payloadhash: 419de3d06a04ee6fbb655fe74740bb8f + release: 1.gitbfb6bed.el8_3 + size: 67668 + version: '20210209' +- arch: s390x + build_id: 1540243 + buildroot_id: 7177545 + buildtime: 1616074808 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465816 + metadata_only: false + name: platform-python + nvr: platform-python-3.6.8-37.el8 + payloadhash: 037fca222a0347a6a16afec91179cb61 + release: 37.el8 + size: 84900 + version: 3.6.8 +- arch: s390x + build_id: 1399757 + buildroot_id: 6723953 + buildtime: 1606995962 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8889784 + metadata_only: false + name: libdb + nvr: libdb-5.3.28-40.el8 + payloadhash: 2cef4e17d44fcd8eded6763cd8cbf9d1 + release: 40.el8 + size: 703528 + version: 5.3.28 +- arch: s390x + build_id: 1378172 + buildroot_id: 6645376 + buildtime: 1604589419 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8777840 + metadata_only: false + name: pam + nvr: pam-1.3.1-14.el8 + payloadhash: 2b37a9b90f6fd312676be4860c7db3a1 + release: 14.el8 + size: 734848 + version: 1.3.1 +- arch: s390x + build_id: 1465282 + buildroot_id: 6933595 + buildtime: 1611049939 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133027 + metadata_only: false + name: util-linux + nvr: util-linux-2.32.1-27.el8 + payloadhash: 3f227986222a32873aac089e3442be32 + release: 27.el8 + size: 2494032 + version: 2.32.1 +- arch: s390x + build_id: 1559858 + buildroot_id: 7234161 + buildtime: 1617283482 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9527161 + metadata_only: false + name: gnutls + nvr: gnutls-3.6.14-8.el8_3 + payloadhash: 42640e641768f09e1be9f9aa70235ac0 + release: 8.el8_3 + size: 919876 + version: 3.6.14 +- arch: s390x + build_id: 782991 + buildroot_id: 4522244 + buildtime: 1539698425 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6452477 + metadata_only: false + name: json-glib + nvr: json-glib-1.4.4-1.el8 + payloadhash: acfad1507faa5bae78096af59e87ec4b + release: 1.el8 + size: 142004 + version: 1.4.4 +- arch: noarch + build_id: 747226 + buildroot_id: 4375496 + buildtime: 1534082024 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6171381 + metadata_only: false + name: python3-iniparse + nvr: python3-iniparse-0.4-31.el8 + payloadhash: 29f73a3875d2d7f187c2796233b96724 + release: 31.el8 + size: 48776 + version: '0.4' +- arch: s390x + build_id: 746151 + buildroot_id: 4370236 + buildtime: 1534065254 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6161493 + metadata_only: false + name: dbus-glib + nvr: dbus-glib-0.110-2.el8 + payloadhash: c5321c80e4237f2b07a514e58db398d6 + release: 2.el8 + size: 122688 + version: '0.110' +- arch: s390x + build_id: 746526 + buildroot_id: 4372097 + buildtime: 1534072833 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168973 + metadata_only: false + name: gobject-introspection + nvr: gobject-introspection-1.56.1-1.el8 + payloadhash: 7f9b6c5f64ff633b7163a4a2286fd530 + release: 1.el8 + size: 256124 + version: 1.56.1 +- arch: s390x + build_id: 1188151 + buildroot_id: 5943491 + buildtime: 1588873015 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8044015 + metadata_only: false + name: cyrus-sasl-lib + nvr: cyrus-sasl-lib-2.1.27-5.el8 + payloadhash: 5a8d7417e2febd3cfe69f073655ee41b + release: 5.el8 + size: 122108 + version: 2.1.27 +- arch: s390x + build_id: 919146 + buildroot_id: 5005134 + buildtime: 1561576420 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7125047 + metadata_only: false + name: libuser + nvr: libuser-0.62-23.el8 + payloadhash: df33681fd4ff1db56671c4c459396524 + release: 23.el8 + size: 415300 + version: '0.62' +- arch: s390x + build_id: 802356 + buildroot_id: 4581337 + buildtime: 1542709110 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6534757 + metadata_only: false + name: usermode + nvr: usermode-1.113-1.el8 + payloadhash: 25fe68ae2f6af32d9b83acb606f66107 + release: 1.el8 + size: 205208 + version: '1.113' +- arch: s390x + build_id: 812275 + buildroot_id: 4614374 + buildtime: 1544451049 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6588187 + metadata_only: false + name: python3-ethtool + nvr: python3-ethtool-0.14-3.el8 + payloadhash: 417dcc1262068bb09565333b17cb87d3 + release: 3.el8 + size: 43872 + version: '0.14' +- arch: noarch + build_id: 746857 + buildroot_id: 4373971 + buildtime: 1534077847 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168183 + metadata_only: false + name: python3-chardet + nvr: python3-chardet-3.0.4-7.el8 + payloadhash: 3ada1fbcb564b91e61de7f32130c471a + release: 7.el8 + size: 198980 + version: 3.0.4 +- arch: noarch + build_id: 747193 + buildroot_id: 4375299 + buildtime: 1534081484 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6171075 + metadata_only: false + name: python3-idna + nvr: python3-idna-2.5-5.el8 + payloadhash: 6ac5832b8bd214a6d2abc0072c97ab94 + release: 5.el8 + size: 98292 + version: '2.5' +- arch: noarch + build_id: 747578 + buildroot_id: 4377175 + buildtime: 1534088197 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177446 + metadata_only: false + name: python3-pysocks + nvr: python3-pysocks-1.6.8-3.el8 + payloadhash: 69d81ceb864a79a1b73a3c9826d9d6a7 + release: 3.el8 + size: 33924 + version: 1.6.8 +- arch: noarch + build_id: 989775 + buildroot_id: 5251486 + buildtime: 1571299303 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7411632 + metadata_only: false + name: python3-requests + nvr: python3-requests-2.20.0-2.1.el8_1 + payloadhash: 86b829d8cb0e3dc32d5c0d3a992456f4 + release: 2.1.el8_1 + size: 125356 + version: 2.20.0 +- arch: s390x + build_id: 1335853 + buildroot_id: 6480697 + buildtime: 1601460922 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8501333 + metadata_only: false + name: libarchive + nvr: libarchive-3.3.3-1.el8 + payloadhash: 261139797072bc3b569f3d514720cf8a + release: 1.el8 + size: 350716 + version: 3.3.3 +- arch: s390x + build_id: 1509562 + buildroot_id: 7086196 + buildtime: 1613753114 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9368638 + metadata_only: false + name: ima-evm-utils + nvr: ima-evm-utils-1.3.2-12.el8 + payloadhash: 0ed54cdc9767c4d7c9836eefe791fc22 + release: 12.el8 + size: 63476 + version: 1.3.2 +- arch: s390x + build_id: 747600 + buildroot_id: 4377293 + buildtime: 1534088465 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185265 + metadata_only: false + name: npth + nvr: npth-1.5-4.el8 + payloadhash: 885cc27cd427a0988f8db098ae80b31b + release: 4.el8 + size: 25292 + version: '1.5' +- arch: s390x + build_id: 1441861 + buildroot_id: 6860103 + buildtime: 1609761138 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9051386 + metadata_only: false + name: gpgme + nvr: gpgme-1.13.1-7.el8 + payloadhash: a56de6c612dd3f4afddbd37e951e16ca + release: 7.el8 + size: 327816 + version: 1.13.1 +- arch: s390x + build_id: 1374200 + buildroot_id: 6630139 + buildtime: 1604330676 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8746398 + metadata_only: false + name: pciutils-libs + nvr: pciutils-libs-3.7.0-1.el8 + payloadhash: 9f18658f5e42135b58b36ffb59c6c873 + release: 1.el8 + size: 51652 + version: 3.7.0 +- arch: s390x + build_id: 791846 + buildroot_id: 4549786 + buildtime: 1541015432 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6482144 + metadata_only: false + name: virt-what + nvr: virt-what-1.18-6.el8 + payloadhash: b9fe2f23b0d4e02789caea7d845bab80 + release: 6.el8 + size: 34692 + version: '1.18' +- arch: s390x + build_id: 1237213 + buildroot_id: 6125637 + buildtime: 1593094190 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215436 + metadata_only: false + name: libssh + nvr: libssh-0.9.4-2.el8 + payloadhash: d39f438b6a53b98f2ce7578631bedb03 + release: 2.el8 + size: 202908 + version: 0.9.4 +- arch: s390x + build_id: 1416620 + buildroot_id: 6784808 + buildtime: 1608027462 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9001994 + metadata_only: false + name: librepo + nvr: librepo-1.12.0-3.el8 + payloadhash: bfea8cb5bf5c15c31aded646aab5f825 + release: 3.el8 + size: 84708 + version: 1.12.0 +- arch: s390x + build_id: 1479079 + buildroot_id: 6984998 + buildtime: 1611938225 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201138 + metadata_only: false + name: curl + nvr: curl-7.61.1-18.el8 + payloadhash: 16a2d504328ce2aabd3987a42aa25cc6 + release: 18.el8 + size: 357884 + version: 7.61.1 +- arch: s390x + build_id: 1618827 + buildroot_id: 7437102 + buildtime: 1622479363 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782912 + metadata_only: false + name: rpm + nvr: rpm-4.14.3-14.el8_4 + payloadhash: d2939a1983cd82c54332fd993bf176ee + release: 14.el8_4 + size: 552712 + version: 4.14.3 +- arch: s390x + build_id: 1460531 + buildroot_id: 6918018 + buildtime: 1610709824 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9117933 + metadata_only: false + name: libsolv + nvr: libsolv-0.7.16-2.el8 + payloadhash: 6854b935354b4e3aa8d140cf45b9709a + release: 2.el8 + size: 347944 + version: 0.7.16 +- arch: s390x + build_id: 1528104 + buildroot_id: 7139228 + buildtime: 1615218218 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417656 + metadata_only: false + name: python3-libdnf + nvr: python3-libdnf-0.55.0-7.el8 + payloadhash: c15fadfa3b89a06b9b37acbcde0e0f8a + release: 7.el8 + size: 681108 + version: 0.55.0 +- arch: s390x + build_id: 1290417 + buildroot_id: 6324126 + buildtime: 1597819227 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8363519 + metadata_only: false + name: libreport-filesystem + nvr: libreport-filesystem-2.9.5-15.el8 + payloadhash: 470d5469057401340bf4a084538d3f5e + release: 15.el8 + size: 20420 + version: 2.9.5 +- arch: noarch + build_id: 1495269 + buildroot_id: 7035710 + buildtime: 1612784043 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9293910 + metadata_only: false + name: hwdata + nvr: hwdata-0.314-8.8.el8 + payloadhash: 4992d597c87d420c328da638b51d5edd + release: 8.8.el8 + size: 1733960 + version: '0.314' +- arch: s390x + build_id: 1479677 + buildroot_id: 6982002 + buildtime: 1611893342 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9194093 + metadata_only: false + name: rdma-core + nvr: rdma-core-32.0-4.el8 + payloadhash: 1626e820d042100339c9451d83d75635 + release: 4.el8 + size: 58412 + version: '32.0' +- arch: s390x + build_id: 1465270 + buildroot_id: 6933545 + buildtime: 1611049372 + epoch: 14 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132905 + metadata_only: false + name: libpcap + nvr: libpcap-1.9.1-5.el8 + payloadhash: b0750d17b4b63c6859dccd76b9d60342 + release: 5.el8 + size: 161812 + version: 1.9.1 +- arch: s390x + build_id: 1525173 + buildroot_id: 7130184 + buildtime: 1614949975 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9410261 + metadata_only: false + name: device-mapper + nvr: device-mapper-1.02.175-5.el8 + payloadhash: e87414a1289a5ad548730db5021550be + release: 5.el8 + size: 377708 + version: 1.02.175 +- arch: s390x + build_id: 1507689 + buildroot_id: 7079458 + buildtime: 1613665460 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9356255 + metadata_only: false + name: cryptsetup-libs + nvr: cryptsetup-libs-2.3.3-4.el8 + payloadhash: f3b7de46ccb331c0701f8cd3327fc193 + release: 4.el8 + size: 458368 + version: 2.3.3 +- arch: s390x + build_id: 1420642 + buildroot_id: 6798338 + buildtime: 1608209882 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020961 + metadata_only: false + name: elfutils-libs + nvr: elfutils-libs-0.182-3.el8 + payloadhash: 8c1238de9aa0627f741eebfce16c0d51 + release: 3.el8 + size: 289792 + version: '0.182' +- arch: s390x + build_id: 1647417 + buildroot_id: 7537567 + buildtime: 1624959128 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912935 + metadata_only: false + name: systemd + nvr: systemd-239-45.el8_4.2 + payloadhash: d31609111cbc3a981bbe6f2f0413f898 + release: 45.el8_4.2 + size: 3435912 + version: '239' +- arch: s390x + build_id: 1618827 + buildroot_id: 7437102 + buildtime: 1622479363 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782914 + metadata_only: false + name: rpm-build-libs + nvr: rpm-build-libs-4.14.3-14.el8_4 + payloadhash: b30b517e61d442c6cd5fe9d085a866f4 + release: 14.el8_4 + size: 153156 + version: 4.14.3 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417619 + metadata_only: false + name: python3-dnf + nvr: python3-dnf-4.4.2-11.el8 + payloadhash: 37d326ca26f018d54ddcc285ddc8cefc + release: 11.el8 + size: 553316 + version: 4.4.2 +- arch: noarch + build_id: 1528091 + buildroot_id: 7139136 + buildtime: 1615216494 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417601 + metadata_only: false + name: python3-dnf-plugins-core + nvr: python3-dnf-plugins-core-4.0.18-4.el8 + payloadhash: eca9f30e6d32e56dbdd811458b405d55 + release: 4.el8 + size: 238880 + version: 4.0.18 +- arch: s390x + build_id: 1627034 + buildroot_id: 7465261 + buildtime: 1623179461 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819798 + metadata_only: false + name: python3-subscription-manager-rhsm + nvr: python3-subscription-manager-rhsm-1.28.13-3.el8_4 + payloadhash: 9d02d7d22b710b1e59478d4cab2eda93 + release: 3.el8_4 + size: 373168 + version: 1.28.13 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417618 + metadata_only: false + name: yum + nvr: yum-4.4.2-11.el8 + payloadhash: 60663bd019796159c134cbf95fd15022 + release: 11.el8 + size: 200560 + version: 4.4.2 +- arch: s390x + build_id: 1229781 + buildroot_id: 6101289 + buildtime: 1592561997 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8194444 + metadata_only: false + name: tar + nvr: tar-1.30-5.el8 + payloadhash: 59ad7788360a2252611add2efbb858f0 + release: 5.el8 + size: 851256 + version: '1.30' +- arch: s390x + build_id: 794639 + buildroot_id: 4557731 + buildtime: 1541427654 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6492559 + metadata_only: false + name: findutils + nvr: findutils-4.6.0-20.el8 + payloadhash: 531b7d79a84fa700b60771b326c77bf4 + release: 20.el8 + size: 534792 + version: 4.6.0 +- arch: noarch + build_id: 748292 + buildroot_id: 4379902 + buildtime: 1534096383 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6187287 + metadata_only: false + name: rootfiles + nvr: rootfiles-8.1-22.el8 + payloadhash: 95e9e04d2d86a4595e51bb74119338c6 + release: 22.el8 + size: 12544 + version: '8.1' +- arch: s390x + build_id: 1446652 + buildroot_id: 6874893 + buildtime: 1609953440 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9063824 + metadata_only: false + name: fstrm + nvr: fstrm-0.6.0-3.el8.1 + payloadhash: 62685f2c645bea5b7b3ba30aa4138477 + release: 3.el8.1 + size: 27152 + version: 0.6.0 +- arch: noarch + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650594 + metadata_only: false + name: bind-license + nvr: bind-license-9.11.26-4.el8_4 + payloadhash: 507b400cbcc1a531a56a96a0e7ec5d95 + release: 4.el8_4 + size: 103484 + version: 9.11.26 +- arch: s390x + build_id: 1588980 + buildroot_id: 7323896 + buildtime: 1619525443 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650695 + metadata_only: false + name: bind-libs + nvr: bind-libs-9.11.26-4.el8_4 + payloadhash: 08e310c989245b84e2e4cb9995a0c322 + release: 4.el8_4 + size: 171300 + version: 9.11.26 +- arch: noarch + build_id: 1446322 + buildroot_id: 6873795 + buildtime: 1609942008 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9062446 + metadata_only: false + name: python3-ply + nvr: python3-ply-3.9-9.el8 + payloadhash: e3b7c687e59dca916480eb02c9a3661e + release: 9.el8 + size: 112760 + version: '3.9' +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075060 + metadata_only: false + name: platform-python-pip + nvr: platform-python-pip-9.0.3-19.el8 + payloadhash: 0558b3e85bd74c4cbc651c0cc47a2f1c + release: 19.el8 + size: 1779340 + version: 9.0.3 +- arch: s390x + build_id: 908277 + buildroot_id: 4964961 + buildtime: 1559911898 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7068904 + metadata_only: false + name: python36 + nvr: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7 + payloadhash: 8b403e2bcdf8e3e9f9a78fe3cfdbdc96 + release: 2.module+el8.1.0+3334+5cb623d7 + size: 18434 + version: 3.6.8 +- arch: s390x + build_id: 1588980 + buildroot_id: 7323896 + buildtime: 1619525443 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650696 + metadata_only: false + name: bind-utils + nvr: bind-utils-9.11.26-4.el8_4 + payloadhash: 82a2e7ac1b1d92b8bd656934b34cff0f + release: 4.el8_4 + size: 443048 + version: 9.11.26 +- arch: s390x + build_id: 1397548 + buildroot_id: 6716405 + buildtime: 1606839965 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8879949 + metadata_only: false + name: procps-ng + nvr: procps-ng-3.3.15-6.el8 + payloadhash: e764a7c7b883407a1a2a2aa2bfda1759 + release: 6.el8 + size: 325968 + version: 3.3.15 +- arch: s390x + build_id: 1172035 + buildroot_id: 5879008 + buildtime: 1587382086 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7991550 + metadata_only: false + name: lsof + nvr: lsof-4.93.2-1.el8 + payloadhash: 61290d4d689e96be6931744af60cc126 + release: 1.el8 + size: 254708 + version: 4.93.2 +- arch: s390x + build_id: 746599 + buildroot_id: 4373232 + buildtime: 1534076234 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6170674 + metadata_only: false + name: hostname + nvr: hostname-3.20-6.el8 + payloadhash: 53c4d4c88732387c3c3ac6310366da28 + release: 6.el8 + size: 31276 + version: '3.20' +- arch: s390x + build_id: 1025058 + buildroot_id: 5383387 + buildtime: 1575182395 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7579202 + metadata_only: false + name: socat + nvr: socat-1.7.3.3-2.el8 + payloadhash: f34dfc0cc9415a4bc387e42015b5aecf + release: 2.el8 + size: 298124 + version: 1.7.3.3 +- arch: s390x + build_id: 1334981 + buildroot_id: 6477766 + buildtime: 1601425157 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8495971 + metadata_only: false + name: libgcc + nvr: libgcc-8.4.1-1.el8 + payloadhash: babee3bf420d3d63c0c9f88bd08fb291 + release: 1.el8 + size: 63012 + version: 8.4.1 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896582 + metadata_only: false + name: python3-setuptools-wheel + nvr: python3-setuptools-wheel-39.2.0-6.el8 + payloadhash: f7a0c30562c572b2b169a51cdd75df84 + release: 6.el8 + size: 294672 + version: 39.2.0 +- arch: s390x + build_id: 1627034 + buildroot_id: 7465261 + buildtime: 1623179461 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819799 + metadata_only: false + name: subscription-manager-rhsm-certificates + nvr: subscription-manager-rhsm-certificates-1.28.13-3.el8_4 + payloadhash: 80ea5fe6ba65838a6e5f700fdcc38d99 + release: 3.el8_4 + size: 270560 + version: 1.28.13 +- arch: s390x + build_id: 1557760 + buildroot_id: 7227937 + buildtime: 1617179281 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9521469 + metadata_only: false + name: redhat-release + nvr: redhat-release-8.4-0.6.el8 + payloadhash: 6666b3f4c925025a3888b4a7782fe32e + release: 0.6.el8 + size: 41180 + version: '8.4' +- arch: s390x + build_id: 1175627 + buildroot_id: 5893764 + buildtime: 1587623159 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8000794 + metadata_only: false + name: filesystem + nvr: filesystem-3.8-3.el8 + payloadhash: 68a86261110739aaa033b1d8629ffb49 + release: 3.el8 + size: 1134208 + version: '3.8' +- arch: noarch + build_id: 748188 + buildroot_id: 4379429 + buildtime: 1534094638 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185702 + metadata_only: false + name: publicsuffix-list-dafsa + nvr: publicsuffix-list-dafsa-20180723-1.el8 + payloadhash: 193f2f7ffa5e990141b941b47dfbab79 + release: 1.el8 + size: 56488 + version: '20180723' +- arch: s390x + build_id: 1207296 + buildroot_id: 6017987 + buildtime: 1590685228 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8114626 + metadata_only: false + name: pcre2 + nvr: pcre2-10.32-2.el8 + payloadhash: 796db70cca475d86f3847b815df6c5b4 + release: 2.el8 + size: 163976 + version: '10.32' +- arch: s390x + build_id: 829223 + buildroot_id: 4678815 + buildtime: 1547643825 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696204 + metadata_only: false + name: ncurses-libs + nvr: ncurses-libs-6.1-7.20180224.el8 + payloadhash: d529583bc8b0c60c1478a7ddd4cce8c5 + release: 7.20180224.el8 + size: 328180 + version: '6.1' +- arch: s390x + build_id: 1525306 + buildroot_id: 7130575 + buildtime: 1614965215 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412929 + metadata_only: false + name: glibc-common + nvr: glibc-common-2.28-151.el8 + payloadhash: 382acf0a17f8b3c6cb73a3cdff115727 + release: 151.el8 + size: 1503424 + version: '2.28' +- arch: s390x + build_id: 1584181 + buildroot_id: 7306053 + buildtime: 1619014111 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9630613 + metadata_only: false + name: bash + nvr: bash-4.4.20-1.el8_4 + payloadhash: 5d554409f58319cca35642b6f696c769 + release: 1.el8_4 + size: 1610540 + version: 4.4.20 +- arch: s390x + build_id: 1366387 + buildroot_id: 6602586 + buildtime: 1603788557 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8693814 + metadata_only: false + name: zlib + nvr: zlib-1.2.11-17.el8 + payloadhash: e040df7eab982cd12b3b4963ef688d63 + release: 17.el8 + size: 106788 + version: 1.2.11 +- arch: s390x + build_id: 745941 + buildroot_id: 4369271 + buildtime: 1534060180 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155766 + metadata_only: false + name: bzip2-libs + nvr: bzip2-libs-1.0.6-26.el8 + payloadhash: 1ba5e68e3d5b1745f13cc2a1c7af90e8 + release: 26.el8 + size: 48336 + version: 1.0.6 +- arch: s390x + build_id: 1054659 + buildroot_id: 5492776 + buildtime: 1578565028 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7668502 + metadata_only: false + name: info + nvr: info-6.5-6.el8 + payloadhash: 1da48d1499652422454dc23bbea9d604 + release: 6.el8 + size: 198468 + version: '6.5' +- arch: s390x + build_id: 745929 + buildroot_id: 4369257 + buildtime: 1534060163 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155574 + metadata_only: false + name: libxcrypt + nvr: libxcrypt-4.1.1-4.el8 + payloadhash: 4e9de9a61191abffe602e48684da361e + release: 4.el8 + size: 72408 + version: 4.1.1 +- arch: s390x + build_id: 1447539 + buildroot_id: 6878039 + buildtime: 1610017509 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9068306 + metadata_only: false + name: popt + nvr: popt-1.18-1.el8 + payloadhash: 2cca803a53883566713ac58156f47138 + release: 1.el8 + size: 62056 + version: '1.18' +- arch: s390x + build_id: 1420642 + buildroot_id: 6798338 + buildtime: 1608209882 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020964 + metadata_only: false + name: elfutils-libelf + nvr: elfutils-libelf-0.182-3.el8 + payloadhash: 3f41be37ceb3e88c41abd5a807d3f9e5 + release: 3.el8 + size: 218928 + version: '0.182' +- arch: s390x + build_id: 1177309 + buildroot_id: 5900169 + buildtime: 1587742142 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8006323 + metadata_only: false + name: expat + nvr: expat-2.2.5-4.el8 + payloadhash: 5d96f85facf5b47d08f728681f23c649 + release: 4.el8 + size: 107508 + version: 2.2.5 +- arch: s390x + build_id: 1220066 + buildroot_id: 6064526 + buildtime: 1591610586 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8152084 + metadata_only: false + name: libcom_err + nvr: libcom_err-1.45.6-1.el8 + payloadhash: 2bc61250d8661448c60db73bf859a684 + release: 1.el8 + size: 48664 + version: 1.45.6 +- arch: s390x + build_id: 1465282 + buildroot_id: 6933595 + buildtime: 1611049939 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133036 + metadata_only: false + name: libuuid + nvr: libuuid-2.32.1-27.el8 + payloadhash: 6aa2efb3349098c1ba9dac162a1111ae + release: 27.el8 + size: 96580 + version: 2.32.1 +- arch: s390x + build_id: 911719 + buildroot_id: 4980064 + buildtime: 1560501743 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7093035 + metadata_only: false + name: gmp + nvr: gmp-6.1.2-10.el8 + payloadhash: fcd905dcdfcc990633d085a634f31b72 + release: 10.el8 + size: 291168 + version: 6.1.2 +- arch: s390x + build_id: 745979 + buildroot_id: 4369545 + buildtime: 1534062941 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156903 + metadata_only: false + name: libacl + nvr: libacl-2.2.53-1.el8 + payloadhash: 6f8ca1573e06715993a3d9cf72602cef + release: 1.el8 + size: 34396 + version: 2.2.53 +- arch: s390x + build_id: 1465282 + buildroot_id: 6933595 + buildtime: 1611049939 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133034 + metadata_only: false + name: libblkid + nvr: libblkid-2.32.1-27.el8 + payloadhash: ae450ffb17f0950c188719cfed3184a5 + release: 27.el8 + size: 212912 + version: 2.32.1 +- arch: s390x + build_id: 1197484 + buildroot_id: 5980580 + buildtime: 1589884027 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8076501 + metadata_only: false + name: sed + nvr: sed-4.5-2.el8 + payloadhash: 4315e361339afc911d5866abf421cebd + release: 2.el8 + size: 302940 + version: '4.5' +- arch: s390x + build_id: 1334981 + buildroot_id: 6477766 + buildtime: 1601425157 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8495973 + metadata_only: false + name: libstdc++ + nvr: libstdc++-8.4.1-1.el8 + payloadhash: 8fdc97cd448b3f0b175a5b81923da672 + release: 1.el8 + size: 463608 + version: 8.4.1 +- arch: s390x + build_id: 1453279 + buildroot_id: 6895956 + buildtime: 1610373387 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9088175 + metadata_only: false + name: p11-kit + nvr: p11-kit-0.23.22-1.el8 + payloadhash: e59200a12df95c92976cbe033caa0a9a + release: 1.el8 + size: 327632 + version: 0.23.22 +- arch: s390x + build_id: 753876 + buildroot_id: 4402013 + buildtime: 1534538848 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6239950 + metadata_only: false + name: libunistring + nvr: libunistring-0.9.9-3.el8 + payloadhash: 84a77119e1d8c017049b4f70b1976bd6 + release: 3.el8 + size: 427060 + version: 0.9.9 +- arch: s390x + build_id: 1225800 + buildroot_id: 6086849 + buildtime: 1592238179 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8179257 + metadata_only: false + name: libgcrypt + nvr: libgcrypt-1.8.5-4.el8 + payloadhash: b79a9e4f1e4a7d93ffdf9f0acb371e83 + release: 4.el8 + size: 398460 + version: 1.8.5 +- arch: s390x + build_id: 1003002 + buildroot_id: 5298250 + buildtime: 1572943000 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7465675 + metadata_only: false + name: libcap-ng + nvr: libcap-ng-0.7.9-5.el8 + payloadhash: 69d506d4eb331a2204612444cfecc25c + release: 5.el8 + size: 32496 + version: 0.7.9 +- arch: s390x + build_id: 1020741 + buildroot_id: 5366829 + buildtime: 1574797008 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7557344 + metadata_only: false + name: libnl3 + nvr: libnl3-3.5.0-1.el8 + payloadhash: 1b303adc88673e6f8d022435d0d161fa + release: 1.el8 + size: 307336 + version: 3.5.0 +- arch: s390x + build_id: 747020 + buildroot_id: 4374497 + buildtime: 1534079054 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6173713 + metadata_only: false + name: libassuan + nvr: libassuan-2.5.1-3.el8 + payloadhash: d736d854811fde43a638567619ff859c + release: 3.el8 + size: 81068 + version: 2.5.1 +- arch: s390x + build_id: 746949 + buildroot_id: 4374249 + buildtime: 1534078436 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172985 + metadata_only: false + name: keyutils-libs + nvr: keyutils-libs-1.5.10-6.el8 + payloadhash: 937c160d335b22f7eef42d872c3ab1b8 + release: 6.el8 + size: 32920 + version: 1.5.10 +- arch: s390x + build_id: 1453279 + buildroot_id: 6895956 + buildtime: 1610373387 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9088177 + metadata_only: false + name: p11-kit-trust + nvr: p11-kit-trust-0.23.22-1.el8 + payloadhash: 848c2bbccc3db39ed4057bacb13c5f3b + release: 1.el8 + size: 131600 + version: 0.23.22 +- arch: s390x + build_id: 745934 + buildroot_id: 4369260 + buildtime: 1534060328 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155641 + metadata_only: false + name: grep + nvr: grep-3.1-6.el8 + payloadhash: 9fdf8d7b863c12c8ba427984f93eaaa9 + release: 6.el8 + size: 277676 + version: '3.1' +- arch: s390x + build_id: 1573801 + buildroot_id: 7272688 + buildtime: 1618405985 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561296 + metadata_only: false + name: dbus-libs + nvr: dbus-libs-1.12.8-12.el8_4.2 + payloadhash: 64cb6fbd4f5715317d5e3e33012f8741 + release: 12.el8_4.2 + size: 179788 + version: 1.12.8 +- arch: s390x + build_id: 1573801 + buildroot_id: 7272688 + buildtime: 1618405985 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561295 + metadata_only: false + name: dbus-tools + nvr: dbus-tools-1.12.8-12.el8_4.2 + payloadhash: 7c6275f76387424d7b501fd680b60154 + release: 12.el8_4.2 + size: 84164 + version: 1.12.8 +- arch: s390x + build_id: 774503 + buildroot_id: 4488609 + buildtime: 1538130016 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399076 + metadata_only: false + name: gdbm + nvr: gdbm-1.18-1.el8 + payloadhash: 6c062a12b6ab4e1853c89f1d37b63e55 + release: 1.el8 + size: 129308 + version: '1.18' +- arch: s390x + build_id: 1364758 + buildroot_id: 6598267 + buildtime: 1603717892 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8690811 + metadata_only: false + name: shadow-utils + nvr: shadow-utils-4.6-12.el8 + payloadhash: 9ef32706f11c5c1f107e854e5ea16968 + release: 12.el8 + size: 1257924 + version: '4.6' +- arch: s390x + build_id: 1573801 + buildroot_id: 7272688 + buildtime: 1618405985 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561294 + metadata_only: false + name: dbus-daemon + nvr: dbus-daemon-1.12.8-12.el8_4.2 + payloadhash: eb319eb651f46d4e931ca3baca3d0ae9 + release: 12.el8_4.2 + size: 235900 + version: 1.12.8 +- arch: s390x + build_id: 1465282 + buildroot_id: 6933595 + buildtime: 1611049939 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133028 + metadata_only: false + name: libfdisk + nvr: libfdisk-2.32.1-27.el8 + payloadhash: 28055d05b7db056a52bd851d771b7918 + release: 27.el8 + size: 244940 + version: 2.32.1 +- arch: s390x + build_id: 804625 + buildroot_id: 4589605 + buildtime: 1543246281 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551439 + metadata_only: false + name: cracklib + nvr: cracklib-2.9.6-15.el8 + payloadhash: 46e4dff165a874aa5b16f23e739b099a + release: 15.el8 + size: 94244 + version: 2.9.6 +- arch: s390x + build_id: 745979 + buildroot_id: 4369545 + buildtime: 1534062941 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156907 + metadata_only: false + name: acl + nvr: acl-2.2.53-1.el8 + payloadhash: aa0bfa3ab554c508b2b6f26f9be0d673 + release: 1.el8 + size: 80812 + version: 2.2.53 +- arch: s390x + build_id: 1565615 + buildroot_id: 7249240 + buildtime: 1617782187 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9540214 + metadata_only: false + name: nettle + nvr: nettle-3.4.1-4.el8_3 + payloadhash: 0953023e545aa05db5dd7fd9ae56b7a3 + release: 4.el8_3 + size: 315400 + version: 3.4.1 +- arch: s390x + build_id: 747162 + buildroot_id: 4375134 + buildtime: 1534081034 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177326 + metadata_only: false + name: libmetalink + nvr: libmetalink-0.1.3-7.el8 + payloadhash: a6cf479e92ce02dbcb12cef5b9bd30e2 + release: 7.el8 + size: 30952 + version: 0.1.3 +- arch: s390x + build_id: 1337704 + buildroot_id: 6486989 + buildtime: 1601568795 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8508743 + metadata_only: false + name: brotli + nvr: brotli-1.0.6-3.el8 + payloadhash: faab99cf563fafd9e2ce4222e07f98e7 + release: 3.el8 + size: 322248 + version: 1.0.6 +- arch: s390x + build_id: 1508952 + buildroot_id: 7083731 + buildtime: 1613731357 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9364653 + metadata_only: false + name: libseccomp + nvr: libseccomp-2.5.1-1.el8 + payloadhash: aeb3210f114fbb68a3ae8faa890c63bf + release: 1.el8 + size: 70420 + version: 2.5.1 +- arch: s390x + build_id: 1399824 + buildroot_id: 6724195 + buildtime: 1606997696 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8890400 + metadata_only: false + name: gawk + nvr: gawk-4.2.1-2.el8 + payloadhash: 96cf7c919cc6a738fc385acd91620193 + release: 2.el8 + size: 1167764 + version: 4.2.1 +- arch: s390x + build_id: 747205 + buildroot_id: 4375331 + buildtime: 1534081570 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6178308 + metadata_only: false + name: libnsl2 + nvr: libnsl2-1.2.0-2.20180605git4a062cf.el8 + payloadhash: 176de9c0f3594cb7c21b7783913d45c9 + release: 2.20180605git4a062cf.el8 + size: 56556 + version: 1.2.0 +- arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320562 + metadata_only: false + name: crypto-policies + nvr: crypto-policies-20210209-1.gitbfb6bed.el8_3 + payloadhash: 48e3a2b96a8676497f52723238d02615 + release: 1.gitbfb6bed.el8_3 + size: 62520 + version: '20210209' +- arch: s390x + build_id: 936936 + buildroot_id: 5062313 + buildtime: 1563984096 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7200934 + metadata_only: false + name: libtirpc + nvr: libtirpc-1.1.4-4.el8 + payloadhash: 667c744e607f9998332d9ef30fad3611 + release: 4.el8 + size: 109032 + version: 1.1.4 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896583 + metadata_only: false + name: platform-python-setuptools + nvr: platform-python-setuptools-39.2.0-6.el8 + payloadhash: 5934b19fab076ef2ddcf46b5b547dccb + release: 6.el8 + size: 646368 + version: 39.2.0 +- arch: s390x + build_id: 1540243 + buildroot_id: 7177545 + buildtime: 1616074808 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465817 + metadata_only: false + name: python3-libs + nvr: python3-libs-3.6.8-37.el8 + payloadhash: df300356689c329ea3ebbd8e0e50428c + release: 37.el8 + size: 8030288 + version: 3.6.8 +- arch: s390x + build_id: 1513957 + buildroot_id: 7096790 + buildtime: 1614005637 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9378954 + metadata_only: false + name: libpwquality + nvr: libpwquality-1.4.4-3.el8 + payloadhash: aeca2b505e49039af71e01a56084d7a5 + release: 3.el8 + size: 107768 + version: 1.4.4 +- arch: noarch + build_id: 747717 + buildroot_id: 4377880 + buildtime: 1534090982 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6181349 + metadata_only: false + name: python3-six + nvr: python3-six-1.11.0-8.el8 + payloadhash: 3a46b593df0c4e15061a4340cb8503bd + release: 8.el8 + size: 38304 + version: 1.11.0 +- arch: noarch + build_id: 747009 + buildroot_id: 4374452 + buildtime: 1534079097 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169270 + metadata_only: false + name: python3-dateutil + nvr: python3-dateutil-2.6.1-6.el8 + payloadhash: 229da5815b24a30b853e16880b69a193 + release: 6.el8 + size: 255964 + version: 2.6.1 +- arch: s390x + build_id: 1608370 + buildroot_id: 7403708 + buildtime: 1621549059 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9743143 + metadata_only: false + name: glib2 + nvr: glib2-2.56.4-10.el8_4 + payloadhash: 38d7e6cf6b076aa542386ef784d785da + release: 10.el8_4 + size: 2530404 + version: 2.56.4 +- arch: s390x + build_id: 1446215 + buildroot_id: 6873474 + buildtime: 1609936760 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9062211 + metadata_only: false + name: librhsm + nvr: librhsm-0.0.3-4.el8 + payloadhash: 64134a4e923912545547151fbb443986 + release: 4.el8 + size: 31508 + version: 0.0.3 +- arch: s390x + build_id: 1449225 + buildroot_id: 6883421 + buildtime: 1610105210 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075288 + metadata_only: false + name: kmod-libs + nvr: kmod-libs-25-17.el8 + payloadhash: 836c22559534f337a7133b1ec8293802 + release: 17.el8 + size: 66776 + version: '25' +- arch: s390x + build_id: 907679 + buildroot_id: 4962513 + buildtime: 1559822094 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7063446 + metadata_only: false + name: python3-dbus + nvr: python3-dbus-1.2.4-15.el8 + payloadhash: efca01f653ce8f3e724caa8f233c3006 + release: 15.el8 + size: 133924 + version: 1.2.4 +- arch: s390x + build_id: 1224593 + buildroot_id: 6081747 + buildtime: 1591905634 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8174123 + metadata_only: false + name: python3-gobject-base + nvr: python3-gobject-base-3.28.3-2.el8 + payloadhash: e1739de5dcda13ff4f51253fe8c6c2ca + release: 2.el8 + size: 312184 + version: 3.28.3 +- arch: s390x + build_id: 1636355 + buildroot_id: 7498297 + buildtime: 1623854632 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9858641 + metadata_only: false + name: openldap + nvr: openldap-2.4.46-17.el8_4 + payloadhash: 32702d5a358ac30783ecf1a1e40daaa1 + release: 17.el8_4 + size: 342664 + version: 2.4.46 +- arch: s390x + build_id: 1037354 + buildroot_id: 5429492 + buildtime: 1576262422 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7628694 + metadata_only: false + name: passwd + nvr: passwd-0.80-3.el8 + payloadhash: b01d83cc66cc2ce7cec6917ee4ea4002 + release: 3.el8 + size: 115476 + version: '0.80' +- arch: s390x + build_id: 1399757 + buildroot_id: 6723953 + buildtime: 1606995962 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8889785 + metadata_only: false + name: libdb-utils + nvr: libdb-utils-5.3.28-40.el8 + payloadhash: 7402c72d050efab5d75400a119562521 + release: 40.el8 + size: 150440 + version: 5.3.28 +- arch: s390x + build_id: 1460547 + buildroot_id: 6918058 + buildtime: 1610710722 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9118104 + metadata_only: false + name: python3-libcomps + nvr: python3-libcomps-0.1.11-5.el8 + payloadhash: 369a847f62f6e19765e0e3243b6f5672 + release: 5.el8 + size: 51280 + version: 0.1.11 +- arch: noarch + build_id: 746941 + buildroot_id: 4374227 + buildtime: 1534078513 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168847 + metadata_only: false + name: python3-decorator + nvr: python3-decorator-4.2.1-2.el8 + payloadhash: 8e25edc54aba4c26c4962fe3df53cca3 + release: 2.el8 + size: 27036 + version: 4.2.1 +- arch: noarch + build_id: 800820 + buildroot_id: 4575314 + buildtime: 1542276035 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6525877 + metadata_only: false + name: python3-inotify + nvr: python3-inotify-0.9.6-13.el8 + payloadhash: 7edde5ba6f70c5bdd543fd295738b6f2 + release: 13.el8 + size: 57676 + version: 0.9.6 +- arch: noarch + build_id: 1380689 + buildroot_id: 6655007 + buildtime: 1604942511 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8794363 + metadata_only: false + name: python3-urllib3 + nvr: python3-urllib3-1.24.2-5.el8 + payloadhash: 3e72ec4338ad0bb966222d5dcb2333b7 + release: 5.el8 + size: 179804 + version: 1.24.2 +- arch: s390x + build_id: 1627034 + buildroot_id: 7465261 + buildtime: 1623179461 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819792 + metadata_only: false + name: python3-syspurpose + nvr: python3-syspurpose-1.28.13-3.el8_4 + payloadhash: 0e233eaeef635ab71d53abe37d29fe0e + release: 3.el8_4 + size: 308924 + version: 1.28.13 +- arch: s390x + build_id: 1389452 + buildroot_id: 6687644 + buildtime: 1605895502 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8837086 + metadata_only: false + name: tpm2-tss + nvr: tpm2-tss-2.3.2-3.el8 + payloadhash: 0ca63c650637978ec50c10ecb9eed99e + release: 3.el8 + size: 239424 + version: 2.3.2 +- arch: s390x + build_id: 747381 + buildroot_id: 4376338 + buildtime: 1534085074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6182497 + metadata_only: false + name: libyaml + nvr: libyaml-0.1.7-5.el8 + payloadhash: 2eee61dd3f9ba4709670fa5d22afb917 + release: 5.el8 + size: 54940 + version: 0.1.7 +- arch: s390x + build_id: 1184235 + buildroot_id: 5929426 + buildtime: 1588610182 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8029174 + metadata_only: false + name: gnupg2 + nvr: gnupg2-2.2.20-2.el8 + payloadhash: f9e4eddfcd74ed1848afd212aa181bcc + release: 2.el8 + size: 2493300 + version: 2.2.20 +- arch: s390x + build_id: 1441861 + buildroot_id: 6860103 + buildtime: 1609761138 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9051392 + metadata_only: false + name: python3-gpg + nvr: python3-gpg-1.13.1-7.el8 + payloadhash: c72dc65b045b78dedf4f4948dce92dc9 + release: 7.el8 + size: 235532 + version: 1.13.1 +- arch: s390x + build_id: 1013911 + buildroot_id: 5340494 + buildtime: 1574160713 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7520904 + metadata_only: false + name: which + nvr: which-2.21-12.el8 + payloadhash: f92ea05e8ef18ef8e86ff5de757b370d + release: 12.el8 + size: 49048 + version: '2.21' +- arch: noarch + build_id: 1237213 + buildroot_id: 6125644 + buildtime: 1593094870 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215425 + metadata_only: false + name: libssh-config + nvr: libssh-config-0.9.4-2.el8 + payloadhash: d4d44f510aea15a2e7c51d7b1166a988 + release: 2.el8 + size: 17796 + version: 0.9.4 +- arch: s390x + build_id: 1479079 + buildroot_id: 6984998 + buildtime: 1611938225 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201139 + metadata_only: false + name: libcurl + nvr: libcurl-7.61.1-18.el8 + payloadhash: 2c6ad96ca320a0e9d87b7e4eadb801d9 + release: 18.el8 + size: 289656 + version: 7.61.1 +- arch: s390x + build_id: 1416620 + buildroot_id: 6784808 + buildtime: 1608027462 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9001996 + metadata_only: false + name: python3-librepo + nvr: python3-librepo-1.12.0-3.el8 + payloadhash: 8f61e9f14bf15aae3cdf03db81a2798f + release: 3.el8 + size: 50700 + version: 1.12.0 +- arch: s390x + build_id: 1618827 + buildroot_id: 7437102 + buildtime: 1622479363 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782913 + metadata_only: false + name: rpm-libs + nvr: rpm-libs-4.14.3-14.el8_4 + payloadhash: 4de874e824a99c2f43ab2a3690a92883 + release: 14.el8_4 + size: 334856 + version: 4.14.3 +- arch: s390x + build_id: 1199395 + buildroot_id: 5988263 + buildtime: 1590005693 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8086042 + metadata_only: false + name: libmodulemd + nvr: libmodulemd-2.9.4-2.el8 + payloadhash: 343c5410e197979cd3a4a563db852843 + release: 2.el8 + size: 165836 + version: 2.9.4 +- arch: s390x + build_id: 1528104 + buildroot_id: 7139228 + buildtime: 1615218218 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417654 + metadata_only: false + name: libdnf + nvr: libdnf-0.55.0-7.el8 + payloadhash: ec1a7bbc6f3ecf89276fdc673eb0a26e + release: 7.el8 + size: 625444 + version: 0.55.0 +- arch: s390x + build_id: 1528104 + buildroot_id: 7139228 + buildtime: 1615218218 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417657 + metadata_only: false + name: python3-hawkey + nvr: python3-hawkey-0.55.0-7.el8 + payloadhash: de1af0ca3613294a12d17c9314aeddf2 + release: 7.el8 + size: 105516 + version: 0.55.0 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417617 + metadata_only: false + name: dnf-data + nvr: dnf-data-4.4.2-11.el8 + payloadhash: 41912b57a025dac9f66f9c03b9bf60ea + release: 11.el8 + size: 154068 + version: 4.4.2 +- arch: s390x + build_id: 1374200 + buildroot_id: 6630139 + buildtime: 1604330676 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8746396 + metadata_only: false + name: pciutils + nvr: pciutils-3.7.0-1.el8 + payloadhash: b8df88806bb9889957ee0661f36837a3 + release: 1.el8 + size: 102756 + version: 3.7.0 +- arch: s390x + build_id: 1479677 + buildroot_id: 6982002 + buildtime: 1611893342 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9194096 + metadata_only: false + name: libibverbs + nvr: libibverbs-32.0-4.el8 + payloadhash: 7bb5ff1138ac6ba8d6c9ec7cfef21563 + release: 4.el8 + size: 299412 + version: '32.0' +- arch: s390x + build_id: 1476759 + buildroot_id: 6972452 + buildtime: 1611748272 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9182218 + metadata_only: false + name: iptables-libs + nvr: iptables-libs-1.8.4-17.el8 + payloadhash: 67d019d41d551ac56e131e3b75731285 + release: 17.el8 + size: 104652 + version: 1.8.4 +- arch: s390x + build_id: 1525173 + buildroot_id: 7130184 + buildtime: 1614949975 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9410263 + metadata_only: false + name: device-mapper-libs + nvr: device-mapper-libs-1.02.175-5.el8 + payloadhash: 4da7dbdd535d7d039e7f6af8e67fb6cf + release: 5.el8 + size: 403748 + version: 1.02.175 +- arch: noarch + build_id: 1420642 + buildroot_id: 6798337 + buildtime: 1608209944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020902 + metadata_only: false + name: elfutils-default-yama-scope + nvr: elfutils-default-yama-scope-0.182-3.el8 + payloadhash: 2003620672397ff00ced147f0dbbe756 + release: 3.el8 + size: 49248 + version: '0.182' +- arch: s390x + build_id: 1647417 + buildroot_id: 7537567 + buildtime: 1624959128 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912937 + metadata_only: false + name: systemd-pam + nvr: systemd-pam-239-45.el8_4.2 + payloadhash: f8a234daec23854fadb8c837e18114aa + release: 45.el8_4.2 + size: 441980 + version: '239' +- arch: s390x + build_id: 1573801 + buildroot_id: 7272688 + buildtime: 1618405985 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561293 + metadata_only: false + name: dbus + nvr: dbus-1.12.8-12.el8_4.2 + payloadhash: 448cc1db5453be57212e9223e6d16c96 + release: 12.el8_4.2 + size: 40796 + version: 1.12.8 +- arch: s390x + build_id: 1618827 + buildroot_id: 7437102 + buildtime: 1622479363 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782918 + metadata_only: false + name: python3-rpm + nvr: python3-rpm-4.14.3-14.el8_4 + payloadhash: db067e8f76e10ab6643bb36ad5603044 + release: 14.el8_4 + size: 158616 + version: 4.14.3 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417616 + metadata_only: false + name: dnf + nvr: dnf-4.4.2-11.el8 + payloadhash: 5df2e1f21c3b8441d55492ae87f1544f + release: 11.el8 + size: 550680 + version: 4.4.2 +- arch: s390x + build_id: 1627034 + buildroot_id: 7465261 + buildtime: 1623179461 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819795 + metadata_only: false + name: dnf-plugin-subscription-manager + nvr: dnf-plugin-subscription-manager-1.28.13-3.el8_4 + payloadhash: aea4377c3789b2beca4b60f4e72840c3 + release: 3.el8_4 + size: 297244 + version: 1.28.13 +- arch: s390x + build_id: 1627034 + buildroot_id: 7465261 + buildtime: 1623179461 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819791 + metadata_only: false + name: subscription-manager + nvr: subscription-manager-1.28.13-3.el8_4 + payloadhash: 22437035cf90726983c378f2046fe345 + release: 3.el8_4 + size: 1184668 + version: 1.28.13 +- arch: s390x + build_id: 1412741 + buildroot_id: 6773493 + buildtime: 1607741766 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8993841 + metadata_only: false + name: gdb-gdbserver + nvr: gdb-gdbserver-8.2-15.el8 + payloadhash: a1fbdd1b11d7fce412e3a56e9fade5ac + release: 15.el8 + size: 422608 + version: '8.2' +- arch: s390x + build_id: 1213699 + buildroot_id: 6041038 + buildtime: 1591175278 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8134030 + metadata_only: false + name: vim-minimal + nvr: vim-minimal-8.0.1763-15.el8 + payloadhash: 8b2b7c5088347ddacda859376736aebf + release: 15.el8 + size: 572740 + version: 8.0.1763 +- arch: noarch + build_id: 746975 + buildroot_id: 4374352 + buildtime: 1534078655 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169012 + metadata_only: false + name: langpacks-en + nvr: langpacks-en-1.0-12.el8 + payloadhash: 1130f256caf9531f47bf94dc9c89a697 + release: 12.el8 + size: 8684 + version: '1.0' +- arch: s390x + build_id: 1487216 + buildroot_id: 7008129 + buildtime: 1612360415 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9234974 + metadata_only: false + name: protobuf-c + nvr: protobuf-c-1.3.0-6.el8 + payloadhash: c78701faa1a01577291e0d72e13e55f8 + release: 6.el8 + size: 37080 + version: 1.3.0 +- arch: s390x + build_id: 1221242 + buildroot_id: 6069064 + buildtime: 1591692352 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157014 + metadata_only: false + name: libmaxminddb + nvr: libmaxminddb-1.2.0-10.el8 + payloadhash: c7d90b0e8be7e6069e6d9de69c6aec91 + release: 10.el8 + size: 31512 + version: 1.2.0 +- arch: s390x + build_id: 1588980 + buildroot_id: 7323896 + buildtime: 1619525443 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650694 + metadata_only: false + name: bind-libs-lite + nvr: bind-libs-lite-9.11.26-4.el8_4 + payloadhash: 8513b96aa7c6e661a6b1c1bef961542c + release: 4.el8_4 + size: 1123516 + version: 9.11.26 +- arch: s390x + build_id: 747178 + buildroot_id: 4375222 + buildtime: 1534081310 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177567 + metadata_only: false + name: libmnl + nvr: libmnl-1.0.4-6.el8 + payloadhash: 29dde4c5dbe2d9483051f2948bc2435f + release: 6.el8 + size: 29580 + version: 1.0.4 +- arch: noarch + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650600 + metadata_only: false + name: python3-bind + nvr: python3-bind-9.11.26-4.el8_4 + payloadhash: f2165135f8433d93285ad5424609d56d + release: 4.el8_4 + size: 151884 + version: 9.11.26 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896584 + metadata_only: false + name: python3-setuptools + nvr: python3-setuptools-39.2.0-6.el8 + payloadhash: 6d34ed1b6b1e4e9a04c9c81f4387aa0c + release: 6.el8 + size: 165444 + version: 39.2.0 +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075061 + metadata_only: false + name: python3-pip + nvr: python3-pip-9.0.3-19.el8 + payloadhash: 595c3569e5c51aad85a1eb6906fb4f71 + release: 19.el8 + size: 19104 + version: 9.0.3 +- arch: s390x + build_id: 1533934 + buildroot_id: 7157440 + buildtime: 1615575655 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9438899 + metadata_only: false + name: iproute + nvr: iproute-5.9.0-4.el8 + payloadhash: 0f1c369e84c403f065e5e022e41bff5a + release: 4.el8 + size: 667892 + version: 5.9.0 +- arch: s390x + build_id: 1421942 + buildroot_id: 6801953 + buildtime: 1608274129 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9025039 + metadata_only: false + name: rsync + nvr: rsync-3.1.3-12.el8 + payloadhash: 57089b732afb560d3ce71814a2f7d424 + release: 12.el8 + size: 406792 + version: 3.1.3 +- arch: s390x + build_id: 1014155 + buildroot_id: 5341427 + buildtime: 1574173268 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7523546 + metadata_only: false + name: diffutils + nvr: diffutils-3.6-6.el8 + payloadhash: a1a3033098c17a1540eef25939c9d349 + release: 6.el8 + size: 363248 + version: '3.6' +- arch: s390x + build_id: 1157209 + buildroot_id: 5819896 + buildtime: 1585911821 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7930567 + metadata_only: false + name: wget + nvr: wget-1.19.5-10.el8 + payloadhash: b48281de2099b358afd8f81c25806638 + release: 10.el8 + size: 745516 + version: 1.19.5 +5229575: +- arch: noarch + build_id: 1473607 + buildroot_id: 6962315 + buildtime: 1611592265 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9169364 + metadata_only: false + name: tzdata + nvr: tzdata-2021a-1.el8 + payloadhash: a928d660b5bd64a91bd6bfc055c865e5 + release: 1.el8 + size: 482936 + version: 2021a +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075063 + metadata_only: false + name: python3-pip-wheel + nvr: python3-pip-wheel-9.0.3-19.el8 + payloadhash: 997ee4c01abb0e5b77e5d43a9181e252 + release: 19.el8 + size: 1094660 + version: 9.0.3 +- arch: noarch + build_id: 1573801 + buildroot_id: 7272689 + buildtime: 1618406023 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561237 + metadata_only: false + name: dbus-common + nvr: dbus-common-1.12.8-12.el8_4.2 + payloadhash: 9eeffd2111ff14f34ac723276c01283b + release: 12.el8_4.2 + size: 45624 + version: 1.12.8 +- arch: noarch + build_id: 1166694 + buildroot_id: 5856989 + buildtime: 1586943783 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7971019 + metadata_only: false + name: setup + nvr: setup-2.12.2-6.el8 + payloadhash: 109811c80a28ad746bcd12d4d0c06794 + release: 6.el8 + size: 183896 + version: 2.12.2 +- arch: noarch + build_id: 746023 + buildroot_id: 4369700 + buildtime: 1534063206 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156542 + metadata_only: false + name: basesystem + nvr: basesystem-11-5.el8 + payloadhash: 31bc067a6462aacd3b891681bdb27512 + release: 5.el8 + size: 9652 + version: '11' +- arch: noarch + build_id: 829223 + buildroot_id: 4678814 + buildtime: 1547644074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696179 + metadata_only: false + name: ncurses-base + nvr: ncurses-base-6.1-7.20180224.el8 + payloadhash: 6f474c29de2d5954bf13ae3a68215dc9 + release: 7.20180224.el8 + size: 81712 + version: '6.1' +- arch: ppc64le + build_id: 1360527 + buildroot_id: 6582953 + buildtime: 1603274000 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8672645 + metadata_only: false + name: libselinux + nvr: libselinux-2.9-5.el8 + payloadhash: 81b0706b0fe9f538b7cbbd81921df049 + release: 5.el8 + size: 180396 + version: '2.9' +- arch: ppc64le + build_id: 1525306 + buildroot_id: 7130578 + buildtime: 1614966633 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412424 + metadata_only: false + name: glibc-minimal-langpack + nvr: glibc-minimal-langpack-2.28-151.el8 + payloadhash: 26548a0b751fa42e443f1e628bb4fbc7 + release: 151.el8 + size: 56284 + version: '2.28' +- arch: ppc64le + build_id: 1525306 + buildroot_id: 7130578 + buildtime: 1614966633 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412393 + metadata_only: false + name: glibc + nvr: glibc-2.28-151.el8 + payloadhash: 5b964541b58359b314e040124bb2df7d + release: 151.el8 + size: 5519740 + version: '2.28' +- arch: ppc64le + build_id: 1449855 + buildroot_id: 6885597 + buildtime: 1610126101 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9079445 + metadata_only: false + name: libsepol + nvr: libsepol-2.9-2.el8 + payloadhash: e9579e9e71c80851b2bffe0cedc3671f + release: 2.el8 + size: 375576 + version: '2.9' +- arch: ppc64le + build_id: 803342 + buildroot_id: 4585486 + buildtime: 1542895759 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6547287 + metadata_only: false + name: xz-libs + nvr: xz-libs-5.2.4-3.el8 + payloadhash: 34a8eed955385d3eb755284864bd51e9 + release: 3.el8 + size: 113676 + version: 5.2.4 +- arch: ppc64le + build_id: 747111 + buildroot_id: 4375050 + buildtime: 1534081122 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6175791 + metadata_only: false + name: libgpg-error + nvr: libgpg-error-1.31-1.el8 + payloadhash: d67baa0e5e9d7e3773d9fc133e24bc9d + release: 1.el8 + size: 254528 + version: '1.31' +- arch: ppc64le + build_id: 1201127 + buildroot_id: 5994860 + buildtime: 1590147958 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8090633 + metadata_only: false + name: libcap + nvr: libcap-2.26-4.el8 + payloadhash: 3094a11960f86147bd53abd988d464d4 + release: 4.el8 + size: 63280 + version: '2.26' +- arch: ppc64le + build_id: 1216822 + buildroot_id: 6052387 + buildtime: 1591349119 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8146187 + metadata_only: false + name: libzstd + nvr: libzstd-1.4.4-1.el8 + payloadhash: 3aecba6f7564cdb17c8a50d2d92e3a2a + release: 1.el8 + size: 281836 + version: 1.4.4 +- arch: ppc64le + build_id: 1606778 + buildroot_id: 7397476 + buildtime: 1621412167 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9736490 + metadata_only: false + name: libxml2 + nvr: libxml2-2.9.7-9.el8_4.2 + payloadhash: 5bfbc1052add0a672ed8ec4af7edd38d + release: 9.el8_4.2 + size: 770340 + version: 2.9.7 +- arch: ppc64le + build_id: 1397463 + buildroot_id: 6715855 + buildtime: 1606832514 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8878696 + metadata_only: false + name: sqlite-libs + nvr: sqlite-libs-3.26.0-13.el8 + payloadhash: f4123f2c1b4f9657c3134794cc4cb5de + release: 13.el8 + size: 637628 + version: 3.26.0 +- arch: ppc64le + build_id: 1487471 + buildroot_id: 7009374 + buildtime: 1612371320 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9239283 + metadata_only: false + name: json-c + nvr: json-c-0.13.1-0.4.el8 + payloadhash: 9cd50416e6ed5fad2483853346b28bf0 + release: 0.4.el8 + size: 43376 + version: 0.13.1 +- arch: ppc64le + build_id: 1192639 + buildroot_id: 5961300 + buildtime: 1589395459 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8062237 + metadata_only: false + name: libffi + nvr: libffi-3.1-22.el8 + payloadhash: 9e8c30e3c6d02fc2a3bf457f4dae7ef4 + release: 22.el8 + size: 38440 + version: '3.1' +- arch: ppc64le + build_id: 748275 + buildroot_id: 4379846 + buildtime: 1534096761 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6192846 + metadata_only: false + name: readline + nvr: readline-7.0-10.el8 + payloadhash: 676d10f360974bdf3ae72abb0893d454 + release: 10.el8 + size: 214440 + version: '7.0' +- arch: ppc64le + build_id: 746019 + buildroot_id: 4369784 + buildtime: 1534064141 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6157330 + metadata_only: false + name: libattr + nvr: libattr-2.4.48-3.el8 + payloadhash: 054a6f3530040a3ed194bfe7ff0ce5d6 + release: 3.el8 + size: 27144 + version: 2.4.48 +- arch: ppc64le + build_id: 1165793 + buildroot_id: 5853082 + buildtime: 1586866630 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7967305 + metadata_only: false + name: coreutils-single + nvr: coreutils-single-8.30-8.el8 + payloadhash: da04f0ca0ad115d15f19edc0ab1b0771 + release: 8.el8 + size: 672136 + version: '8.30' +- arch: ppc64le + build_id: 1465282 + buildroot_id: 6933596 + buildtime: 1611050104 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132960 + metadata_only: false + name: libmount + nvr: libmount-2.32.1-27.el8 + payloadhash: e5509f1a7dc2412a020615677f6e06ee + release: 27.el8 + size: 261064 + version: 2.32.1 +- arch: ppc64le + build_id: 1465282 + buildroot_id: 6933596 + buildtime: 1611050104 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132958 + metadata_only: false + name: libsmartcols + nvr: libsmartcols-2.32.1-27.el8 + payloadhash: 7e2580c430fa69379d86bab8c07192e6 + release: 27.el8 + size: 191524 + version: 2.32.1 +- arch: ppc64le + build_id: 906174 + buildroot_id: 4955482 + buildtime: 1559576811 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7052267 + metadata_only: false + name: lua-libs + nvr: lua-libs-5.3.4-11.el8 + payloadhash: 68282c15bc2e5553c4ff77576d83db88 + release: 11.el8 + size: 130864 + version: 5.3.4 +- arch: ppc64le + build_id: 1168710 + buildroot_id: 5866948 + buildtime: 1587109762 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7983734 + metadata_only: false + name: chkconfig + nvr: chkconfig-1.13-2.el8 + payloadhash: 2a69b41773ebb8cd9dfe3efb0f99e295 + release: 2.el8 + size: 203524 + version: '1.13' +- arch: ppc64le + build_id: 909244 + buildroot_id: 4969003 + buildtime: 1560162435 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7072896 + metadata_only: false + name: libidn2 + nvr: libidn2-2.2.0-1.el8 + payloadhash: a479ed499c3d032bd27500867f562e8d + release: 1.el8 + size: 97216 + version: 2.2.0 +- arch: ppc64le + build_id: 1480523 + buildroot_id: 6984973 + buildtime: 1611937427 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9200988 + metadata_only: false + name: file-libs + nvr: file-libs-5.33-16.el8_3.1 + payloadhash: a36d40aec5960d634bc1255dbe460278 + release: 16.el8_3.1 + size: 562860 + version: '5.33' +- arch: ppc64le + build_id: 1054304 + buildroot_id: 5491135 + buildtime: 1578502390 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7666115 + metadata_only: false + name: audit-libs + nvr: audit-libs-3.0-0.17.20191104git1c2f876.el8 + payloadhash: c8c3346740d366df18f2ef342fdf0557 + release: 0.17.20191104git1c2f876.el8 + size: 130428 + version: '3.0' +- arch: ppc64le + build_id: 1615115 + buildroot_id: 7425906 + buildtime: 1622121462 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9773189 + metadata_only: false + name: lz4-libs + nvr: lz4-libs-1.8.3-3.el8_4 + payloadhash: 7c6aadd0afd3b0d43ffab5a19ddfbdfa + release: 3.el8_4 + size: 74380 + version: 1.8.3 +- arch: ppc64le + build_id: 774503 + buildroot_id: 4488610 + buildtime: 1538130078 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399080 + metadata_only: false + name: gdbm-libs + nvr: gdbm-libs-1.18-1.el8 + payloadhash: f65295bde67932415b5b7f1957f97803 + release: 1.el8 + size: 64368 + version: '1.18' +- arch: ppc64le + build_id: 747294 + buildroot_id: 4375870 + buildtime: 1534083458 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180533 + metadata_only: false + name: libtasn1 + nvr: libtasn1-4.13-3.el8 + payloadhash: 54731d795b8368177cbab0acd907f02f + release: 3.el8 + size: 83296 + version: '4.13' +- arch: ppc64le + build_id: 761272 + buildroot_id: 4433031 + buildtime: 1535970138 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6279967 + metadata_only: false + name: pcre + nvr: pcre-8.42-4.el8 + payloadhash: cac176ceff18ac95c43c5e87c0f64a37 + release: 4.el8 + size: 209432 + version: '8.42' +- arch: ppc64le + build_id: 1647417 + buildroot_id: 7537560 + buildtime: 1624959314 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912888 + metadata_only: false + name: systemd-libs + nvr: systemd-libs-239-45.el8_4.2 + payloadhash: 2c8626f1e17bc65a561fc35881167794 + release: 45.el8_4.2 + size: 1139536 + version: '239' +- arch: noarch + build_id: 1234030 + buildroot_id: 6114472 + buildtime: 1592867963 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8205302 + metadata_only: false + name: ca-certificates + nvr: ca-certificates-2020.2.41-80.0.el8_2 + payloadhash: df20d39b69d47efe9a26fb1316c8b323 + release: 80.0.el8_2 + size: 399264 + version: 2020.2.41 +- arch: ppc64le + build_id: 1286148 + buildroot_id: 6307444 + buildtime: 1597242812 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8351502 + metadata_only: false + name: libusbx + nvr: libusbx-1.0.23-4.el8 + payloadhash: cf2f2124374ccb8736fcef46a272afdc + release: 4.el8 + size: 79096 + version: 1.0.23 +- arch: ppc64le + build_id: 1483913 + buildroot_id: 6995723 + buildtime: 1612205516 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9211047 + metadata_only: false + name: libsemanage + nvr: libsemanage-2.9-6.el8 + payloadhash: 5b7c2a95a5a1ba972a1523c1dd455f23 + release: 6.el8 + size: 178776 + version: '2.9' +- arch: ppc64le + build_id: 747310 + buildroot_id: 4375970 + buildtime: 1534083793 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180645 + metadata_only: false + name: libutempter + nvr: libutempter-1.1.6-14.el8 + payloadhash: afd19dac123dcdfc04333a636ce78ea0 + release: 14.el8 + size: 31904 + version: 1.1.6 +- arch: ppc64le + build_id: 1215600 + buildroot_id: 6048395 + buildtime: 1591290879 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8143603 + metadata_only: false + name: libpsl + nvr: libpsl-0.20.2-6.el8 + payloadhash: fc00bd1a0e6f9bdd11418f2bde7722de + release: 6.el8 + size: 63692 + version: 0.20.2 +- arch: ppc64le + build_id: 1454801 + buildroot_id: 6900337 + buildtime: 1610445385 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9094379 + metadata_only: false + name: gzip + nvr: gzip-1.9-12.el8 + payloadhash: e34cb4822ee50c972208b6e5f57ebd4a + release: 12.el8 + size: 172560 + version: '1.9' +- arch: ppc64le + build_id: 804625 + buildroot_id: 4589608 + buildtime: 1543246375 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551443 + metadata_only: false + name: cracklib-dicts + nvr: cracklib-dicts-2.9.6-15.el8 + payloadhash: af358918a133190cf0c33dad3c8fe8f6 + release: 15.el8 + size: 4143756 + version: 2.9.6 +- arch: ppc64le + build_id: 747521 + buildroot_id: 4376977 + buildtime: 1534088148 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6184923 + metadata_only: false + name: mpfr + nvr: mpfr-3.1.6-1.el8 + payloadhash: cb6f53ec49c93b55d729986cd9a4262e + release: 1.el8 + size: 238680 + version: 3.1.6 +- arch: ppc64le + build_id: 1460547 + buildroot_id: 6918059 + buildtime: 1610710872 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9118084 + metadata_only: false + name: libcomps + nvr: libcomps-0.1.11-5.el8 + payloadhash: 4dfb94e4ba906c68b4f4e208128bb366 + release: 5.el8 + size: 86744 + version: 0.1.11 +- arch: ppc64le + build_id: 747165 + buildroot_id: 4375365 + buildtime: 1534081729 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177358 + metadata_only: false + name: libksba + nvr: libksba-1.3.5-7.el8 + payloadhash: 3f15f3aa7e1ddf40b2bd7c5491e2263f + release: 7.el8 + size: 150076 + version: 1.3.5 +- arch: ppc64le + build_id: 1221598 + buildroot_id: 6070230 + buildtime: 1591702647 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157501 + metadata_only: false + name: libnghttp2 + nvr: libnghttp2-1.33.0-3.el8_2.1 + payloadhash: f643ec76a76c7882dba2ef1e502a704c + release: 3.el8_2.1 + size: 85860 + version: 1.33.0 +- arch: ppc64le + build_id: 1508952 + buildroot_id: 7083728 + buildtime: 1613731428 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9364635 + metadata_only: false + name: libseccomp + nvr: libseccomp-2.5.1-1.el8 + payloadhash: 355a27a67f4f615372baccd32f5494a0 + release: 1.el8 + size: 77044 + version: 2.5.1 +- arch: ppc64le + build_id: 1399824 + buildroot_id: 6724196 + buildtime: 1606998083 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8890388 + metadata_only: false + name: gawk + nvr: gawk-4.2.1-2.el8 + payloadhash: dea50322272ef85f8b1615f15988c8eb + release: 2.el8 + size: 1204588 + version: 4.2.1 +- arch: ppc64le + build_id: 747205 + buildroot_id: 4375579 + buildtime: 1534082464 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6178311 + metadata_only: false + name: libnsl2 + nvr: libnsl2-1.2.0-2.20180605git4a062cf.el8 + payloadhash: 99a1b7290f60ed246b5262478db7e358 + release: 2.20180605git4a062cf.el8 + size: 63416 + version: 1.2.0 +- arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320562 + metadata_only: false + name: crypto-policies + nvr: crypto-policies-20210209-1.gitbfb6bed.el8_3 + payloadhash: 48e3a2b96a8676497f52723238d02615 + release: 1.gitbfb6bed.el8_3 + size: 62520 + version: '20210209' +- arch: ppc64le + build_id: 936936 + buildroot_id: 5062316 + buildtime: 1563984295 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7200938 + metadata_only: false + name: libtirpc + nvr: libtirpc-1.1.4-4.el8 + payloadhash: d1a38ad4fa9e74a391a634513bdfd4a8 + release: 4.el8 + size: 127972 + version: 1.1.4 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896583 + metadata_only: false + name: platform-python-setuptools + nvr: platform-python-setuptools-39.2.0-6.el8 + payloadhash: 5934b19fab076ef2ddcf46b5b547dccb + release: 6.el8 + size: 646368 + version: 39.2.0 +- arch: ppc64le + build_id: 1540243 + buildroot_id: 7177559 + buildtime: 1616076385 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465791 + metadata_only: false + name: python3-libs + nvr: python3-libs-3.6.8-37.el8 + payloadhash: fe4ba35ffd5708787d56b6272f5b8f6b + release: 37.el8 + size: 8518768 + version: 3.6.8 +- arch: ppc64le + build_id: 1513957 + buildroot_id: 7096788 + buildtime: 1614005728 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9378936 + metadata_only: false + name: libpwquality + nvr: libpwquality-1.4.4-3.el8 + payloadhash: 78422ecfff0d26a35acb36512c956585 + release: 3.el8 + size: 110748 + version: 1.4.4 +- arch: noarch + build_id: 747717 + buildroot_id: 4377880 + buildtime: 1534090982 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6181349 + metadata_only: false + name: python3-six + nvr: python3-six-1.11.0-8.el8 + payloadhash: 3a46b593df0c4e15061a4340cb8503bd + release: 8.el8 + size: 38304 + version: 1.11.0 +- arch: noarch + build_id: 747009 + buildroot_id: 4374452 + buildtime: 1534079097 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169270 + metadata_only: false + name: python3-dateutil + nvr: python3-dateutil-2.6.1-6.el8 + payloadhash: 229da5815b24a30b853e16880b69a193 + release: 6.el8 + size: 255964 + version: 2.6.1 +- arch: ppc64le + build_id: 1608370 + buildroot_id: 7403699 + buildtime: 1621549324 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9743113 + metadata_only: false + name: glib2 + nvr: glib2-2.56.4-10.el8_4 + payloadhash: b668ddbf1ca1cca9e3deb7d83a21cd38 + release: 10.el8_4 + size: 2701140 + version: 2.56.4 +- arch: ppc64le + build_id: 1446215 + buildroot_id: 6873473 + buildtime: 1609936724 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9062199 + metadata_only: false + name: librhsm + nvr: librhsm-0.0.3-4.el8 + payloadhash: 7f4261183fef494a9f897f1058be3b95 + release: 4.el8 + size: 32744 + version: 0.0.3 +- arch: ppc64le + build_id: 1449225 + buildroot_id: 6883417 + buildtime: 1610105284 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075270 + metadata_only: false + name: kmod-libs + nvr: kmod-libs-25-17.el8 + payloadhash: b156d8a5e262774f06df54406ab2c4b0 + release: 17.el8 + size: 75824 + version: '25' +- arch: ppc64le + build_id: 907679 + buildroot_id: 4962514 + buildtime: 1559822391 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7063449 + metadata_only: false + name: python3-dbus + nvr: python3-dbus-1.2.4-15.el8 + payloadhash: 4d366717fc269b47719c77302b544193 + release: 15.el8 + size: 140192 + version: 1.2.4 +- arch: ppc64le + build_id: 1224593 + buildroot_id: 6081748 + buildtime: 1591905886 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8174132 + metadata_only: false + name: python3-gobject-base + nvr: python3-gobject-base-3.28.3-2.el8 + payloadhash: b4c23297793572be57b20ac857d97dd9 + release: 2.el8 + size: 334648 + version: 3.28.3 +- arch: ppc64le + build_id: 1636355 + buildroot_id: 7498300 + buildtime: 1623854733 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9858617 + metadata_only: false + name: openldap + nvr: openldap-2.4.46-17.el8_4 + payloadhash: b025a9cfdf1726299a9273c915bf593a + release: 17.el8_4 + size: 385208 + version: 2.4.46 +- arch: ppc64le + build_id: 1037354 + buildroot_id: 5429499 + buildtime: 1576262537 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7628695 + metadata_only: false + name: passwd + nvr: passwd-0.80-3.el8 + payloadhash: 23f24473e4fef89abcfd926ecd009d67 + release: 3.el8 + size: 116364 + version: '0.80' +- arch: ppc64le + build_id: 1399757 + buildroot_id: 6723957 + buildtime: 1606996191 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8889725 + metadata_only: false + name: libdb-utils + nvr: libdb-utils-5.3.28-40.el8 + payloadhash: 49f3053fe1d14afc520d84311af409fc + release: 40.el8 + size: 161832 + version: 5.3.28 +- arch: ppc64le + build_id: 1460547 + buildroot_id: 6918059 + buildtime: 1610710872 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9118086 + metadata_only: false + name: python3-libcomps + nvr: python3-libcomps-0.1.11-5.el8 + payloadhash: ca527d1958c6c9db4c4c1eaa9d025b3b + release: 5.el8 + size: 55568 + version: 0.1.11 +- arch: noarch + build_id: 746941 + buildroot_id: 4374227 + buildtime: 1534078513 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168847 + metadata_only: false + name: python3-decorator + nvr: python3-decorator-4.2.1-2.el8 + payloadhash: 8e25edc54aba4c26c4962fe3df53cca3 + release: 2.el8 + size: 27036 + version: 4.2.1 +- arch: noarch + build_id: 800820 + buildroot_id: 4575314 + buildtime: 1542276035 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6525877 + metadata_only: false + name: python3-inotify + nvr: python3-inotify-0.9.6-13.el8 + payloadhash: 7edde5ba6f70c5bdd543fd295738b6f2 + release: 13.el8 + size: 57676 + version: 0.9.6 +- arch: noarch + build_id: 1380689 + buildroot_id: 6655007 + buildtime: 1604942511 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8794363 + metadata_only: false + name: python3-urllib3 + nvr: python3-urllib3-1.24.2-5.el8 + payloadhash: 3e72ec4338ad0bb966222d5dcb2333b7 + release: 5.el8 + size: 179804 + version: 1.24.2 +- arch: ppc64le + build_id: 1627034 + buildroot_id: 7465259 + buildtime: 1623179683 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819753 + metadata_only: false + name: python3-syspurpose + nvr: python3-syspurpose-1.28.13-3.el8_4 + payloadhash: c87688545c8b0f4918ee483edb20edc4 + release: 3.el8_4 + size: 308912 + version: 1.28.13 +- arch: ppc64le + build_id: 1389452 + buildroot_id: 6687648 + buildtime: 1605895696 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8837074 + metadata_only: false + name: tpm2-tss + nvr: tpm2-tss-2.3.2-3.el8 + payloadhash: ac117851d70c8fee7c238f2bf0597412 + release: 3.el8 + size: 229952 + version: 2.3.2 +- arch: ppc64le + build_id: 747381 + buildroot_id: 4376360 + buildtime: 1534085160 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6182510 + metadata_only: false + name: libyaml + nvr: libyaml-0.1.7-5.el8 + payloadhash: f54b333eee11557a640e7ae6ebf1b414 + release: 5.el8 + size: 68244 + version: 0.1.7 +- arch: ppc64le + build_id: 1184235 + buildroot_id: 5929428 + buildtime: 1588610221 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8029175 + metadata_only: false + name: gnupg2 + nvr: gnupg2-2.2.20-2.el8 + payloadhash: 328205c75ae6618bbacea0a9967ef491 + release: 2.el8 + size: 2817748 + version: 2.2.20 +- arch: ppc64le + build_id: 1441861 + buildroot_id: 6860096 + buildtime: 1609761106 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9051353 + metadata_only: false + name: python3-gpg + nvr: python3-gpg-1.13.1-7.el8 + payloadhash: e138ad75581d0675ca730ba740d9fc6f + release: 7.el8 + size: 250340 + version: 1.13.1 +- arch: ppc64le + build_id: 1013911 + buildroot_id: 5340497 + buildtime: 1574160865 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7520906 + metadata_only: false + name: which + nvr: which-2.21-12.el8 + payloadhash: c031f5c3f9ae3321f1fa5770d69105d3 + release: 12.el8 + size: 49776 + version: '2.21' +- arch: noarch + build_id: 1237213 + buildroot_id: 6125644 + buildtime: 1593094870 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215425 + metadata_only: false + name: libssh-config + nvr: libssh-config-0.9.4-2.el8 + payloadhash: d4d44f510aea15a2e7c51d7b1166a988 + release: 2.el8 + size: 17796 + version: 0.9.4 +- arch: ppc64le + build_id: 1479079 + buildroot_id: 6984993 + buildtime: 1611938357 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201110 + metadata_only: false + name: libcurl + nvr: libcurl-7.61.1-18.el8 + payloadhash: c138853109b0a64ece469d83b791f34f + release: 18.el8 + size: 321964 + version: 7.61.1 +- arch: ppc64le + build_id: 1416620 + buildroot_id: 6784806 + buildtime: 1608027628 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9001978 + metadata_only: false + name: python3-librepo + nvr: python3-librepo-1.12.0-3.el8 + payloadhash: be35e793bfac0da54a517ae65efa205c + release: 3.el8 + size: 53716 + version: 1.12.0 +- arch: ppc64le + build_id: 1618827 + buildroot_id: 7437095 + buildtime: 1622479414 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782831 + metadata_only: false + name: rpm + nvr: rpm-4.14.3-14.el8_4 + payloadhash: 2a0012388aad2c830d01ec88a1ce3978 + release: 14.el8_4 + size: 554356 + version: 4.14.3 +- arch: ppc64le + build_id: 1199395 + buildroot_id: 5988264 + buildtime: 1590005940 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8086048 + metadata_only: false + name: libmodulemd + nvr: libmodulemd-2.9.4-2.el8 + payloadhash: f62fc893755b54da098b6f1e844d1880 + release: 2.el8 + size: 180920 + version: 2.9.4 +- arch: ppc64le + build_id: 1528104 + buildroot_id: 7139226 + buildtime: 1615218300 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417630 + metadata_only: false + name: libdnf + nvr: libdnf-0.55.0-7.el8 + payloadhash: 04b085e911458cab0232f53946b6cf5b + release: 7.el8 + size: 682784 + version: 0.55.0 +- arch: ppc64le + build_id: 1528104 + buildroot_id: 7139226 + buildtime: 1615218300 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417633 + metadata_only: false + name: python3-hawkey + nvr: python3-hawkey-0.55.0-7.el8 + payloadhash: 06474a9f6a771dc5f65867ca9ad182c2 + release: 7.el8 + size: 113624 + version: 0.55.0 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417617 + metadata_only: false + name: dnf-data + nvr: dnf-data-4.4.2-11.el8 + payloadhash: 41912b57a025dac9f66f9c03b9bf60ea + release: 11.el8 + size: 154068 + version: 4.4.2 +- arch: ppc64le + build_id: 1374200 + buildroot_id: 6630140 + buildtime: 1604330768 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8746376 + metadata_only: false + name: pciutils + nvr: pciutils-3.7.0-1.el8 + payloadhash: 8b5fe6a50cea61aa56abed1b3023d47e + release: 1.el8 + size: 107100 + version: 3.7.0 +- arch: ppc64le + build_id: 1479677 + buildroot_id: 6982006 + buildtime: 1611893528 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9194024 + metadata_only: false + name: libibverbs + nvr: libibverbs-32.0-4.el8 + payloadhash: 227601cc988df39b78cfb3107161359e + release: 4.el8 + size: 352456 + version: '32.0' +- arch: ppc64le + build_id: 1476759 + buildroot_id: 6972457 + buildtime: 1611748452 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9182185 + metadata_only: false + name: iptables-libs + nvr: iptables-libs-1.8.4-17.el8 + payloadhash: 2a604b154ef22bf4da6a6da1bfa0da65 + release: 17.el8 + size: 114412 + version: 1.8.4 +- arch: ppc64le + build_id: 1525173 + buildroot_id: 7130185 + buildtime: 1614950161 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9410194 + metadata_only: false + name: device-mapper-libs + nvr: device-mapper-libs-1.02.175-5.el8 + payloadhash: 84c596d4ec6d9769e016973b8f27153b + release: 5.el8 + size: 425176 + version: 1.02.175 +- arch: noarch + build_id: 1420642 + buildroot_id: 6798337 + buildtime: 1608209944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020902 + metadata_only: false + name: elfutils-default-yama-scope + nvr: elfutils-default-yama-scope-0.182-3.el8 + payloadhash: 2003620672397ff00ced147f0dbbe756 + release: 3.el8 + size: 49248 + version: '0.182' +- arch: ppc64le + build_id: 1647417 + buildroot_id: 7537560 + buildtime: 1624959314 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912889 + metadata_only: false + name: systemd-pam + nvr: systemd-pam-239-45.el8_4.2 + payloadhash: 07e19f0e00bfe196d4e9a403644c52b1 + release: 45.el8_4.2 + size: 505060 + version: '239' +- arch: ppc64le + build_id: 1573801 + buildroot_id: 7272692 + buildtime: 1618406165 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561251 + metadata_only: false + name: dbus + nvr: dbus-1.12.8-12.el8_4.2 + payloadhash: 0824f280434a1b51f3fcdfe272c7fc0d + release: 12.el8_4.2 + size: 40792 + version: 1.12.8 +- arch: ppc64le + build_id: 1618827 + buildroot_id: 7437095 + buildtime: 1622479414 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782837 + metadata_only: false + name: python3-rpm + nvr: python3-rpm-4.14.3-14.el8_4 + payloadhash: 1bf75b509a71d355e599fb2ce880d7f2 + release: 14.el8_4 + size: 165616 + version: 4.14.3 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417616 + metadata_only: false + name: dnf + nvr: dnf-4.4.2-11.el8 + payloadhash: 5df2e1f21c3b8441d55492ae87f1544f + release: 11.el8 + size: 550680 + version: 4.4.2 +- arch: ppc64le + build_id: 1627034 + buildroot_id: 7465259 + buildtime: 1623179683 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819756 + metadata_only: false + name: dnf-plugin-subscription-manager + nvr: dnf-plugin-subscription-manager-1.28.13-3.el8_4 + payloadhash: 76460dc6648a74ac162c218cfff4eb38 + release: 3.el8_4 + size: 300768 + version: 1.28.13 +- arch: ppc64le + build_id: 1627034 + buildroot_id: 7465259 + buildtime: 1623179683 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819752 + metadata_only: false + name: subscription-manager + nvr: subscription-manager-1.28.13-3.el8_4 + payloadhash: 5a5d38089e733cf817d775546b7b35b0 + release: 3.el8_4 + size: 1185740 + version: 1.28.13 +- arch: ppc64le + build_id: 1412741 + buildroot_id: 6773498 + buildtime: 1607742198 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8993826 + metadata_only: false + name: gdb-gdbserver + nvr: gdb-gdbserver-8.2-15.el8 + payloadhash: 5afda8a7767fe6d430518ebc84f13e54 + release: 15.el8 + size: 458332 + version: '8.2' +- arch: ppc64le + build_id: 1213699 + buildroot_id: 6041042 + buildtime: 1591175570 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8134038 + metadata_only: false + name: vim-minimal + nvr: vim-minimal-8.0.1763-15.el8 + payloadhash: 437053f3b2dbc8816252a3bd728a2986 + release: 15.el8 + size: 623728 + version: 8.0.1763 +- arch: noarch + build_id: 746975 + buildroot_id: 4374352 + buildtime: 1534078655 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169012 + metadata_only: false + name: langpacks-en + nvr: langpacks-en-1.0-12.el8 + payloadhash: 1130f256caf9531f47bf94dc9c89a697 + release: 12.el8 + size: 8684 + version: '1.0' +- arch: ppc64le + build_id: 1446652 + buildroot_id: 6874892 + buildtime: 1609953434 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9063806 + metadata_only: false + name: fstrm + nvr: fstrm-0.6.0-3.el8.1 + payloadhash: c0ea0bdd170fa075a9c49e3eb201d700 + release: 3.el8.1 + size: 29608 + version: 0.6.0 +- arch: ppc64le + build_id: 1221242 + buildroot_id: 6069065 + buildtime: 1591692547 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157019 + metadata_only: false + name: libmaxminddb + nvr: libmaxminddb-1.2.0-10.el8 + payloadhash: 3a0ba8fe66ccb6a640fee8f8c234afb6 + release: 10.el8 + size: 33816 + version: 1.2.0 +- arch: ppc64le + build_id: 1588980 + buildroot_id: 7323889 + buildtime: 1619525890 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650619 + metadata_only: false + name: bind-libs-lite + nvr: bind-libs-lite-9.11.26-4.el8_4 + payloadhash: f6e27389506f29abd93dcac2372f66b4 + release: 4.el8_4 + size: 1309916 + version: 9.11.26 +- arch: ppc64le + build_id: 747178 + buildroot_id: 4375441 + buildtime: 1534081993 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177574 + metadata_only: false + name: libmnl + nvr: libmnl-1.0.4-6.el8 + payloadhash: 1cf7c26a0381f369bc3675e96e1fafdc + release: 6.el8 + size: 30248 + version: 1.0.4 +- arch: noarch + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650600 + metadata_only: false + name: python3-bind + nvr: python3-bind-9.11.26-4.el8_4 + payloadhash: f2165135f8433d93285ad5424609d56d + release: 4.el8_4 + size: 151884 + version: 9.11.26 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896584 + metadata_only: false + name: python3-setuptools + nvr: python3-setuptools-39.2.0-6.el8 + payloadhash: 6d34ed1b6b1e4e9a04c9c81f4387aa0c + release: 6.el8 + size: 165444 + version: 39.2.0 +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075061 + metadata_only: false + name: python3-pip + nvr: python3-pip-9.0.3-19.el8 + payloadhash: 595c3569e5c51aad85a1eb6906fb4f71 + release: 19.el8 + size: 19104 + version: 9.0.3 +- arch: ppc64le + build_id: 1533934 + buildroot_id: 7157441 + buildtime: 1615575756 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9438878 + metadata_only: false + name: iproute + nvr: iproute-5.9.0-4.el8 + payloadhash: 89a3f6ae41a433ef7de36cca89c3ff15 + release: 4.el8 + size: 803604 + version: 5.9.0 +- arch: ppc64le + build_id: 1397548 + buildroot_id: 6716403 + buildtime: 1606840028 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8879940 + metadata_only: false + name: procps-ng + nvr: procps-ng-3.3.15-6.el8 + payloadhash: ea501f7a820eaae01b77958ca44035cc + release: 6.el8 + size: 351664 + version: 3.3.15 +- arch: ppc64le + build_id: 1014155 + buildroot_id: 5341432 + buildtime: 1574173602 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7523548 + metadata_only: false + name: diffutils + nvr: diffutils-3.6-6.el8 + payloadhash: 446f3edbe29cba07f875d84d4ba7aaea + release: 6.el8 + size: 374380 + version: '3.6' +- arch: ppc64le + build_id: 1157209 + buildroot_id: 5819897 + buildtime: 1585912440 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7930572 + metadata_only: false + name: wget + nvr: wget-1.19.5-10.el8 + payloadhash: 4cf6d404bd3f8af31d8719527cc303eb + release: 10.el8 + size: 764848 + version: 1.19.5 +- arch: ppc64le + build_id: 1334981 + buildroot_id: 6477771 + buildtime: 1601417163 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8495859 + metadata_only: false + name: libgcc + nvr: libgcc-8.4.1-1.el8 + payloadhash: d8f3170c004a71f65890d9134f76b49d + release: 1.el8 + size: 67860 + version: 8.4.1 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896582 + metadata_only: false + name: python3-setuptools-wheel + nvr: python3-setuptools-wheel-39.2.0-6.el8 + payloadhash: f7a0c30562c572b2b169a51cdd75df84 + release: 6.el8 + size: 294672 + version: 39.2.0 +- arch: ppc64le + build_id: 1627034 + buildroot_id: 7465259 + buildtime: 1623179683 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819760 + metadata_only: false + name: subscription-manager-rhsm-certificates + nvr: subscription-manager-rhsm-certificates-1.28.13-3.el8_4 + payloadhash: a2066ca602940376c581e31e76e4fb74 + release: 3.el8_4 + size: 270560 + version: 1.28.13 +- arch: ppc64le + build_id: 1557760 + buildroot_id: 7227934 + buildtime: 1617179309 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9521463 + metadata_only: false + name: redhat-release + nvr: redhat-release-8.4-0.6.el8 + payloadhash: f86ea285dca8d34611d225fe69126452 + release: 0.6.el8 + size: 41208 + version: '8.4' +- arch: ppc64le + build_id: 1175627 + buildroot_id: 5893771 + buildtime: 1587623275 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8000796 + metadata_only: false + name: filesystem + nvr: filesystem-3.8-3.el8 + payloadhash: 6308b9708ac90aa666c8a68c6be154a6 + release: 3.el8 + size: 1134476 + version: '3.8' +- arch: noarch + build_id: 748188 + buildroot_id: 4379429 + buildtime: 1534094638 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185702 + metadata_only: false + name: publicsuffix-list-dafsa + nvr: publicsuffix-list-dafsa-20180723-1.el8 + payloadhash: 193f2f7ffa5e990141b941b47dfbab79 + release: 1.el8 + size: 56488 + version: '20180723' +- arch: ppc64le + build_id: 1207296 + buildroot_id: 6017988 + buildtime: 1590685627 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8114631 + metadata_only: false + name: pcre2 + nvr: pcre2-10.32-2.el8 + payloadhash: 1d4a4a6a4c77b4eaf0c49c95507b2585 + release: 2.el8 + size: 242392 + version: '10.32' +- arch: ppc64le + build_id: 829223 + buildroot_id: 4678819 + buildtime: 1547643928 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696215 + metadata_only: false + name: ncurses-libs + nvr: ncurses-libs-6.1-7.20180224.el8 + payloadhash: 4513d2076cd24bd8a066c877708ecfa7 + release: 7.20180224.el8 + size: 370284 + version: '6.1' +- arch: ppc64le + build_id: 1525306 + buildroot_id: 7130578 + buildtime: 1614966633 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412342 + metadata_only: false + name: glibc-common + nvr: glibc-common-2.28-151.el8 + payloadhash: 897351125ccaa5959f1610ef9f922348 + release: 151.el8 + size: 1394676 + version: '2.28' +- arch: ppc64le + build_id: 1584181 + buildroot_id: 7306055 + buildtime: 1619014239 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9630598 + metadata_only: false + name: bash + nvr: bash-4.4.20-1.el8_4 + payloadhash: f0bf99c243ba023cd00b4abd90559363 + release: 1.el8_4 + size: 1664204 + version: 4.4.20 +- arch: ppc64le + build_id: 1366387 + buildroot_id: 6602591 + buildtime: 1603788887 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8693799 + metadata_only: false + name: zlib + nvr: zlib-1.2.11-17.el8 + payloadhash: c2844ef21fbd516318e8bc6f88d2e64a + release: 17.el8 + size: 113344 + version: 1.2.11 +- arch: ppc64le + build_id: 745941 + buildroot_id: 4369282 + buildtime: 1534060367 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155771 + metadata_only: false + name: bzip2-libs + nvr: bzip2-libs-1.0.6-26.el8 + payloadhash: bdfbbcdc7d92769fdb34ed0d8d7b1f3f + release: 26.el8 + size: 53188 + version: 1.0.6 +- arch: ppc64le + build_id: 1054659 + buildroot_id: 5492781 + buildtime: 1578565210 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7668507 + metadata_only: false + name: info + nvr: info-6.5-6.el8 + payloadhash: 2244029ed05956ae91f14d9dec61b2e9 + release: 6.el8 + size: 219304 + version: '6.5' +- arch: ppc64le + build_id: 745929 + buildroot_id: 4369285 + buildtime: 1534060411 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155580 + metadata_only: false + name: libxcrypt + nvr: libxcrypt-4.1.1-4.el8 + payloadhash: 075ca6e90be1f6a856313a64315a75dc + release: 4.el8 + size: 77684 + version: 4.1.1 +- arch: ppc64le + build_id: 1447539 + buildroot_id: 6878038 + buildtime: 1610017547 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9068295 + metadata_only: false + name: popt + nvr: popt-1.18-1.el8 + payloadhash: 48ca5da776a07e134aa7b4bed77a0ed7 + release: 1.el8 + size: 65504 + version: '1.18' +- arch: ppc64le + build_id: 1420642 + buildroot_id: 6798336 + buildtime: 1608209960 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020916 + metadata_only: false + name: elfutils-libelf + nvr: elfutils-libelf-0.182-3.el8 + payloadhash: 29e16115fec84582ff7157e47fdf074d + release: 3.el8 + size: 226648 + version: '0.182' +- arch: ppc64le + build_id: 1177309 + buildroot_id: 5900168 + buildtime: 1587742230 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8006328 + metadata_only: false + name: expat + nvr: expat-2.2.5-4.el8 + payloadhash: 2a859398cfccae321491b24824776e09 + release: 4.el8 + size: 114116 + version: 2.2.5 +- arch: ppc64le + build_id: 1220066 + buildroot_id: 6064525 + buildtime: 1591612608 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8152092 + metadata_only: false + name: libcom_err + nvr: libcom_err-1.45.6-1.el8 + payloadhash: a92785de71d8de937bdfd707bfc28cdf + release: 1.el8 + size: 49264 + version: 1.45.6 +- arch: ppc64le + build_id: 1465282 + buildroot_id: 6933596 + buildtime: 1611050104 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132964 + metadata_only: false + name: libuuid + nvr: libuuid-2.32.1-27.el8 + payloadhash: c9776a7d69ac05de2db994aa8c096f16 + release: 27.el8 + size: 98168 + version: 2.32.1 +- arch: ppc64le + build_id: 911719 + buildroot_id: 4980067 + buildtime: 1560501960 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7093037 + metadata_only: false + name: gmp + nvr: gmp-6.1.2-10.el8 + payloadhash: 7466cd0929fb6ee3cbf6d8b8dfbfefef + release: 10.el8 + size: 298312 + version: 6.1.2 +- arch: ppc64le + build_id: 745979 + buildroot_id: 4369562 + buildtime: 1534063732 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156910 + metadata_only: false + name: libacl + nvr: libacl-2.2.53-1.el8 + payloadhash: 6cb6dcfe3c8d0352a335819de37e3fb7 + release: 1.el8 + size: 36536 + version: 2.2.53 +- arch: ppc64le + build_id: 1465282 + buildroot_id: 6933596 + buildtime: 1611050104 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132962 + metadata_only: false + name: libblkid + nvr: libblkid-2.32.1-27.el8 + payloadhash: 6ffe079f0c382532f034282c20721c9f + release: 27.el8 + size: 242696 + version: 2.32.1 +- arch: ppc64le + build_id: 1197484 + buildroot_id: 5980584 + buildtime: 1589884148 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8076504 + metadata_only: false + name: sed + nvr: sed-4.5-2.el8 + payloadhash: 4c39f2edea09ad1e5d8aab2f8d20c365 + release: 2.el8 + size: 308672 + version: '4.5' +- arch: ppc64le + build_id: 1334981 + buildroot_id: 6477771 + buildtime: 1601417163 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8495840 + metadata_only: false + name: libstdc++ + nvr: libstdc++-8.4.1-1.el8 + payloadhash: ab8615e8c8cf4a778918ace0ec3411a1 + release: 1.el8 + size: 505028 + version: 8.4.1 +- arch: ppc64le + build_id: 1453279 + buildroot_id: 6895955 + buildtime: 1610373523 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9088151 + metadata_only: false + name: p11-kit + nvr: p11-kit-0.23.22-1.el8 + payloadhash: 5125b30ff1eb5ce35328ae83d0c1b82f + release: 1.el8 + size: 331676 + version: 0.23.22 +- arch: ppc64le + build_id: 753876 + buildroot_id: 4402015 + buildtime: 1534538910 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6239954 + metadata_only: false + name: libunistring + nvr: libunistring-0.9.9-3.el8 + payloadhash: 442c61b690194566e38652a05cd71b2b + release: 3.el8 + size: 431532 + version: 0.9.9 +- arch: ppc64le + build_id: 1225800 + buildroot_id: 6086850 + buildtime: 1592238441 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8179260 + metadata_only: false + name: libgcrypt + nvr: libgcrypt-1.8.5-4.el8 + payloadhash: 652d6c2b9e960a59e643769c819216ee + release: 4.el8 + size: 455468 + version: 1.8.5 +- arch: ppc64le + build_id: 1003002 + buildroot_id: 5298252 + buildtime: 1572943129 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7465683 + metadata_only: false + name: libcap-ng + nvr: libcap-ng-0.7.9-5.el8 + payloadhash: fa43d1ffdb98c3e7a31a66521a82a7a2 + release: 5.el8 + size: 34252 + version: 0.7.9 +- arch: ppc64le + build_id: 1020741 + buildroot_id: 5366836 + buildtime: 1574797403 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7557345 + metadata_only: false + name: libnl3 + nvr: libnl3-3.5.0-1.el8 + payloadhash: da434e1f218fceb06cad0718d992d43c + release: 1.el8 + size: 338952 + version: 3.5.0 +- arch: ppc64le + build_id: 747020 + buildroot_id: 4374629 + buildtime: 1534079490 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6173714 + metadata_only: false + name: libassuan + nvr: libassuan-2.5.1-3.el8 + payloadhash: 1b08cbc1d20213f706f0c5758e57aa86 + release: 3.el8 + size: 86616 + version: 2.5.1 +- arch: ppc64le + build_id: 746949 + buildroot_id: 4374350 + buildtime: 1534078856 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172995 + metadata_only: false + name: keyutils-libs + nvr: keyutils-libs-1.5.10-6.el8 + payloadhash: ce3bf9515b2ef14478433eaa9decf4ea + release: 6.el8 + size: 34340 + version: 1.5.10 +- arch: ppc64le + build_id: 1453279 + buildroot_id: 6895955 + buildtime: 1610373523 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9088153 + metadata_only: false + name: p11-kit-trust + nvr: p11-kit-trust-0.23.22-1.el8 + payloadhash: 47d5788106c1b0fea1fbaf311ba727d6 + release: 1.el8 + size: 150668 + version: 0.23.22 +- arch: ppc64le + build_id: 745934 + buildroot_id: 4369289 + buildtime: 1534060504 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155644 + metadata_only: false + name: grep + nvr: grep-3.1-6.el8 + payloadhash: 6fc28acc0422fa09bbde131dece49aae + release: 6.el8 + size: 288448 + version: '3.1' +- arch: ppc64le + build_id: 1573801 + buildroot_id: 7272692 + buildtime: 1618406165 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561254 + metadata_only: false + name: dbus-libs + nvr: dbus-libs-1.12.8-12.el8_4.2 + payloadhash: df0042b1039829594be4173c16723703 + release: 12.el8_4.2 + size: 201428 + version: 1.12.8 +- arch: ppc64le + build_id: 1573801 + buildroot_id: 7272692 + buildtime: 1618406165 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561253 + metadata_only: false + name: dbus-tools + nvr: dbus-tools-1.12.8-12.el8_4.2 + payloadhash: f2d35ef928645da8ed079f826c418026 + release: 12.el8_4.2 + size: 87888 + version: 1.12.8 +- arch: ppc64le + build_id: 774503 + buildroot_id: 4488610 + buildtime: 1538130078 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399078 + metadata_only: false + name: gdbm + nvr: gdbm-1.18-1.el8 + payloadhash: db8a6663d49b124222938d4c3ecfe4c4 + release: 1.el8 + size: 138476 + version: '1.18' +- arch: ppc64le + build_id: 1364758 + buildroot_id: 6598266 + buildtime: 1603718020 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8690802 + metadata_only: false + name: shadow-utils + nvr: shadow-utils-4.6-12.el8 + payloadhash: fd365ce5326a0bfbb4c4b2f16f23dd55 + release: 12.el8 + size: 1295724 + version: '4.6' +- arch: ppc64le + build_id: 1573801 + buildroot_id: 7272692 + buildtime: 1618406165 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561252 + metadata_only: false + name: dbus-daemon + nvr: dbus-daemon-1.12.8-12.el8_4.2 + payloadhash: 459d6042836d41cae1275fc560c35269 + release: 12.el8_4.2 + size: 261320 + version: 1.12.8 +- arch: ppc64le + build_id: 1465282 + buildroot_id: 6933596 + buildtime: 1611050104 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132956 + metadata_only: false + name: libfdisk + nvr: libfdisk-2.32.1-27.el8 + payloadhash: ae25e715beec68721dc5058117338d94 + release: 27.el8 + size: 271780 + version: 2.32.1 +- arch: ppc64le + build_id: 804625 + buildroot_id: 4589608 + buildtime: 1543246375 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551441 + metadata_only: false + name: cracklib + nvr: cracklib-2.9.6-15.el8 + payloadhash: 5ed558e814522bb0b43a06cfd7532a92 + release: 15.el8 + size: 95796 + version: 2.9.6 +- arch: ppc64le + build_id: 745979 + buildroot_id: 4369562 + buildtime: 1534063732 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156913 + metadata_only: false + name: acl + nvr: acl-2.2.53-1.el8 + payloadhash: 10236e471713c7798e7ebe00cc9506d8 + release: 1.el8 + size: 84560 + version: 2.2.53 +- arch: ppc64le + build_id: 1565615 + buildroot_id: 7249237 + buildtime: 1617782252 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9540202 + metadata_only: false + name: nettle + nvr: nettle-3.4.1-4.el8_3 + payloadhash: 79387c1396c4541fcc388c66914b6422 + release: 4.el8_3 + size: 331212 + version: 3.4.1 +- arch: ppc64le + build_id: 747162 + buildroot_id: 4375348 + buildtime: 1534082149 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177331 + metadata_only: false + name: libmetalink + nvr: libmetalink-0.1.3-7.el8 + payloadhash: fec1f7904a85601595ef70785e685dcd + release: 7.el8 + size: 35784 + version: 0.1.3 +- arch: ppc64le + build_id: 1337704 + buildroot_id: 6487040 + buildtime: 1601569575 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8508708 + metadata_only: false + name: brotli + nvr: brotli-1.0.6-3.el8 + payloadhash: 407a8aaf33449be9ba4dd03f7cf1e9e0 + release: 3.el8 + size: 335508 + version: 1.0.6 +- arch: ppc64le + build_id: 747252 + buildroot_id: 4375723 + buildtime: 1534083089 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172157 + metadata_only: false + name: librtas + nvr: librtas-2.0.2-1.el8 + payloadhash: 06726b8035778492d29c17da07042c7a + release: 1.el8 + size: 69132 + version: 2.0.2 +- arch: ppc64le + build_id: 747270 + buildroot_id: 4375781 + buildtime: 1534083013 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6179896 + metadata_only: false + name: libsigsegv + nvr: libsigsegv-2.11-5.el8 + payloadhash: 9a6a9c5fcce20567b21209164a0a9781 + release: 5.el8 + size: 30420 + version: '2.11' +- arch: ppc64le + build_id: 747306 + buildroot_id: 4375966 + buildtime: 1534083715 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180883 + metadata_only: false + name: libverto + nvr: libverto-0.3.0-5.el8 + payloadhash: 56f7e3601cba69ccd38db423709e1759 + release: 5.el8 + size: 25204 + version: 0.3.0 +- arch: ppc64le + build_id: 1550360 + buildroot_id: 7208294 + buildtime: 1616691224 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9500750 + metadata_only: false + name: openssl-libs + nvr: openssl-libs-1.1.1g-15.el8_3 + payloadhash: 0d98c14c0f1272c0562cb16afa8c02ae + release: 15.el8_3 + size: 1568632 + version: 1.1.1g +- arch: ppc64le + build_id: 1419017 + buildroot_id: 6793822 + buildtime: 1608142544 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9016710 + metadata_only: false + name: krb5-libs + nvr: krb5-libs-1.18.2-8.el8 + payloadhash: 008efc9a91bf08078e2473bbd6ee461c + release: 8.el8 + size: 924408 + version: 1.18.2 +- arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320563 + metadata_only: false + name: crypto-policies-scripts + nvr: crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3 + payloadhash: 419de3d06a04ee6fbb655fe74740bb8f + release: 1.gitbfb6bed.el8_3 + size: 67668 + version: '20210209' +- arch: ppc64le + build_id: 1540243 + buildroot_id: 7177559 + buildtime: 1616076385 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465789 + metadata_only: false + name: platform-python + nvr: platform-python-3.6.8-37.el8 + payloadhash: f3579ff489cca2216e1eb8d5d1dea903 + release: 37.el8 + size: 85588 + version: 3.6.8 +- arch: ppc64le + build_id: 1399757 + buildroot_id: 6723957 + buildtime: 1606996191 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8889724 + metadata_only: false + name: libdb + nvr: libdb-5.3.28-40.el8 + payloadhash: af5fb6f8f9f5afbc9dc80b4f83874a6d + release: 40.el8 + size: 805648 + version: 5.3.28 +- arch: ppc64le + build_id: 1378172 + buildroot_id: 6645375 + buildtime: 1604590027 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8777829 + metadata_only: false + name: pam + nvr: pam-1.3.1-14.el8 + payloadhash: 54a87bc483e21944d345daccc946be9c + release: 14.el8 + size: 799196 + version: 1.3.1 +- arch: ppc64le + build_id: 1465282 + buildroot_id: 6933596 + buildtime: 1611050104 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132955 + metadata_only: false + name: util-linux + nvr: util-linux-2.32.1-27.el8 + payloadhash: 5ba4d2eb18ff989ceb7df148b08b04ff + release: 27.el8 + size: 2683836 + version: 2.32.1 +- arch: ppc64le + build_id: 1559858 + buildroot_id: 7234160 + buildtime: 1617283528 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9527131 + metadata_only: false + name: gnutls + nvr: gnutls-3.6.14-8.el8_3 + payloadhash: ba2790063341da9693fbc5c5766633f4 + release: 8.el8_3 + size: 1009436 + version: 3.6.14 +- arch: ppc64le + build_id: 782991 + buildroot_id: 4522245 + buildtime: 1539698517 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6452484 + metadata_only: false + name: json-glib + nvr: json-glib-1.4.4-1.el8 + payloadhash: 04c9ee035ad5ff5d52c9f08aa0ef698b + release: 1.el8 + size: 148760 + version: 1.4.4 +- arch: noarch + build_id: 747226 + buildroot_id: 4375496 + buildtime: 1534082024 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6171381 + metadata_only: false + name: python3-iniparse + nvr: python3-iniparse-0.4-31.el8 + payloadhash: 29f73a3875d2d7f187c2796233b96724 + release: 31.el8 + size: 48776 + version: '0.4' +- arch: ppc64le + build_id: 746151 + buildroot_id: 4370497 + buildtime: 1534066320 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6161496 + metadata_only: false + name: dbus-glib + nvr: dbus-glib-0.110-2.el8 + payloadhash: d3473b02a0583d534bba08e92004cde1 + release: 2.el8 + size: 141716 + version: '0.110' +- arch: ppc64le + build_id: 746526 + buildroot_id: 4372384 + buildtime: 1534074863 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168979 + metadata_only: false + name: gobject-introspection + nvr: gobject-introspection-1.56.1-1.el8 + payloadhash: 8b61d6f644a4ed64b6d9a827c4327463 + release: 1.el8 + size: 265064 + version: 1.56.1 +- arch: ppc64le + build_id: 1188151 + buildroot_id: 5943489 + buildtime: 1588873409 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8044035 + metadata_only: false + name: cyrus-sasl-lib + nvr: cyrus-sasl-lib-2.1.27-5.el8 + payloadhash: c660640ff1c123aae861fe1e62373817 + release: 5.el8 + size: 136744 + version: 2.1.27 +- arch: ppc64le + build_id: 919146 + buildroot_id: 5005136 + buildtime: 1561576743 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7125053 + metadata_only: false + name: libuser + nvr: libuser-0.62-23.el8 + payloadhash: 0230c69630339f19c4ba960b78471253 + release: 23.el8 + size: 433892 + version: '0.62' +- arch: ppc64le + build_id: 802356 + buildroot_id: 4581336 + buildtime: 1542709233 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6534760 + metadata_only: false + name: usermode + nvr: usermode-1.113-1.el8 + payloadhash: b585c9270c0149dc11033232fb132cf5 + release: 1.el8 + size: 207512 + version: '1.113' +- arch: ppc64le + build_id: 812275 + buildroot_id: 4614378 + buildtime: 1544451091 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6588188 + metadata_only: false + name: python3-ethtool + nvr: python3-ethtool-0.14-3.el8 + payloadhash: 740d0681bf0cca79e71a1f29135c46f8 + release: 3.el8 + size: 45996 + version: '0.14' +- arch: noarch + build_id: 746857 + buildroot_id: 4373971 + buildtime: 1534077847 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168183 + metadata_only: false + name: python3-chardet + nvr: python3-chardet-3.0.4-7.el8 + payloadhash: 3ada1fbcb564b91e61de7f32130c471a + release: 7.el8 + size: 198980 + version: 3.0.4 +- arch: noarch + build_id: 747193 + buildroot_id: 4375299 + buildtime: 1534081484 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6171075 + metadata_only: false + name: python3-idna + nvr: python3-idna-2.5-5.el8 + payloadhash: 6ac5832b8bd214a6d2abc0072c97ab94 + release: 5.el8 + size: 98292 + version: '2.5' +- arch: noarch + build_id: 747578 + buildroot_id: 4377175 + buildtime: 1534088197 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177446 + metadata_only: false + name: python3-pysocks + nvr: python3-pysocks-1.6.8-3.el8 + payloadhash: 69d81ceb864a79a1b73a3c9826d9d6a7 + release: 3.el8 + size: 33924 + version: 1.6.8 +- arch: noarch + build_id: 989775 + buildroot_id: 5251486 + buildtime: 1571299303 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7411632 + metadata_only: false + name: python3-requests + nvr: python3-requests-2.20.0-2.1.el8_1 + payloadhash: 86b829d8cb0e3dc32d5c0d3a992456f4 + release: 2.1.el8_1 + size: 125356 + version: 2.20.0 +- arch: ppc64le + build_id: 1335853 + buildroot_id: 6480700 + buildtime: 1601461273 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8501303 + metadata_only: false + name: libarchive + nvr: libarchive-3.3.3-1.el8 + payloadhash: 5f03eb3a7d4231cb3573e459f49326e5 + release: 1.el8 + size: 419620 + version: 3.3.3 +- arch: ppc64le + build_id: 1509562 + buildroot_id: 7086194 + buildtime: 1613753351 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9368620 + metadata_only: false + name: ima-evm-utils + nvr: ima-evm-utils-1.3.2-12.el8 + payloadhash: c707af7c3ee9056f66e72aee92682921 + release: 12.el8 + size: 68048 + version: 1.3.2 +- arch: ppc64le + build_id: 747600 + buildroot_id: 4377307 + buildtime: 1534088770 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185271 + metadata_only: false + name: npth + nvr: npth-1.5-4.el8 + payloadhash: f361edf4c68ccbfb27d891091d270004 + release: 4.el8 + size: 25668 + version: '1.5' +- arch: ppc64le + build_id: 1441861 + buildroot_id: 6860096 + buildtime: 1609761106 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9051347 + metadata_only: false + name: gpgme + nvr: gpgme-1.13.1-7.el8 + payloadhash: 8eb469e55823941f77bc9a6fa73d26d2 + release: 7.el8 + size: 356332 + version: 1.13.1 +- arch: ppc64le + build_id: 1374200 + buildroot_id: 6630140 + buildtime: 1604330768 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8746378 + metadata_only: false + name: pciutils-libs + nvr: pciutils-libs-3.7.0-1.el8 + payloadhash: 88d6b204601ae52bd58d399a9c7c1474 + release: 1.el8 + size: 55552 + version: 3.7.0 +- arch: ppc64le + build_id: 791846 + buildroot_id: 4549787 + buildtime: 1541015602 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6482146 + metadata_only: false + name: virt-what + nvr: virt-what-1.18-6.el8 + payloadhash: b30696a806f692a14b00dbf3d4257670 + release: 6.el8 + size: 35072 + version: '1.18' +- arch: ppc64le + build_id: 1237213 + buildroot_id: 6125652 + buildtime: 1593094340 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215440 + metadata_only: false + name: libssh + nvr: libssh-0.9.4-2.el8 + payloadhash: b9461a15ef2c8b36a1c39a3664d721a6 + release: 2.el8 + size: 239900 + version: 0.9.4 +- arch: ppc64le + build_id: 1416620 + buildroot_id: 6784806 + buildtime: 1608027628 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9001976 + metadata_only: false + name: librepo + nvr: librepo-1.12.0-3.el8 + payloadhash: 6c181490f17d6708527b797f7b3b6180 + release: 3.el8 + size: 97128 + version: 1.12.0 +- arch: ppc64le + build_id: 1479079 + buildroot_id: 6984993 + buildtime: 1611938357 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201113 + metadata_only: false + name: curl + nvr: curl-7.61.1-18.el8 + payloadhash: 78b8964f0bbb13ed906051b886282003 + release: 18.el8 + size: 365620 + version: 7.61.1 +- arch: ppc64le + build_id: 1618827 + buildroot_id: 7437095 + buildtime: 1622479414 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782832 + metadata_only: false + name: rpm-libs + nvr: rpm-libs-4.14.3-14.el8_4 + payloadhash: 9f61e40e910693947b8d734c8acd7c42 + release: 14.el8_4 + size: 380876 + version: 4.14.3 +- arch: ppc64le + build_id: 1460531 + buildroot_id: 6918016 + buildtime: 1610709917 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9117891 + metadata_only: false + name: libsolv + nvr: libsolv-0.7.16-2.el8 + payloadhash: 682f222af00be5451eaf04cc843917eb + release: 2.el8 + size: 405112 + version: 0.7.16 +- arch: ppc64le + build_id: 1528104 + buildroot_id: 7139226 + buildtime: 1615218300 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417632 + metadata_only: false + name: python3-libdnf + nvr: python3-libdnf-0.55.0-7.el8 + payloadhash: 848608b54001afe347d9e8c80b580f1b + release: 7.el8 + size: 757856 + version: 0.55.0 +- arch: ppc64le + build_id: 1290417 + buildroot_id: 6324127 + buildtime: 1597819564 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8363393 + metadata_only: false + name: libreport-filesystem + nvr: libreport-filesystem-2.9.5-15.el8 + payloadhash: 53d982f118753810460ec2e145fd2fac + release: 15.el8 + size: 20420 + version: 2.9.5 +- arch: noarch + build_id: 1495269 + buildroot_id: 7035710 + buildtime: 1612784043 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9293910 + metadata_only: false + name: hwdata + nvr: hwdata-0.314-8.8.el8 + payloadhash: 4992d597c87d420c328da638b51d5edd + release: 8.8.el8 + size: 1733960 + version: '0.314' +- arch: ppc64le + build_id: 1479677 + buildroot_id: 6982006 + buildtime: 1611893528 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9194021 + metadata_only: false + name: rdma-core + nvr: rdma-core-32.0-4.el8 + payloadhash: 292f5461fa54fb2e0ee70c19a729729c + release: 4.el8 + size: 60036 + version: '32.0' +- arch: ppc64le + build_id: 1465270 + buildroot_id: 6933552 + buildtime: 1611049516 + epoch: 14 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132893 + metadata_only: false + name: libpcap + nvr: libpcap-1.9.1-5.el8 + payloadhash: 565c0b5bd9098c9193be4998855f7cb7 + release: 5.el8 + size: 179524 + version: 1.9.1 +- arch: ppc64le + build_id: 1525173 + buildroot_id: 7130185 + buildtime: 1614950161 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9410192 + metadata_only: false + name: device-mapper + nvr: device-mapper-1.02.175-5.el8 + payloadhash: bffbbb93504f768da606d050ff5cc340 + release: 5.el8 + size: 384352 + version: 1.02.175 +- arch: ppc64le + build_id: 1507689 + buildroot_id: 7079459 + buildtime: 1613665553 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9356222 + metadata_only: false + name: cryptsetup-libs + nvr: cryptsetup-libs-2.3.3-4.el8 + payloadhash: 545d9b026a3fa05e9aaf4152f6139de1 + release: 4.el8 + size: 518420 + version: 2.3.3 +- arch: ppc64le + build_id: 1420642 + buildroot_id: 6798336 + buildtime: 1608209960 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020913 + metadata_only: false + name: elfutils-libs + nvr: elfutils-libs-0.182-3.el8 + payloadhash: 67a7242be3db95a938c6ef4b26322523 + release: 3.el8 + size: 329556 + version: '0.182' +- arch: ppc64le + build_id: 1647417 + buildroot_id: 7537560 + buildtime: 1624959314 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912887 + metadata_only: false + name: systemd + nvr: systemd-239-45.el8_4.2 + payloadhash: 22a1aec0a2d6da061656239376723d80 + release: 45.el8_4.2 + size: 3795408 + version: '239' +- arch: ppc64le + build_id: 1618827 + buildroot_id: 7437095 + buildtime: 1622479414 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782833 + metadata_only: false + name: rpm-build-libs + nvr: rpm-build-libs-4.14.3-14.el8_4 + payloadhash: 29085dd125c594400d622059f75bbf2b + release: 14.el8_4 + size: 166976 + version: 4.14.3 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417619 + metadata_only: false + name: python3-dnf + nvr: python3-dnf-4.4.2-11.el8 + payloadhash: 37d326ca26f018d54ddcc285ddc8cefc + release: 11.el8 + size: 553316 + version: 4.4.2 +- arch: noarch + build_id: 1528091 + buildroot_id: 7139136 + buildtime: 1615216494 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417601 + metadata_only: false + name: python3-dnf-plugins-core + nvr: python3-dnf-plugins-core-4.0.18-4.el8 + payloadhash: eca9f30e6d32e56dbdd811458b405d55 + release: 4.el8 + size: 238880 + version: 4.0.18 +- arch: ppc64le + build_id: 1627034 + buildroot_id: 7465259 + buildtime: 1623179683 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819759 + metadata_only: false + name: python3-subscription-manager-rhsm + nvr: python3-subscription-manager-rhsm-1.28.13-3.el8_4 + payloadhash: 256eeb1448563e35bf05351e7a15223e + release: 3.el8_4 + size: 373932 + version: 1.28.13 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417618 + metadata_only: false + name: yum + nvr: yum-4.4.2-11.el8 + payloadhash: 60663bd019796159c134cbf95fd15022 + release: 11.el8 + size: 200560 + version: 4.4.2 +- arch: ppc64le + build_id: 1229781 + buildroot_id: 6101292 + buildtime: 1592562344 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8194446 + metadata_only: false + name: tar + nvr: tar-1.30-5.el8 + payloadhash: 45abc773c9bdad7580b32b2e2cc32ff1 + release: 5.el8 + size: 876680 + version: '1.30' +- arch: ppc64le + build_id: 794639 + buildroot_id: 4557735 + buildtime: 1541427950 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6492563 + metadata_only: false + name: findutils + nvr: findutils-4.6.0-20.el8 + payloadhash: 5652701d3028285e786712891fe960a3 + release: 20.el8 + size: 555316 + version: 4.6.0 +- arch: noarch + build_id: 748292 + buildroot_id: 4379902 + buildtime: 1534096383 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6187287 + metadata_only: false + name: rootfiles + nvr: rootfiles-8.1-22.el8 + payloadhash: 95e9e04d2d86a4595e51bb74119338c6 + release: 22.el8 + size: 12544 + version: '8.1' +- arch: ppc64le + build_id: 1487216 + buildroot_id: 7008127 + buildtime: 1612360595 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9234956 + metadata_only: false + name: protobuf-c + nvr: protobuf-c-1.3.0-6.el8 + payloadhash: 5b11d534a9efcc20e3c3cd1418426ff0 + release: 6.el8 + size: 39752 + version: 1.3.0 +- arch: noarch + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650594 + metadata_only: false + name: bind-license + nvr: bind-license-9.11.26-4.el8_4 + payloadhash: 507b400cbcc1a531a56a96a0e7ec5d95 + release: 4.el8_4 + size: 103484 + version: 9.11.26 +- arch: ppc64le + build_id: 1588980 + buildroot_id: 7323889 + buildtime: 1619525890 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650620 + metadata_only: false + name: bind-libs + nvr: bind-libs-9.11.26-4.el8_4 + payloadhash: 219728901a7c2fa712e1628576d3f79e + release: 4.el8_4 + size: 184392 + version: 9.11.26 +- arch: noarch + build_id: 1446322 + buildroot_id: 6873795 + buildtime: 1609942008 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9062446 + metadata_only: false + name: python3-ply + nvr: python3-ply-3.9-9.el8 + payloadhash: e3b7c687e59dca916480eb02c9a3661e + release: 9.el8 + size: 112760 + version: '3.9' +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075060 + metadata_only: false + name: platform-python-pip + nvr: platform-python-pip-9.0.3-19.el8 + payloadhash: 0558b3e85bd74c4cbc651c0cc47a2f1c + release: 19.el8 + size: 1779340 + version: 9.0.3 +- arch: ppc64le + build_id: 908277 + buildroot_id: 4964957 + buildtime: 1559911907 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7068910 + metadata_only: false + name: python36 + nvr: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7 + payloadhash: ff115c224c49ac8dc4f2a8dde9be1106 + release: 2.module+el8.1.0+3334+5cb623d7 + size: 18434 + version: 3.6.8 +- arch: ppc64le + build_id: 1588980 + buildroot_id: 7323889 + buildtime: 1619525890 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650621 + metadata_only: false + name: bind-utils + nvr: bind-utils-9.11.26-4.el8_4 + payloadhash: 6f4a5d025101f44a8dd94f9704cf484d + release: 4.el8_4 + size: 465128 + version: 9.11.26 +- arch: ppc64le + build_id: 1421942 + buildroot_id: 6801955 + buildtime: 1608274216 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9025030 + metadata_only: false + name: rsync + nvr: rsync-3.1.3-12.el8 + payloadhash: 932c1b04e4be575d107a9b199232d001 + release: 12.el8 + size: 435852 + version: 3.1.3 +- arch: ppc64le + build_id: 1172035 + buildroot_id: 5879010 + buildtime: 1587382141 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7991552 + metadata_only: false + name: lsof + nvr: lsof-4.93.2-1.el8 + payloadhash: ac524ebefb4061ef5f7b670a2b3efb1e + release: 1.el8 + size: 269332 + version: 4.93.2 +- arch: ppc64le + build_id: 746599 + buildroot_id: 4373459 + buildtime: 1534077066 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6170677 + metadata_only: false + name: hostname + nvr: hostname-3.20-6.el8 + payloadhash: f68434613a4f2cca33295a3fcdf726ee + release: 6.el8 + size: 32176 + version: '3.20' +- arch: ppc64le + build_id: 1025058 + buildroot_id: 5383390 + buildtime: 1575182514 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7579205 + metadata_only: false + name: socat + nvr: socat-1.7.3.3-2.el8 + payloadhash: 26632bc20d29afa50c5ac14c32ae0558 + release: 2.el8 + size: 314840 + version: 1.7.3.3 +5229576: +- arch: noarch + build_id: 1473607 + buildroot_id: 6962315 + buildtime: 1611592265 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9169364 + metadata_only: false + name: tzdata + nvr: tzdata-2021a-1.el8 + payloadhash: a928d660b5bd64a91bd6bfc055c865e5 + release: 1.el8 + size: 482936 + version: 2021a +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075063 + metadata_only: false + name: python3-pip-wheel + nvr: python3-pip-wheel-9.0.3-19.el8 + payloadhash: 997ee4c01abb0e5b77e5d43a9181e252 + release: 19.el8 + size: 1094660 + version: 9.0.3 +- arch: noarch + build_id: 1573801 + buildroot_id: 7272689 + buildtime: 1618406023 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561237 + metadata_only: false + name: dbus-common + nvr: dbus-common-1.12.8-12.el8_4.2 + payloadhash: 9eeffd2111ff14f34ac723276c01283b + release: 12.el8_4.2 + size: 45624 + version: 1.12.8 +- arch: noarch + build_id: 1166694 + buildroot_id: 5856989 + buildtime: 1586943783 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7971019 + metadata_only: false + name: setup + nvr: setup-2.12.2-6.el8 + payloadhash: 109811c80a28ad746bcd12d4d0c06794 + release: 6.el8 + size: 183896 + version: 2.12.2 +- arch: noarch + build_id: 746023 + buildroot_id: 4369700 + buildtime: 1534063206 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156542 + metadata_only: false + name: basesystem + nvr: basesystem-11-5.el8 + payloadhash: 31bc067a6462aacd3b891681bdb27512 + release: 5.el8 + size: 9652 + version: '11' +- arch: noarch + build_id: 829223 + buildroot_id: 4678814 + buildtime: 1547644074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696179 + metadata_only: false + name: ncurses-base + nvr: ncurses-base-6.1-7.20180224.el8 + payloadhash: 6f474c29de2d5954bf13ae3a68215dc9 + release: 7.20180224.el8 + size: 81712 + version: '6.1' +- arch: x86_64 + build_id: 1360527 + buildroot_id: 6582957 + buildtime: 1603273869 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8672657 + metadata_only: false + name: libselinux + nvr: libselinux-2.9-5.el8 + payloadhash: 01ac50a394e4b56424ea9279b4dff4aa + release: 5.el8 + size: 168068 + version: '2.9' +- arch: x86_64 + build_id: 1525306 + buildroot_id: 7130580 + buildtime: 1614965196 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412915 + metadata_only: false + name: glibc-minimal-langpack + nvr: glibc-minimal-langpack-2.28-151.el8 + payloadhash: b2197f7e0f1640a7915eed488d24baaf + release: 151.el8 + size: 56300 + version: '2.28' +- arch: x86_64 + build_id: 1525306 + buildroot_id: 7130580 + buildtime: 1614965196 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412710 + metadata_only: false + name: glibc + nvr: glibc-2.28-151.el8 + payloadhash: 933bed0822cabcb0fc5372f2f668af0e + release: 151.el8 + size: 3815004 + version: '2.28' +- arch: x86_64 + build_id: 1449855 + buildroot_id: 6885601 + buildtime: 1610126030 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9079455 + metadata_only: false + name: libsepol + nvr: libsepol-2.9-2.el8 + payloadhash: 2644031bb5230839fa78bad7dfa23c67 + release: 2.el8 + size: 346436 + version: '2.9' +- arch: x86_64 + build_id: 803342 + buildroot_id: 4585481 + buildtime: 1542895708 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6547271 + metadata_only: false + name: xz-libs + nvr: xz-libs-5.2.4-3.el8 + payloadhash: e68a709397fdedeaf8a22bce4df79f57 + release: 3.el8 + size: 95088 + version: 5.2.4 +- arch: x86_64 + build_id: 747111 + buildroot_id: 4374902 + buildtime: 1534080339 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6175782 + metadata_only: false + name: libgpg-error + nvr: libgpg-error-1.31-1.el8 + payloadhash: 871ea2187acb302207a317111f1ab3c1 + release: 1.el8 + size: 246416 + version: '1.31' +- arch: x86_64 + build_id: 1054659 + buildroot_id: 5492780 + buildtime: 1578565041 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7668496 + metadata_only: false + name: info + nvr: info-6.5-6.el8 + payloadhash: 3f9675255326047e755e1258e654a2a1 + release: 6.el8 + size: 201908 + version: '6.5' +- arch: x86_64 + build_id: 745929 + buildroot_id: 4369280 + buildtime: 1534060199 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155569 + metadata_only: false + name: libxcrypt + nvr: libxcrypt-4.1.1-4.el8 + payloadhash: 8b009b68fa174bbe49dd7937a7eecd45 + release: 4.el8 + size: 73428 + version: 4.1.1 +- arch: x86_64 + build_id: 1447539 + buildroot_id: 6878042 + buildtime: 1610017544 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9068301 + metadata_only: false + name: popt + nvr: popt-1.18-1.el8 + payloadhash: c3c16061d5aec14e6b3624fa1c175313 + release: 1.el8 + size: 61752 + version: '1.18' +- arch: x86_64 + build_id: 1397463 + buildroot_id: 6715858 + buildtime: 1606831854 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8878720 + metadata_only: false + name: sqlite-libs + nvr: sqlite-libs-3.26.0-13.el8 + payloadhash: af24ba1a1878756878d6888dfcd89161 + release: 13.el8 + size: 593060 + version: 3.26.0 +- arch: x86_64 + build_id: 1487471 + buildroot_id: 7009378 + buildtime: 1612371230 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9239291 + metadata_only: false + name: json-c + nvr: json-c-0.13.1-0.4.el8 + payloadhash: df3214b7386ebf1214a2c9f7f3822d48 + release: 0.4.el8 + size: 39948 + version: 0.13.1 +- arch: x86_64 + build_id: 1192639 + buildroot_id: 5961305 + buildtime: 1589395351 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8062226 + metadata_only: false + name: libffi + nvr: libffi-3.1-22.el8 + payloadhash: e366669d7bfd42f924907fe08f9ec0e8 + release: 22.el8 + size: 37016 + version: '3.1' +- arch: x86_64 + build_id: 748275 + buildroot_id: 4379865 + buildtime: 1534096329 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6192840 + metadata_only: false + name: readline + nvr: readline-7.0-10.el8 + payloadhash: 7e6269d89fa64bee1c8539872c9bbd75 + release: 10.el8 + size: 203112 + version: '7.0' +- arch: x86_64 + build_id: 746019 + buildroot_id: 4369733 + buildtime: 1534063387 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6157318 + metadata_only: false + name: libattr + nvr: libattr-2.4.48-3.el8 + payloadhash: ccdc272fc3236e0634d1be86dd1599dc + release: 3.el8 + size: 26468 + version: 2.4.48 +- arch: x86_64 + build_id: 1165793 + buildroot_id: 5853080 + buildtime: 1586866435 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7967293 + metadata_only: false + name: coreutils-single + nvr: coreutils-single-8.30-8.el8 + payloadhash: c14173e38a84a49576e030017a2369f6 + release: 8.el8 + size: 641124 + version: '8.30' +- arch: x86_64 + build_id: 1465282 + buildroot_id: 6933597 + buildtime: 1611049948 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133008 + metadata_only: false + name: libmount + nvr: libmount-2.32.1-27.el8 + payloadhash: 9f5a281181d837c1dc367f9e23222798 + release: 27.el8 + size: 237236 + version: 2.32.1 +- arch: x86_64 + build_id: 1465282 + buildroot_id: 6933597 + buildtime: 1611049948 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133006 + metadata_only: false + name: libsmartcols + nvr: libsmartcols-2.32.1-27.el8 + payloadhash: dede55a2f9a78a547549031d8f6514a2 + release: 27.el8 + size: 179104 + version: 2.32.1 +- arch: x86_64 + build_id: 906174 + buildroot_id: 4955480 + buildtime: 1559576723 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7052254 + metadata_only: false + name: lua-libs + nvr: lua-libs-5.3.4-11.el8 + payloadhash: 911f05d9cd22b4bb4a37ac2dd0b63719 + release: 11.el8 + size: 119892 + version: 5.3.4 +- arch: x86_64 + build_id: 1168710 + buildroot_id: 5866954 + buildtime: 1587109456 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7983726 + metadata_only: false + name: chkconfig + nvr: chkconfig-1.13-2.el8 + payloadhash: 685741efff96e2a58fae2289f88f5244 + release: 2.el8 + size: 197616 + version: '1.13' +- arch: x86_64 + build_id: 909244 + buildroot_id: 4969001 + buildtime: 1560162261 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7072880 + metadata_only: false + name: libidn2 + nvr: libidn2-2.2.0-1.el8 + payloadhash: 337fe2e782ab3a7fcf79b02d288cda92 + release: 1.el8 + size: 94832 + version: 2.2.0 +- arch: x86_64 + build_id: 1480523 + buildroot_id: 6984979 + buildtime: 1611937411 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201000 + metadata_only: false + name: file-libs + nvr: file-libs-5.33-16.el8_3.1 + payloadhash: aedfdaf443f65cc8931126d4961e8c5a + release: 16.el8_3.1 + size: 554632 + version: '5.33' +- arch: x86_64 + build_id: 1054304 + buildroot_id: 5491133 + buildtime: 1578502271 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7666098 + metadata_only: false + name: audit-libs + nvr: audit-libs-3.0-0.17.20191104git1c2f876.el8 + payloadhash: a72a8a245b876d6b433d33d106c9c07f + release: 0.17.20191104git1c2f876.el8 + size: 118080 + version: '3.0' +- arch: x86_64 + build_id: 1615115 + buildroot_id: 7425908 + buildtime: 1622121453 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9773203 + metadata_only: false + name: lz4-libs + nvr: lz4-libs-1.8.3-3.el8_4 + payloadhash: aef9e02d157fe0d94ca9dcc4254c9b2c + release: 3.el8_4 + size: 66288 + version: 1.8.3 +- arch: x86_64 + build_id: 774503 + buildroot_id: 4488611 + buildtime: 1538130019 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399067 + metadata_only: false + name: gdbm-libs + nvr: gdbm-libs-1.18-1.el8 + payloadhash: 8e18e63951b95ea6b10f2b7858ed2b6a + release: 1.el8 + size: 60848 + version: '1.18' +- arch: x86_64 + build_id: 747294 + buildroot_id: 4375878 + buildtime: 1534083482 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180521 + metadata_only: false + name: libtasn1 + nvr: libtasn1-4.13-3.el8 + payloadhash: f833fd6da3f1e74bb8ec3603734bed28 + release: 3.el8 + size: 76928 + version: '4.13' +- arch: x86_64 + build_id: 761272 + buildroot_id: 4433030 + buildtime: 1535969821 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6279931 + metadata_only: false + name: pcre + nvr: pcre-8.42-4.el8 + payloadhash: 984ff968e0678ffd8f2448b624002c3b + release: 4.el8 + size: 212380 + version: '8.42' +- arch: x86_64 + build_id: 1647417 + buildroot_id: 7537569 + buildtime: 1624959070 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912920 + metadata_only: false + name: systemd-libs + nvr: systemd-libs-239-45.el8_4.2 + payloadhash: c3cc9a880f834bf1e74324061d09ceb5 + release: 45.el8_4.2 + size: 1131008 + version: '239' +- arch: noarch + build_id: 1234030 + buildroot_id: 6114472 + buildtime: 1592867963 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8205302 + metadata_only: false + name: ca-certificates + nvr: ca-certificates-2020.2.41-80.0.el8_2 + payloadhash: df20d39b69d47efe9a26fb1316c8b323 + release: 80.0.el8_2 + size: 399264 + version: 2020.2.41 +- arch: x86_64 + build_id: 1286148 + buildroot_id: 6307450 + buildtime: 1597242806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8351514 + metadata_only: false + name: libusbx + nvr: libusbx-1.0.23-4.el8 + payloadhash: 0a1fd97b21d3df288ae7582834b0c534 + release: 4.el8 + size: 74984 + version: 1.0.23 +- arch: x86_64 + build_id: 1483913 + buildroot_id: 6995730 + buildtime: 1612205521 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9211058 + metadata_only: false + name: libsemanage + nvr: libsemanage-2.9-6.el8 + payloadhash: 72c83aa6264372aa815ef844eba28aca + release: 6.el8 + size: 168052 + version: '2.9' +- arch: x86_64 + build_id: 747310 + buildroot_id: 4375982 + buildtime: 1534083620 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180627 + metadata_only: false + name: libutempter + nvr: libutempter-1.1.6-14.el8 + payloadhash: 6baa79dc584360de883d2446a16e31da + release: 14.el8 + size: 31460 + version: 1.1.6 +- arch: x86_64 + build_id: 1215600 + buildroot_id: 6048397 + buildtime: 1591290830 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8143586 + metadata_only: false + name: libpsl + nvr: libpsl-0.20.2-6.el8 + payloadhash: eb1a110286a02ae54cc64de2a3f2c774 + release: 6.el8 + size: 61792 + version: 0.20.2 +- arch: x86_64 + build_id: 1454801 + buildroot_id: 6900341 + buildtime: 1610445322 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9094384 + metadata_only: false + name: gzip + nvr: gzip-1.9-12.el8 + payloadhash: ab65e70c7254de108a255a6dba5e013e + release: 12.el8 + size: 169620 + version: '1.9' +- arch: x86_64 + build_id: 804625 + buildroot_id: 4589607 + buildtime: 1543246313 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551431 + metadata_only: false + name: cracklib-dicts + nvr: cracklib-dicts-2.9.6-15.el8 + payloadhash: 4b02c724c58e161159b6fb21642166ba + release: 15.el8 + size: 4143776 + version: 2.9.6 +- arch: x86_64 + build_id: 747521 + buildroot_id: 4376972 + buildtime: 1534087668 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6184915 + metadata_only: false + name: mpfr + nvr: mpfr-3.1.6-1.el8 + payloadhash: 4043036d63160972f7546ea5a9252a87 + release: 1.el8 + size: 225568 + version: 3.1.6 +- arch: x86_64 + build_id: 1460547 + buildroot_id: 6918065 + buildtime: 1610710772 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9118096 + metadata_only: false + name: libcomps + nvr: libcomps-0.1.11-5.el8 + payloadhash: 693ebff8d140433e000c737b209f18e2 + release: 5.el8 + size: 81568 + version: 0.1.11 +- arch: x86_64 + build_id: 747165 + buildroot_id: 4375152 + buildtime: 1534081143 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177348 + metadata_only: false + name: libksba + nvr: libksba-1.3.5-7.el8 + payloadhash: 179dd4ccc33b6c2251b002e870bd80c5 + release: 7.el8 + size: 136760 + version: 1.3.5 +- arch: x86_64 + build_id: 1410760 + buildroot_id: 6766274 + buildtime: 1607570366 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8983392 + metadata_only: false + name: dmidecode + nvr: dmidecode-3.2-8.el8 + payloadhash: 764833f91460d48eff2078e0e40fefaf + release: 8.el8 + size: 92516 + version: '3.2' +- arch: x86_64 + build_id: 1508952 + buildroot_id: 7083730 + buildtime: 1613731492 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9364647 + metadata_only: false + name: libseccomp + nvr: libseccomp-2.5.1-1.el8 + payloadhash: 854730a53f8a1bbcab3ecffd2342319f + release: 1.el8 + size: 71608 + version: 2.5.1 +- arch: x86_64 + build_id: 1399824 + buildroot_id: 6724193 + buildtime: 1606997680 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8890396 + metadata_only: false + name: gawk + nvr: gawk-4.2.1-2.el8 + payloadhash: 67d1f7866e067b2aa7afc11ce6cff661 + release: 2.el8 + size: 1189452 + version: 4.2.1 +- arch: x86_64 + build_id: 747205 + buildroot_id: 4375366 + buildtime: 1534081673 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6178303 + metadata_only: false + name: libnsl2 + nvr: libnsl2-1.2.0-2.20180605git4a062cf.el8 + payloadhash: 24420115f1c6472d7c71b7b31a4ade5e + release: 2.20180605git4a062cf.el8 + size: 58016 + version: 1.2.0 +- arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320562 + metadata_only: false + name: crypto-policies + nvr: crypto-policies-20210209-1.gitbfb6bed.el8_3 + payloadhash: 48e3a2b96a8676497f52723238d02615 + release: 1.gitbfb6bed.el8_3 + size: 62520 + version: '20210209' +- arch: x86_64 + build_id: 936936 + buildroot_id: 5062315 + buildtime: 1563984147 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7200930 + metadata_only: false + name: libtirpc + nvr: libtirpc-1.1.4-4.el8 + payloadhash: f444a3a4b94c73fea54f3b0294a82167 + release: 4.el8 + size: 114352 + version: 1.1.4 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896583 + metadata_only: false + name: platform-python-setuptools + nvr: platform-python-setuptools-39.2.0-6.el8 + payloadhash: 5934b19fab076ef2ddcf46b5b547dccb + release: 6.el8 + size: 646368 + version: 39.2.0 +- arch: x86_64 + build_id: 1540243 + buildroot_id: 7177560 + buildtime: 1616075400 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465807 + metadata_only: false + name: python3-libs + nvr: python3-libs-3.6.8-37.el8 + payloadhash: b61b7488f336bf916918c6602f7ecb50 + release: 37.el8 + size: 8223076 + version: 3.6.8 +- arch: x86_64 + build_id: 1513957 + buildroot_id: 7096794 + buildtime: 1614005806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9378948 + metadata_only: false + name: libpwquality + nvr: libpwquality-1.4.4-3.el8 + payloadhash: 3844b7d392027af330dca2770269fde8 + release: 3.el8 + size: 108360 + version: 1.4.4 +- arch: noarch + build_id: 747717 + buildroot_id: 4377880 + buildtime: 1534090982 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6181349 + metadata_only: false + name: python3-six + nvr: python3-six-1.11.0-8.el8 + payloadhash: 3a46b593df0c4e15061a4340cb8503bd + release: 8.el8 + size: 38304 + version: 1.11.0 +- arch: noarch + build_id: 747009 + buildroot_id: 4374452 + buildtime: 1534079097 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169270 + metadata_only: false + name: python3-dateutil + nvr: python3-dateutil-2.6.1-6.el8 + payloadhash: 229da5815b24a30b853e16880b69a193 + release: 6.el8 + size: 255964 + version: 2.6.1 +- arch: x86_64 + build_id: 1608370 + buildroot_id: 7403974 + buildtime: 1621554562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9743133 + metadata_only: false + name: glib2 + nvr: glib2-2.56.4-10.el8_4 + payloadhash: 7f89ae50dde6f379b81af6b00cf1e98d + release: 10.el8_4 + size: 2611296 + version: 2.56.4 +- arch: x86_64 + build_id: 1446215 + buildroot_id: 6873476 + buildtime: 1609936729 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9062207 + metadata_only: false + name: librhsm + nvr: librhsm-0.0.3-4.el8 + payloadhash: 526ff81ee351760e6319fa6a039098a8 + release: 4.el8 + size: 33132 + version: 0.0.3 +- arch: x86_64 + build_id: 1449225 + buildroot_id: 6883428 + buildtime: 1610105303 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075282 + metadata_only: false + name: kmod-libs + nvr: kmod-libs-25-17.el8 + payloadhash: 5cfb06d0f65220b1fa9d114802772b43 + release: 17.el8 + size: 68776 + version: '25' +- arch: x86_64 + build_id: 907679 + buildroot_id: 4962515 + buildtime: 1559822116 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7063441 + metadata_only: false + name: python3-dbus + nvr: python3-dbus-1.2.4-15.el8 + payloadhash: f9de8e702c9ba446d14c45a88aa8cb46 + release: 15.el8 + size: 136376 + version: 1.2.4 +- arch: x86_64 + build_id: 1224593 + buildroot_id: 6081750 + buildtime: 1591905670 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8174119 + metadata_only: false + name: python3-gobject-base + nvr: python3-gobject-base-3.28.3-2.el8 + payloadhash: 17a5e4fb6ee270fcb68c8aa47a664a4d + release: 2.el8 + size: 319176 + version: 3.28.3 +- arch: x86_64 + build_id: 1636355 + buildroot_id: 7498305 + buildtime: 1623854782 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9858633 + metadata_only: false + name: openldap + nvr: openldap-2.4.46-17.el8_4 + payloadhash: a76407e2ea1feebc627e5d382077384a + release: 17.el8_4 + size: 358640 + version: 2.4.46 +- arch: x86_64 + build_id: 1037354 + buildroot_id: 5429496 + buildtime: 1576262463 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7628690 + metadata_only: false + name: passwd + nvr: passwd-0.80-3.el8 + payloadhash: d5cb39fb44f0c0548c67d261aa9ba4d0 + release: 3.el8 + size: 116320 + version: '0.80' +- arch: x86_64 + build_id: 1399757 + buildroot_id: 6723956 + buildtime: 1606995916 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8889765 + metadata_only: false + name: libdb-utils + nvr: libdb-utils-5.3.28-40.el8 + payloadhash: 71c0c07c6389353a91a102ea59b984c7 + release: 40.el8 + size: 152012 + version: 5.3.28 +- arch: x86_64 + build_id: 1460547 + buildroot_id: 6918065 + buildtime: 1610710772 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9118098 + metadata_only: false + name: python3-libcomps + nvr: python3-libcomps-0.1.11-5.el8 + payloadhash: 2b6c003f73a1f15f2f4e87a03a044896 + release: 5.el8 + size: 52640 + version: 0.1.11 +- arch: x86_64 + build_id: 893483 + buildroot_id: 4904597 + buildtime: 1557309376 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6979855 + metadata_only: false + name: python3-dmidecode + nvr: python3-dmidecode-3.12.2-15.el8 + payloadhash: 8e8daa964759f073e349d891b166709f + release: 15.el8 + size: 94944 + version: 3.12.2 +- arch: noarch + build_id: 746941 + buildroot_id: 4374227 + buildtime: 1534078513 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168847 + metadata_only: false + name: python3-decorator + nvr: python3-decorator-4.2.1-2.el8 + payloadhash: 8e25edc54aba4c26c4962fe3df53cca3 + release: 2.el8 + size: 27036 + version: 4.2.1 +- arch: noarch + build_id: 800820 + buildroot_id: 4575314 + buildtime: 1542276035 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6525877 + metadata_only: false + name: python3-inotify + nvr: python3-inotify-0.9.6-13.el8 + payloadhash: 7edde5ba6f70c5bdd543fd295738b6f2 + release: 13.el8 + size: 57676 + version: 0.9.6 +- arch: noarch + build_id: 1380689 + buildroot_id: 6655007 + buildtime: 1604942511 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8794363 + metadata_only: false + name: python3-urllib3 + nvr: python3-urllib3-1.24.2-5.el8 + payloadhash: 3e72ec4338ad0bb966222d5dcb2333b7 + release: 5.el8 + size: 179804 + version: 1.24.2 +- arch: x86_64 + build_id: 1627034 + buildroot_id: 7465263 + buildtime: 1623179488 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819779 + metadata_only: false + name: python3-syspurpose + nvr: python3-syspurpose-1.28.13-3.el8_4 + payloadhash: 3bac4ebe72873c63690fb95272cb1b44 + release: 3.el8_4 + size: 308928 + version: 1.28.13 +- arch: x86_64 + build_id: 1389452 + buildroot_id: 6687647 + buildtime: 1605895536 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8837082 + metadata_only: false + name: tpm2-tss + nvr: tpm2-tss-2.3.2-3.el8 + payloadhash: a56c55fa5ef93bc75acfc4e0a51e1663 + release: 3.el8 + size: 280308 + version: 2.3.2 +- arch: x86_64 + build_id: 747381 + buildroot_id: 4376333 + buildtime: 1534085220 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6182491 + metadata_only: false + name: libyaml + nvr: libyaml-0.1.7-5.el8 + payloadhash: 3f04ead8f7a058382ccbb4f2195dfae6 + release: 5.el8 + size: 61768 + version: 0.1.7 +- arch: x86_64 + build_id: 1184235 + buildroot_id: 5929427 + buildtime: 1588610085 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8029167 + metadata_only: false + name: gnupg2 + nvr: gnupg2-2.2.20-2.el8 + payloadhash: 9999b5db2e074b42e16934d37910bf65 + release: 2.el8 + size: 2518340 + version: 2.2.20 +- arch: x86_64 + build_id: 1441861 + buildroot_id: 6860105 + buildtime: 1609760984 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9051379 + metadata_only: false + name: python3-gpg + nvr: python3-gpg-1.13.1-7.el8 + payloadhash: b24b86c5bcf9191de949a018b47d00dc + release: 7.el8 + size: 249380 + version: 1.13.1 +- arch: x86_64 + build_id: 1013911 + buildroot_id: 5340495 + buildtime: 1574160723 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7520901 + metadata_only: false + name: which + nvr: which-2.21-12.el8 + payloadhash: 1777f13b3c5facfe756db4fb7159bdb0 + release: 12.el8 + size: 48784 + version: '2.21' +- arch: noarch + build_id: 1237213 + buildroot_id: 6125644 + buildtime: 1593094870 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215425 + metadata_only: false + name: libssh-config + nvr: libssh-config-0.9.4-2.el8 + payloadhash: d4d44f510aea15a2e7c51d7b1166a988 + release: 2.el8 + size: 17796 + version: 0.9.4 +- arch: x86_64 + build_id: 1479079 + buildroot_id: 6984999 + buildtime: 1611938883 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201129 + metadata_only: false + name: libcurl + nvr: libcurl-7.61.1-18.el8 + payloadhash: c7a20de574f72f78d2b3c29fb4917968 + release: 18.el8 + size: 305232 + version: 7.61.1 +- arch: x86_64 + build_id: 1416620 + buildroot_id: 6784825 + buildtime: 1608027509 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9001990 + metadata_only: false + name: python3-librepo + nvr: python3-librepo-1.12.0-3.el8 + payloadhash: cb1483e5dcc3a5670997d4acaf2ff97b + release: 3.el8 + size: 52560 + version: 1.12.0 +- arch: x86_64 + build_id: 1618827 + buildroot_id: 7437109 + buildtime: 1622479399 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782885 + metadata_only: false + name: rpm + nvr: rpm-4.14.3-14.el8_4 + payloadhash: 6e2075fbe48b8cdccb7718c36caaf564 + release: 14.el8_4 + size: 553848 + version: 4.14.3 +- arch: x86_64 + build_id: 1199395 + buildroot_id: 5988266 + buildtime: 1590005713 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8086033 + metadata_only: false + name: libmodulemd + nvr: libmodulemd-2.9.4-2.el8 + payloadhash: 7600c64229c2fe476ece6bbce2e57edb + release: 2.el8 + size: 192144 + version: 2.9.4 +- arch: x86_64 + build_id: 1528104 + buildroot_id: 7139233 + buildtime: 1615218214 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417646 + metadata_only: false + name: libdnf + nvr: libdnf-0.55.0-7.el8 + payloadhash: c245466ec06a1773ace130e757878870 + release: 7.el8 + size: 697780 + version: 0.55.0 +- arch: x86_64 + build_id: 1528104 + buildroot_id: 7139233 + buildtime: 1615218214 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417649 + metadata_only: false + name: python3-hawkey + nvr: python3-hawkey-0.55.0-7.el8 + payloadhash: 759372d68bfbe23d7b47f82946c58659 + release: 7.el8 + size: 116052 + version: 0.55.0 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417617 + metadata_only: false + name: dnf-data + nvr: dnf-data-4.4.2-11.el8 + payloadhash: 41912b57a025dac9f66f9c03b9bf60ea + release: 11.el8 + size: 154068 + version: 4.4.2 +- arch: x86_64 + build_id: 1374200 + buildroot_id: 6630138 + buildtime: 1604330683 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8746389 + metadata_only: false + name: pciutils + nvr: pciutils-3.7.0-1.el8 + payloadhash: 77f9b32086d2c7745901c2556834d33e + release: 1.el8 + size: 106508 + version: 3.7.0 +- arch: x86_64 + build_id: 1479677 + buildroot_id: 6982005 + buildtime: 1611893337 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9194072 + metadata_only: false + name: libibverbs + nvr: libibverbs-32.0-4.el8 + payloadhash: 0ea121ca7d12e0a0d5b38c2ef52b0d42 + release: 4.el8 + size: 327728 + version: '32.0' +- arch: x86_64 + build_id: 1476759 + buildroot_id: 6972462 + buildtime: 1611748394 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9182207 + metadata_only: false + name: iptables-libs + nvr: iptables-libs-1.8.4-17.el8 + payloadhash: 937f38044777c45c578b228d82ce3648 + release: 17.el8 + size: 108200 + version: 1.8.4 +- arch: x86_64 + build_id: 1525173 + buildroot_id: 7130187 + buildtime: 1614950011 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9410240 + metadata_only: false + name: device-mapper-libs + nvr: device-mapper-libs-1.02.175-5.el8 + payloadhash: 1f5958d027fa4e74f38295a0d8787723 + release: 5.el8 + size: 416680 + version: 1.02.175 +- arch: noarch + build_id: 1420642 + buildroot_id: 6798337 + buildtime: 1608209944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020902 + metadata_only: false + name: elfutils-default-yama-scope + nvr: elfutils-default-yama-scope-0.182-3.el8 + payloadhash: 2003620672397ff00ced147f0dbbe756 + release: 3.el8 + size: 49248 + version: '0.182' +- arch: x86_64 + build_id: 1647417 + buildroot_id: 7537569 + buildtime: 1624959070 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912921 + metadata_only: false + name: systemd-pam + nvr: systemd-pam-239-45.el8_4.2 + payloadhash: 1a939882f0b464bf35d646c02e38885e + release: 45.el8_4.2 + size: 478860 + version: '239' +- arch: x86_64 + build_id: 1573801 + buildroot_id: 7272691 + buildtime: 1618405988 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561279 + metadata_only: false + name: dbus + nvr: dbus-1.12.8-12.el8_4.2 + payloadhash: 06505547c571e7c0cedcb177f4d74fa4 + release: 12.el8_4.2 + size: 40808 + version: 1.12.8 +- arch: x86_64 + build_id: 1618827 + buildroot_id: 7437109 + buildtime: 1622479399 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782891 + metadata_only: false + name: python3-rpm + nvr: python3-rpm-4.14.3-14.el8_4 + payloadhash: d91c061e5c52fe0b5f2e858fe6751f38 + release: 14.el8_4 + size: 160420 + version: 4.14.3 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417616 + metadata_only: false + name: dnf + nvr: dnf-4.4.2-11.el8 + payloadhash: 5df2e1f21c3b8441d55492ae87f1544f + release: 11.el8 + size: 550680 + version: 4.4.2 +- arch: x86_64 + build_id: 1627034 + buildroot_id: 7465263 + buildtime: 1623179488 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819782 + metadata_only: false + name: dnf-plugin-subscription-manager + nvr: dnf-plugin-subscription-manager-1.28.13-3.el8_4 + payloadhash: a5a6f5efc29e0e137eea74053180848f + release: 3.el8_4 + size: 297784 + version: 1.28.13 +- arch: x86_64 + build_id: 1627034 + buildroot_id: 7465263 + buildtime: 1623179488 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819778 + metadata_only: false + name: subscription-manager + nvr: subscription-manager-1.28.13-3.el8_4 + payloadhash: 34079ef72b65613b5cd78427862c8dc7 + release: 3.el8_4 + size: 1185380 + version: 1.28.13 +- arch: x86_64 + build_id: 1412741 + buildroot_id: 6773514 + buildtime: 1607741741 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8993836 + metadata_only: false + name: gdb-gdbserver + nvr: gdb-gdbserver-8.2-15.el8 + payloadhash: 73eaf21861ccbfeea5c758bf076f892b + release: 15.el8 + size: 444804 + version: '8.2' +- arch: x86_64 + build_id: 1213699 + buildroot_id: 6041039 + buildtime: 1591175293 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8134018 + metadata_only: false + name: vim-minimal + nvr: vim-minimal-8.0.1763-15.el8 + payloadhash: 4b3ddc56cbb1be95e0973b4a98047820 + release: 15.el8 + size: 585084 + version: 8.0.1763 +- arch: noarch + build_id: 746975 + buildroot_id: 4374352 + buildtime: 1534078655 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169012 + metadata_only: false + name: langpacks-en + nvr: langpacks-en-1.0-12.el8 + payloadhash: 1130f256caf9531f47bf94dc9c89a697 + release: 12.el8 + size: 8684 + version: '1.0' +- arch: noarch + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650594 + metadata_only: false + name: bind-license + nvr: bind-license-9.11.26-4.el8_4 + payloadhash: 507b400cbcc1a531a56a96a0e7ec5d95 + release: 4.el8_4 + size: 103484 + version: 9.11.26 +- arch: x86_64 + build_id: 1446652 + buildroot_id: 6874905 + buildtime: 1609953513 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9063818 + metadata_only: false + name: fstrm + nvr: fstrm-0.6.0-3.el8.1 + payloadhash: 780437c4cf51c500f0d266e1d4090f6d + release: 3.el8.1 + size: 28408 + version: 0.6.0 +- arch: x86_64 + build_id: 1588980 + buildroot_id: 7323905 + buildtime: 1619525549 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650669 + metadata_only: false + name: bind-libs-lite + nvr: bind-libs-lite-9.11.26-4.el8_4 + payloadhash: 52e6741efb0ed8d32d80887a69fa5080 + release: 4.el8_4 + size: 1239512 + version: 9.11.26 +- arch: noarch + build_id: 1446322 + buildroot_id: 6873795 + buildtime: 1609942008 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9062446 + metadata_only: false + name: python3-ply + nvr: python3-ply-3.9-9.el8 + payloadhash: e3b7c687e59dca916480eb02c9a3661e + release: 9.el8 + size: 112760 + version: '3.9' +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075060 + metadata_only: false + name: platform-python-pip + nvr: platform-python-pip-9.0.3-19.el8 + payloadhash: 0558b3e85bd74c4cbc651c0cc47a2f1c + release: 19.el8 + size: 1779340 + version: 9.0.3 +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075061 + metadata_only: false + name: python3-pip + nvr: python3-pip-9.0.3-19.el8 + payloadhash: 595c3569e5c51aad85a1eb6906fb4f71 + release: 19.el8 + size: 19104 + version: 9.0.3 +- arch: x86_64 + build_id: 747178 + buildroot_id: 4375226 + buildtime: 1534081432 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177565 + metadata_only: false + name: libmnl + nvr: libmnl-1.0.4-6.el8 + payloadhash: f2c2d66f09af729682a65b971fce62dd + release: 6.el8 + size: 29960 + version: 1.0.4 +- arch: x86_64 + build_id: 1588980 + buildroot_id: 7323905 + buildtime: 1619525549 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650671 + metadata_only: false + name: bind-utils + nvr: bind-utils-9.11.26-4.el8_4 + payloadhash: 4c309dc72569af386e3ff7a86071fc6b + release: 4.el8_4 + size: 460744 + version: 9.11.26 +- arch: x86_64 + build_id: 1421942 + buildroot_id: 6801957 + buildtime: 1608274200 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9025036 + metadata_only: false + name: rsync + nvr: rsync-3.1.3-12.el8 + payloadhash: 22805fb82d9f6c5a4fe3d3566eb6ffa8 + release: 12.el8 + size: 413416 + version: 3.1.3 +- arch: x86_64 + build_id: 1014155 + buildroot_id: 5341435 + buildtime: 1574173332 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7523542 + metadata_only: false + name: diffutils + nvr: diffutils-3.6-6.el8 + payloadhash: 9db31a05d35ed938aa79667aba6d3a06 + release: 6.el8 + size: 366316 + version: '3.6' +- arch: x86_64 + build_id: 1157209 + buildroot_id: 5819908 + buildtime: 1585911867 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7930564 + metadata_only: false + name: wget + nvr: wget-1.19.5-10.el8 + payloadhash: ceba2214b4b236f1506ba04e89339198 + release: 10.el8 + size: 750232 + version: 1.19.5 +- arch: x86_64 + build_id: 1334981 + buildroot_id: 6477770 + buildtime: 1601424063 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8495919 + metadata_only: false + name: libgcc + nvr: libgcc-8.4.1-1.el8 + payloadhash: 528db946dbd7cc322a07dfaaf728f63d + release: 1.el8 + size: 79304 + version: 8.4.1 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896582 + metadata_only: false + name: python3-setuptools-wheel + nvr: python3-setuptools-wheel-39.2.0-6.el8 + payloadhash: f7a0c30562c572b2b169a51cdd75df84 + release: 6.el8 + size: 294672 + version: 39.2.0 +- arch: x86_64 + build_id: 1627034 + buildroot_id: 7465263 + buildtime: 1623179488 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819786 + metadata_only: false + name: subscription-manager-rhsm-certificates + nvr: subscription-manager-rhsm-certificates-1.28.13-3.el8_4 + payloadhash: 53d572fc3b7cd793abc6a7cc14d5bff7 + release: 3.el8_4 + size: 270572 + version: 1.28.13 +- arch: x86_64 + build_id: 1557760 + buildroot_id: 7227939 + buildtime: 1617179292 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9521467 + metadata_only: false + name: redhat-release + nvr: redhat-release-8.4-0.6.el8 + payloadhash: 8e86d2babdc7ed4a6ef6d80382506198 + release: 0.6.el8 + size: 41220 + version: '8.4' +- arch: x86_64 + build_id: 1175627 + buildroot_id: 5893769 + buildtime: 1587623203 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8000793 + metadata_only: false + name: filesystem + nvr: filesystem-3.8-3.el8 + payloadhash: 9dd10d71731bd91b2d5863429f2a9139 + release: 3.el8 + size: 1134212 + version: '3.8' +- arch: noarch + build_id: 748188 + buildroot_id: 4379429 + buildtime: 1534094638 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185702 + metadata_only: false + name: publicsuffix-list-dafsa + nvr: publicsuffix-list-dafsa-20180723-1.el8 + payloadhash: 193f2f7ffa5e990141b941b47dfbab79 + release: 1.el8 + size: 56488 + version: '20180723' +- arch: x86_64 + build_id: 1207296 + buildroot_id: 6017986 + buildtime: 1590685238 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8114616 + metadata_only: false + name: pcre2 + nvr: pcre2-10.32-2.el8 + payloadhash: a9f1c1d89b3c7b5af66040bd06c164db + release: 2.el8 + size: 251208 + version: '10.32' +- arch: x86_64 + build_id: 829223 + buildroot_id: 4678817 + buildtime: 1547643898 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696192 + metadata_only: false + name: ncurses-libs + nvr: ncurses-libs-6.1-7.20180224.el8 + payloadhash: 0815dc6633f84c3ae920c037667864ca + release: 7.20180224.el8 + size: 342088 + version: '6.1' +- arch: x86_64 + build_id: 1525306 + buildroot_id: 7130580 + buildtime: 1614965196 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412715 + metadata_only: false + name: glibc-common + nvr: glibc-common-2.28-151.el8 + payloadhash: d60a489b4a04b492ec4500215021847d + release: 151.el8 + size: 1375940 + version: '2.28' +- arch: x86_64 + build_id: 1584181 + buildroot_id: 7306064 + buildtime: 1619014183 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9630608 + metadata_only: false + name: bash + nvr: bash-4.4.20-1.el8_4 + payloadhash: 239588c9a18e5a706302868caff501fb + release: 1.el8_4 + size: 1620772 + version: 4.4.20 +- arch: x86_64 + build_id: 1366387 + buildroot_id: 6602590 + buildtime: 1603788603 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8693809 + metadata_only: false + name: zlib + nvr: zlib-1.2.11-17.el8 + payloadhash: fca184b326da59a86e8ce266b2deb9c1 + release: 17.el8 + size: 103632 + version: 1.2.11 +- arch: x86_64 + build_id: 745941 + buildroot_id: 4369361 + buildtime: 1534060311 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155760 + metadata_only: false + name: bzip2-libs + nvr: bzip2-libs-1.0.6-26.el8 + payloadhash: 1b6713c1652e1e1dd3efa5ecc2543ee5 + release: 26.el8 + size: 48016 + version: 1.0.6 +- arch: x86_64 + build_id: 1606778 + buildroot_id: 7397477 + buildtime: 1621412087 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9736503 + metadata_only: false + name: libxml2 + nvr: libxml2-2.9.7-9.el8_4.2 + payloadhash: 5878f48661ac5dc5c57dab25a6244926 + release: 9.el8_4.2 + size: 711436 + version: 2.9.7 +- arch: x86_64 + build_id: 1201127 + buildroot_id: 5994859 + buildtime: 1590147890 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8090620 + metadata_only: false + name: libcap + nvr: libcap-2.26-4.el8 + payloadhash: 1b38c84eddb13c5586fbbaa7a6772843 + release: 4.el8 + size: 60192 + version: '2.26' +- arch: x86_64 + build_id: 1216822 + buildroot_id: 6052381 + buildtime: 1591348933 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8146173 + metadata_only: false + name: libzstd + nvr: libzstd-1.4.4-1.el8 + payloadhash: feb7435279c70cf9c0d10715b0e20225 + release: 1.el8 + size: 271260 + version: 1.4.4 +- arch: x86_64 + build_id: 1420642 + buildroot_id: 6798339 + buildtime: 1608209946 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020948 + metadata_only: false + name: elfutils-libelf + nvr: elfutils-libelf-0.182-3.el8 + payloadhash: 10fef998bb36ab986bd9aace358e2bb7 + release: 3.el8 + size: 220328 + version: '0.182' +- arch: x86_64 + build_id: 1177309 + buildroot_id: 5900171 + buildtime: 1587742261 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8006315 + metadata_only: false + name: expat + nvr: expat-2.2.5-4.el8 + payloadhash: c784d7133926b838a417abf014813587 + release: 4.el8 + size: 112480 + version: 2.2.5 +- arch: x86_64 + build_id: 1220066 + buildroot_id: 6064533 + buildtime: 1591610932 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8152072 + metadata_only: false + name: libcom_err + nvr: libcom_err-1.45.6-1.el8 + payloadhash: 2f9acb034a0f2c90a4d4d9b7c3479d31 + release: 1.el8 + size: 48980 + version: 1.45.6 +- arch: x86_64 + build_id: 1465282 + buildroot_id: 6933597 + buildtime: 1611049948 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133012 + metadata_only: false + name: libuuid + nvr: libuuid-2.32.1-27.el8 + payloadhash: c20eb44e4eddae44d34d4fb6f4134860 + release: 27.el8 + size: 96548 + version: 2.32.1 +- arch: x86_64 + build_id: 911719 + buildroot_id: 4980063 + buildtime: 1560501714 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7093029 + metadata_only: false + name: gmp + nvr: gmp-6.1.2-10.el8 + payloadhash: 0110514414e7fc0a609d3d174f5bab26 + release: 10.el8 + size: 328052 + version: 6.1.2 +- arch: x86_64 + build_id: 745979 + buildroot_id: 4369557 + buildtime: 1534063074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156897 + metadata_only: false + name: libacl + nvr: libacl-2.2.53-1.el8 + payloadhash: 523a222cdd868826a0cee07f1d169aa2 + release: 1.el8 + size: 34536 + version: 2.2.53 +- arch: x86_64 + build_id: 1465282 + buildroot_id: 6933597 + buildtime: 1611049948 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133010 + metadata_only: false + name: libblkid + nvr: libblkid-2.32.1-27.el8 + payloadhash: 51f092a471610d92ed6b0380adf1bd5b + release: 27.el8 + size: 220840 + version: 2.32.1 +- arch: x86_64 + build_id: 1197484 + buildroot_id: 5980581 + buildtime: 1589884034 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8076496 + metadata_only: false + name: sed + nvr: sed-4.5-2.el8 + payloadhash: 9824ec0f5de6843c68c58e1cf49ccda8 + release: 2.el8 + size: 303892 + version: '4.5' +- arch: x86_64 + build_id: 1334981 + buildroot_id: 6477770 + buildtime: 1601424063 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8495921 + metadata_only: false + name: libstdc++ + nvr: libstdc++-8.4.1-1.el8 + payloadhash: cf2d93e92e994738da75aee6e1090c75 + release: 1.el8 + size: 461000 + version: 8.4.1 +- arch: x86_64 + build_id: 1453279 + buildroot_id: 6895957 + buildtime: 1610373390 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9088167 + metadata_only: false + name: p11-kit + nvr: p11-kit-0.23.22-1.el8 + payloadhash: d442752bfdf3eb04cfadf4d00b7fde2a + release: 1.el8 + size: 331012 + version: 0.23.22 +- arch: x86_64 + build_id: 753876 + buildroot_id: 4402014 + buildtime: 1534538842 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6239946 + metadata_only: false + name: libunistring + nvr: libunistring-0.9.9-3.el8 + payloadhash: 71f1ff6e5cfc776c95cdf2e72d3739b1 + release: 3.el8 + size: 431256 + version: 0.9.9 +- arch: x86_64 + build_id: 1225800 + buildroot_id: 6086852 + buildtime: 1592238149 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8179254 + metadata_only: false + name: libgcrypt + nvr: libgcrypt-1.8.5-4.el8 + payloadhash: e9293b6b5c63465f8393293dc443bd92 + release: 4.el8 + size: 472548 + version: 1.8.5 +- arch: x86_64 + build_id: 1003002 + buildroot_id: 5298249 + buildtime: 1572942997 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7465668 + metadata_only: false + name: libcap-ng + nvr: libcap-ng-0.7.9-5.el8 + payloadhash: 527b3b75358366527c95e15ecf873632 + release: 5.el8 + size: 33004 + version: 0.7.9 +- arch: x86_64 + build_id: 1020741 + buildroot_id: 5366839 + buildtime: 1574797003 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7557331 + metadata_only: false + name: libnl3 + nvr: libnl3-3.5.0-1.el8 + payloadhash: 05568a1aad278f0a256c76058f2334d4 + release: 1.el8 + size: 326676 + version: 3.5.0 +- arch: x86_64 + build_id: 747020 + buildroot_id: 4374502 + buildtime: 1534079123 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6173708 + metadata_only: false + name: libassuan + nvr: libassuan-2.5.1-3.el8 + payloadhash: 34ab4e3fce1aa3ac8fedddf41b8d8cdd + release: 3.el8 + size: 83664 + version: 2.5.1 +- arch: x86_64 + build_id: 746949 + buildroot_id: 4374250 + buildtime: 1534078445 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172975 + metadata_only: false + name: keyutils-libs + nvr: keyutils-libs-1.5.10-6.el8 + payloadhash: 155ebaf2d8bd5371f0824a1f2d5e3649 + release: 6.el8 + size: 33384 + version: 1.5.10 +- arch: x86_64 + build_id: 1453279 + buildroot_id: 6895957 + buildtime: 1610373390 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9088169 + metadata_only: false + name: p11-kit-trust + nvr: p11-kit-trust-0.23.22-1.el8 + payloadhash: bbf8db45ac6e198a1d6af67ab01a77c5 + release: 1.el8 + size: 139224 + version: 0.23.22 +- arch: x86_64 + build_id: 745934 + buildroot_id: 4369290 + buildtime: 1534060242 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155636 + metadata_only: false + name: grep + nvr: grep-3.1-6.el8 + payloadhash: 30b6144c39fb56fa6ba3f6114d1e8cf2 + release: 6.el8 + size: 279252 + version: '3.1' +- arch: x86_64 + build_id: 1573801 + buildroot_id: 7272691 + buildtime: 1618405988 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561282 + metadata_only: false + name: dbus-libs + nvr: dbus-libs-1.12.8-12.el8_4.2 + payloadhash: 5b71de08cfb47a0d096fff9eb243eed9 + release: 12.el8_4.2 + size: 186908 + version: 1.12.8 +- arch: x86_64 + build_id: 1573801 + buildroot_id: 7272691 + buildtime: 1618405988 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561281 + metadata_only: false + name: dbus-tools + nvr: dbus-tools-1.12.8-12.el8_4.2 + payloadhash: cf36e2a39e24e89ee5b935d304adc9d8 + release: 12.el8_4.2 + size: 86056 + version: 1.12.8 +- arch: x86_64 + build_id: 774503 + buildroot_id: 4488611 + buildtime: 1538130019 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399071 + metadata_only: false + name: gdbm + nvr: gdbm-1.18-1.el8 + payloadhash: 040e64f28ad6347b8fa2716177b9ea5e + release: 1.el8 + size: 131844 + version: '1.18' +- arch: x86_64 + build_id: 1364758 + buildroot_id: 6598265 + buildtime: 1603717864 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8690808 + metadata_only: false + name: shadow-utils + nvr: shadow-utils-4.6-12.el8 + payloadhash: 9cad971b89a6abbc7637a6d9b9c480d1 + release: 12.el8 + size: 1278516 + version: '4.6' +- arch: x86_64 + build_id: 1573801 + buildroot_id: 7272691 + buildtime: 1618405988 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561280 + metadata_only: false + name: dbus-daemon + nvr: dbus-daemon-1.12.8-12.el8_4.2 + payloadhash: 4ba80436d80b7015cbf0c0249a04ea55 + release: 12.el8_4.2 + size: 244632 + version: 1.12.8 +- arch: x86_64 + build_id: 1465282 + buildroot_id: 6933597 + buildtime: 1611049948 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133004 + metadata_only: false + name: libfdisk + nvr: libfdisk-2.32.1-27.el8 + payloadhash: 91e84e8b739bee9f0cf0f95bd6e800cd + release: 27.el8 + size: 255056 + version: 2.32.1 +- arch: x86_64 + build_id: 804625 + buildroot_id: 4589607 + buildtime: 1543246313 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551434 + metadata_only: false + name: cracklib + nvr: cracklib-2.9.6-15.el8 + payloadhash: 1d2e0ea180209490890120b52f6cc769 + release: 15.el8 + size: 94428 + version: 2.9.6 +- arch: x86_64 + build_id: 745979 + buildroot_id: 4369557 + buildtime: 1534063074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156901 + metadata_only: false + name: acl + nvr: acl-2.2.53-1.el8 + payloadhash: f44e705742561bf1ee22ee64bf655045 + release: 1.el8 + size: 81872 + version: 2.2.53 +- arch: x86_64 + build_id: 1565615 + buildroot_id: 7249242 + buildtime: 1617782218 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9540210 + metadata_only: false + name: nettle + nvr: nettle-3.4.1-4.el8_3 + payloadhash: 53d804533772718c297ebf54068a73fd + release: 4.el8_3 + size: 306672 + version: 3.4.1 +- arch: x86_64 + build_id: 747162 + buildroot_id: 4375144 + buildtime: 1534081092 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177322 + metadata_only: false + name: libmetalink + nvr: libmetalink-0.1.3-7.el8 + payloadhash: 0235d6edf93235d73ec2d5f5ac24133b + release: 7.el8 + size: 31680 + version: 0.1.3 +- arch: x86_64 + build_id: 1337704 + buildroot_id: 6487001 + buildtime: 1601568906 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8508734 + metadata_only: false + name: brotli + nvr: brotli-1.0.6-3.el8 + payloadhash: db95b512b6b903bb6f38a3360cd72116 + release: 3.el8 + size: 329756 + version: 1.0.6 +- arch: x86_64 + build_id: 1221598 + buildroot_id: 6070244 + buildtime: 1591702545 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157487 + metadata_only: false + name: libnghttp2 + nvr: libnghttp2-1.33.0-3.el8_2.1 + payloadhash: 241283a741a6d330e7a45c4a5c5398a1 + release: 3.el8_2.1 + size: 78140 + version: 1.33.0 +- arch: x86_64 + build_id: 747270 + buildroot_id: 4375759 + buildtime: 1534083003 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6179877 + metadata_only: false + name: libsigsegv + nvr: libsigsegv-2.11-5.el8 + payloadhash: fefaf277406f99a9199e205f6fc8435f + release: 5.el8 + size: 29908 + version: '2.11' +- arch: x86_64 + build_id: 747306 + buildroot_id: 4375960 + buildtime: 1534083575 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180859 + metadata_only: false + name: libverto + nvr: libverto-0.3.0-5.el8 + payloadhash: d4222c7b959f58e8a9c4772a50d3fd88 + release: 5.el8 + size: 23736 + version: 0.3.0 +- arch: x86_64 + build_id: 1550360 + buildroot_id: 7208302 + buildtime: 1616691111 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9500761 + metadata_only: false + name: openssl-libs + nvr: openssl-libs-1.1.1g-15.el8_3 + payloadhash: fe858cea1513e14027aa3257f969ce16 + release: 15.el8_3 + size: 1532956 + version: 1.1.1g +- arch: x86_64 + build_id: 1419017 + buildroot_id: 6793823 + buildtime: 1608141651 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9016742 + metadata_only: false + name: krb5-libs + nvr: krb5-libs-1.18.2-8.el8 + payloadhash: d9f171a8020bba67e0400309e46c8b70 + release: 8.el8 + size: 857116 + version: 1.18.2 +- arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320563 + metadata_only: false + name: crypto-policies-scripts + nvr: crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3 + payloadhash: 419de3d06a04ee6fbb655fe74740bb8f + release: 1.gitbfb6bed.el8_3 + size: 67668 + version: '20210209' +- arch: x86_64 + build_id: 1540243 + buildroot_id: 7177560 + buildtime: 1616075400 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465806 + metadata_only: false + name: platform-python + nvr: platform-python-3.6.8-37.el8 + payloadhash: 67c2ad65e9fea9249e5d023d15a58f22 + release: 37.el8 + size: 85028 + version: 3.6.8 +- arch: x86_64 + build_id: 1399757 + buildroot_id: 6723956 + buildtime: 1606995916 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8889764 + metadata_only: false + name: libdb + nvr: libdb-5.3.28-40.el8 + payloadhash: 7a68451bbfbc1eb52c8157fa6ddb030b + release: 40.el8 + size: 768020 + version: 5.3.28 +- arch: x86_64 + build_id: 1378172 + buildroot_id: 6645378 + buildtime: 1604589837 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8777836 + metadata_only: false + name: pam + nvr: pam-1.3.1-14.el8 + payloadhash: 5a309071c1e302bc342253e082a089b9 + release: 14.el8 + size: 755496 + version: 1.3.1 +- arch: x86_64 + build_id: 1465282 + buildroot_id: 6933597 + buildtime: 1611049948 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9133003 + metadata_only: false + name: util-linux + nvr: util-linux-2.32.1-27.el8 + payloadhash: 070a258500e9c66a4ee84dad8f012b56 + release: 27.el8 + size: 2588396 + version: 2.32.1 +- arch: x86_64 + build_id: 1559858 + buildroot_id: 7234163 + buildtime: 1617283116 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9527151 + metadata_only: false + name: gnutls + nvr: gnutls-3.6.14-8.el8_3 + payloadhash: 9690574374211a00ca2a966d1aab1ac7 + release: 8.el8_3 + size: 1035448 + version: 3.6.14 +- arch: x86_64 + build_id: 782991 + buildroot_id: 4522247 + buildtime: 1539698450 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6452472 + metadata_only: false + name: json-glib + nvr: json-glib-1.4.4-1.el8 + payloadhash: adf272d26b49027b3c7587ca64d9964d + release: 1.el8 + size: 146696 + version: 1.4.4 +- arch: noarch + build_id: 747226 + buildroot_id: 4375496 + buildtime: 1534082024 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6171381 + metadata_only: false + name: python3-iniparse + nvr: python3-iniparse-0.4-31.el8 + payloadhash: 29f73a3875d2d7f187c2796233b96724 + release: 31.el8 + size: 48776 + version: '0.4' +- arch: x86_64 + build_id: 746151 + buildroot_id: 4370262 + buildtime: 1534065420 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6161486 + metadata_only: false + name: dbus-glib + nvr: dbus-glib-0.110-2.el8 + payloadhash: 702927da04cedee47ddffc62f8fe45fb + release: 2.el8 + size: 129164 + version: '0.110' +- arch: x86_64 + build_id: 746526 + buildroot_id: 4372196 + buildtime: 1534073327 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168966 + metadata_only: false + name: gobject-introspection + nvr: gobject-introspection-1.56.1-1.el8 + payloadhash: 0a621914f0e9bb286061d5c1cfc93ee7 + release: 1.el8 + size: 259976 + version: 1.56.1 +- arch: x86_64 + build_id: 1188151 + buildroot_id: 5943492 + buildtime: 1588873068 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8043997 + metadata_only: false + name: cyrus-sasl-lib + nvr: cyrus-sasl-lib-2.1.27-5.el8 + payloadhash: e4869fdd981801de5ec5a94cb7c6e961 + release: 5.el8 + size: 125128 + version: 2.1.27 +- arch: x86_64 + build_id: 919146 + buildroot_id: 5005132 + buildtime: 1561576480 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7125040 + metadata_only: false + name: libuser + nvr: libuser-0.62-23.el8 + payloadhash: e9f6df275fb5ca7cac8ffdd335adcbb5 + release: 23.el8 + size: 425944 + version: '0.62' +- arch: x86_64 + build_id: 802356 + buildroot_id: 4581338 + buildtime: 1542709117 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6534752 + metadata_only: false + name: usermode + nvr: usermode-1.113-1.el8 + payloadhash: 860f1e526be16abc3b4f5b1ac13908b3 + release: 1.el8 + size: 205920 + version: '1.113' +- arch: x86_64 + build_id: 812275 + buildroot_id: 4614375 + buildtime: 1544451060 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6588182 + metadata_only: false + name: python3-ethtool + nvr: python3-ethtool-0.14-3.el8 + payloadhash: ae0444f7569d665a9cc577f5535de085 + release: 3.el8 + size: 44864 + version: '0.14' +- arch: x86_64 + build_id: 1606778 + buildroot_id: 7397477 + buildtime: 1621412087 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9736506 + metadata_only: false + name: python3-libxml2 + nvr: python3-libxml2-2.9.7-9.el8_4.2 + payloadhash: 2cba7f06335224b5238f7a2c43ad3fde + release: 9.el8_4.2 + size: 241696 + version: 2.9.7 +- arch: noarch + build_id: 746857 + buildroot_id: 4373971 + buildtime: 1534077847 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168183 + metadata_only: false + name: python3-chardet + nvr: python3-chardet-3.0.4-7.el8 + payloadhash: 3ada1fbcb564b91e61de7f32130c471a + release: 7.el8 + size: 198980 + version: 3.0.4 +- arch: noarch + build_id: 747193 + buildroot_id: 4375299 + buildtime: 1534081484 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6171075 + metadata_only: false + name: python3-idna + nvr: python3-idna-2.5-5.el8 + payloadhash: 6ac5832b8bd214a6d2abc0072c97ab94 + release: 5.el8 + size: 98292 + version: '2.5' +- arch: noarch + build_id: 747578 + buildroot_id: 4377175 + buildtime: 1534088197 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177446 + metadata_only: false + name: python3-pysocks + nvr: python3-pysocks-1.6.8-3.el8 + payloadhash: 69d81ceb864a79a1b73a3c9826d9d6a7 + release: 3.el8 + size: 33924 + version: 1.6.8 +- arch: noarch + build_id: 989775 + buildroot_id: 5251486 + buildtime: 1571299303 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7411632 + metadata_only: false + name: python3-requests + nvr: python3-requests-2.20.0-2.1.el8_1 + payloadhash: 86b829d8cb0e3dc32d5c0d3a992456f4 + release: 2.1.el8_1 + size: 125356 + version: 2.20.0 +- arch: x86_64 + build_id: 1335853 + buildroot_id: 6480706 + buildtime: 1601461249 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8501323 + metadata_only: false + name: libarchive + nvr: libarchive-3.3.3-1.el8 + payloadhash: 498d0073f930a27d85c6c42174b2d67b + release: 1.el8 + size: 366960 + version: 3.3.3 +- arch: x86_64 + build_id: 1509562 + buildroot_id: 7086197 + buildtime: 1613753133 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9368632 + metadata_only: false + name: ima-evm-utils + nvr: ima-evm-utils-1.3.2-12.el8 + payloadhash: 620c2c42d21d7cde0e5dde20ece15531 + release: 12.el8 + size: 64348 + version: 1.3.2 +- arch: x86_64 + build_id: 747600 + buildroot_id: 4377302 + buildtime: 1534088492 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185261 + metadata_only: false + name: npth + nvr: npth-1.5-4.el8 + payloadhash: d3b12364e2469edec36e847077238227 + release: 4.el8 + size: 25732 + version: '1.5' +- arch: x86_64 + build_id: 1441861 + buildroot_id: 6860105 + buildtime: 1609760984 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9051373 + metadata_only: false + name: gpgme + nvr: gpgme-1.13.1-7.el8 + payloadhash: 5aae0f9b45f1199a46bf00efcb4fb2e6 + release: 7.el8 + size: 342628 + version: 1.13.1 +- arch: x86_64 + build_id: 1374200 + buildroot_id: 6630138 + buildtime: 1604330683 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8746391 + metadata_only: false + name: pciutils-libs + nvr: pciutils-libs-3.7.0-1.el8 + payloadhash: fb6f8e7585bd760c6fa38c843da204f1 + release: 1.el8 + size: 54372 + version: 3.7.0 +- arch: x86_64 + build_id: 791846 + buildroot_id: 4549788 + buildtime: 1541015438 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6482139 + metadata_only: false + name: virt-what + nvr: virt-what-1.18-6.el8 + payloadhash: 6705fe7baf272c91b8f22f69beeef53f + release: 6.el8 + size: 35116 + version: '1.18' +- arch: x86_64 + build_id: 1237213 + buildroot_id: 6125639 + buildtime: 1593094173 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215432 + metadata_only: false + name: libssh + nvr: libssh-0.9.4-2.el8 + payloadhash: cedf81c142a0984907d529a2c6a68194 + release: 2.el8 + size: 218604 + version: 0.9.4 +- arch: x86_64 + build_id: 1416620 + buildroot_id: 6784825 + buildtime: 1608027509 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9001988 + metadata_only: false + name: librepo + nvr: librepo-1.12.0-3.el8 + payloadhash: 1fbe0fc4255d2f783a607fd590f28fd7 + release: 3.el8 + size: 91820 + version: 1.12.0 +- arch: x86_64 + build_id: 1479079 + buildroot_id: 6984999 + buildtime: 1611938883 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201128 + metadata_only: false + name: curl + nvr: curl-7.61.1-18.el8 + payloadhash: cf2409df6e6edea9ac2659d4e68d68a1 + release: 18.el8 + size: 360780 + version: 7.61.1 +- arch: x86_64 + build_id: 1618827 + buildroot_id: 7437109 + buildtime: 1622479399 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782886 + metadata_only: false + name: rpm-libs + nvr: rpm-libs-4.14.3-14.el8_4 + payloadhash: 6a67b6310f06e171acb6de26c530524e + release: 14.el8_4 + size: 346428 + version: 4.14.3 +- arch: x86_64 + build_id: 1460531 + buildroot_id: 6918022 + buildtime: 1610709778 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9117919 + metadata_only: false + name: libsolv + nvr: libsolv-0.7.16-2.el8 + payloadhash: 0519efaa084b1cd400718522d5544d63 + release: 2.el8 + size: 369820 + version: 0.7.16 +- arch: x86_64 + build_id: 1528104 + buildroot_id: 7139233 + buildtime: 1615218214 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417648 + metadata_only: false + name: python3-libdnf + nvr: python3-libdnf-0.55.0-7.el8 + payloadhash: e31912cdbc1fb43f5f22c485237f9b21 + release: 7.el8 + size: 786208 + version: 0.55.0 +- arch: x86_64 + build_id: 1290417 + buildroot_id: 6324130 + buildtime: 1597819311 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8363477 + metadata_only: false + name: libreport-filesystem + nvr: libreport-filesystem-2.9.5-15.el8 + payloadhash: bdd1b9d481c834f39d0627953c599b2f + release: 15.el8 + size: 20432 + version: 2.9.5 +- arch: noarch + build_id: 1495269 + buildroot_id: 7035710 + buildtime: 1612784043 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9293910 + metadata_only: false + name: hwdata + nvr: hwdata-0.314-8.8.el8 + payloadhash: 4992d597c87d420c328da638b51d5edd + release: 8.8.el8 + size: 1733960 + version: '0.314' +- arch: x86_64 + build_id: 1479677 + buildroot_id: 6982005 + buildtime: 1611893337 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9194069 + metadata_only: false + name: rdma-core + nvr: rdma-core-32.0-4.el8 + payloadhash: e0ee8934976e95e40f051b7442723b2e + release: 4.el8 + size: 59152 + version: '32.0' +- arch: x86_64 + build_id: 1465270 + buildroot_id: 6933553 + buildtime: 1611049405 + epoch: 14 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132901 + metadata_only: false + name: libpcap + nvr: libpcap-1.9.1-5.el8 + payloadhash: ddc027ab72a6073adca916061175a308 + release: 5.el8 + size: 171676 + version: 1.9.1 +- arch: x86_64 + build_id: 1525173 + buildroot_id: 7130187 + buildtime: 1614950011 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9410238 + metadata_only: false + name: device-mapper + nvr: device-mapper-1.02.175-5.el8 + payloadhash: 52d15f1ec62336da9f4c4a44aff4f244 + release: 5.el8 + size: 382868 + version: 1.02.175 +- arch: x86_64 + build_id: 1507689 + buildroot_id: 7079466 + buildtime: 1613665550 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9356243 + metadata_only: false + name: cryptsetup-libs + nvr: cryptsetup-libs-2.3.3-4.el8 + payloadhash: c7774621b83457eb8b24b41dec912f41 + release: 4.el8 + size: 480516 + version: 2.3.3 +- arch: x86_64 + build_id: 1420642 + buildroot_id: 6798339 + buildtime: 1608209946 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020945 + metadata_only: false + name: elfutils-libs + nvr: elfutils-libs-0.182-3.el8 + payloadhash: c415ca55accfdcc8aa9405a6a53cd7a9 + release: 3.el8 + size: 299096 + version: '0.182' +- arch: x86_64 + build_id: 1647417 + buildroot_id: 7537569 + buildtime: 1624959070 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912919 + metadata_only: false + name: systemd + nvr: systemd-239-45.el8_4.2 + payloadhash: 2d0e546cc26e65f261b3a4a3b1d735a5 + release: 45.el8_4.2 + size: 3736792 + version: '239' +- arch: x86_64 + build_id: 1618827 + buildroot_id: 7437109 + buildtime: 1622479399 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782887 + metadata_only: false + name: rpm-build-libs + nvr: rpm-build-libs-4.14.3-14.el8_4 + payloadhash: ec6020a1aae5e4719776e2e7c867e505 + release: 14.el8_4 + size: 158096 + version: 4.14.3 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417619 + metadata_only: false + name: python3-dnf + nvr: python3-dnf-4.4.2-11.el8 + payloadhash: 37d326ca26f018d54ddcc285ddc8cefc + release: 11.el8 + size: 553316 + version: 4.4.2 +- arch: noarch + build_id: 1528091 + buildroot_id: 7139136 + buildtime: 1615216494 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417601 + metadata_only: false + name: python3-dnf-plugins-core + nvr: python3-dnf-plugins-core-4.0.18-4.el8 + payloadhash: eca9f30e6d32e56dbdd811458b405d55 + release: 4.el8 + size: 238880 + version: 4.0.18 +- arch: x86_64 + build_id: 1627034 + buildroot_id: 7465263 + buildtime: 1623179488 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819785 + metadata_only: false + name: python3-subscription-manager-rhsm + nvr: python3-subscription-manager-rhsm-1.28.13-3.el8_4 + payloadhash: c79aeafa3666bff36de586075e106f47 + release: 3.el8_4 + size: 373532 + version: 1.28.13 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417618 + metadata_only: false + name: yum + nvr: yum-4.4.2-11.el8 + payloadhash: 60663bd019796159c134cbf95fd15022 + release: 11.el8 + size: 200560 + version: 4.4.2 +- arch: x86_64 + build_id: 1229781 + buildroot_id: 6101296 + buildtime: 1592561997 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8194441 + metadata_only: false + name: tar + nvr: tar-1.30-5.el8 + payloadhash: 3edbfbdb54c3b29e1076831e8735f838 + release: 5.el8 + size: 856804 + version: '1.30' +- arch: x86_64 + build_id: 794639 + buildroot_id: 4557732 + buildtime: 1541427644 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6492557 + metadata_only: false + name: findutils + nvr: findutils-4.6.0-20.el8 + payloadhash: d40b229ff9851c05acbe51eec9777424 + release: 20.el8 + size: 539652 + version: 4.6.0 +- arch: noarch + build_id: 748292 + buildroot_id: 4379902 + buildtime: 1534096383 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6187287 + metadata_only: false + name: rootfiles + nvr: rootfiles-8.1-22.el8 + payloadhash: 95e9e04d2d86a4595e51bb74119338c6 + release: 22.el8 + size: 12544 + version: '8.1' +- arch: x86_64 + build_id: 1487216 + buildroot_id: 7008137 + buildtime: 1612360441 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9234968 + metadata_only: false + name: protobuf-c + nvr: protobuf-c-1.3.0-6.el8 + payloadhash: 814584384229d778b9a86d0ea5619718 + release: 6.el8 + size: 36780 + version: 1.3.0 +- arch: x86_64 + build_id: 1221242 + buildroot_id: 6069066 + buildtime: 1591692349 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157011 + metadata_only: false + name: libmaxminddb + nvr: libmaxminddb-1.2.0-10.el8 + payloadhash: e99bfffddc32808dc77ef605f072dae1 + release: 10.el8 + size: 32856 + version: 1.2.0 +- arch: x86_64 + build_id: 1588980 + buildroot_id: 7323905 + buildtime: 1619525549 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650670 + metadata_only: false + name: bind-libs + nvr: bind-libs-9.11.26-4.el8_4 + payloadhash: 2d23cb5f0368a299234d706ac8d2cbf2 + release: 4.el8_4 + size: 176772 + version: 9.11.26 +- arch: noarch + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650600 + metadata_only: false + name: python3-bind + nvr: python3-bind-9.11.26-4.el8_4 + payloadhash: f2165135f8433d93285ad5424609d56d + release: 4.el8_4 + size: 151884 + version: 9.11.26 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896584 + metadata_only: false + name: python3-setuptools + nvr: python3-setuptools-39.2.0-6.el8 + payloadhash: 6d34ed1b6b1e4e9a04c9c81f4387aa0c + release: 6.el8 + size: 165444 + version: 39.2.0 +- arch: x86_64 + build_id: 908277 + buildroot_id: 4964958 + buildtime: 1559911902 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7068902 + metadata_only: false + name: python36 + nvr: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7 + payloadhash: e1d555152470f8c9ef3eeba5bcd0eddf + release: 2.module+el8.1.0+3334+5cb623d7 + size: 18446 + version: 3.6.8 +- arch: x86_64 + build_id: 1533934 + buildroot_id: 7157443 + buildtime: 1615575699 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9438892 + metadata_only: false + name: iproute + nvr: iproute-5.9.0-4.el8 + payloadhash: 570e255ada19b7100c34905eafac21c1 + release: 4.el8 + size: 708016 + version: 5.9.0 +- arch: x86_64 + build_id: 1397548 + buildroot_id: 6716408 + buildtime: 1606839923 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8879945 + metadata_only: false + name: procps-ng + nvr: procps-ng-3.3.15-6.el8 + payloadhash: 36dda973cfd47bcef3038f4242f235f4 + release: 6.el8 + size: 335708 + version: 3.3.15 +- arch: x86_64 + build_id: 1172035 + buildroot_id: 5879012 + buildtime: 1587382111 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7991545 + metadata_only: false + name: lsof + nvr: lsof-4.93.2-1.el8 + payloadhash: dedf9e222aee906dacf3a05f2461de83 + release: 1.el8 + size: 257816 + version: 4.93.2 +- arch: x86_64 + build_id: 746599 + buildroot_id: 4373343 + buildtime: 1534076692 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6170673 + metadata_only: false + name: hostname + nvr: hostname-3.20-6.el8 + payloadhash: e7710f5a42b1eff83a117cc8ac4a4da4 + release: 6.el8 + size: 31628 + version: '3.20' +- arch: x86_64 + build_id: 1025058 + buildroot_id: 5383389 + buildtime: 1575182422 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7579201 + metadata_only: false + name: socat + nvr: socat-1.7.3.3-2.el8 + payloadhash: ccd9e149b63af60a9da0b16067363f1c + release: 2.el8 + size: 308140 + version: 1.7.3.3 +5229577: +- arch: noarch + build_id: 1473607 + buildroot_id: 6962315 + buildtime: 1611592265 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9169364 + metadata_only: false + name: tzdata + nvr: tzdata-2021a-1.el8 + payloadhash: a928d660b5bd64a91bd6bfc055c865e5 + release: 1.el8 + size: 482936 + version: 2021a +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075063 + metadata_only: false + name: python3-pip-wheel + nvr: python3-pip-wheel-9.0.3-19.el8 + payloadhash: 997ee4c01abb0e5b77e5d43a9181e252 + release: 19.el8 + size: 1094660 + version: 9.0.3 +- arch: noarch + build_id: 1573801 + buildroot_id: 7272689 + buildtime: 1618406023 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561237 + metadata_only: false + name: dbus-common + nvr: dbus-common-1.12.8-12.el8_4.2 + payloadhash: 9eeffd2111ff14f34ac723276c01283b + release: 12.el8_4.2 + size: 45624 + version: 1.12.8 +- arch: noarch + build_id: 1166694 + buildroot_id: 5856989 + buildtime: 1586943783 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7971019 + metadata_only: false + name: setup + nvr: setup-2.12.2-6.el8 + payloadhash: 109811c80a28ad746bcd12d4d0c06794 + release: 6.el8 + size: 183896 + version: 2.12.2 +- arch: noarch + build_id: 746023 + buildroot_id: 4369700 + buildtime: 1534063206 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156542 + metadata_only: false + name: basesystem + nvr: basesystem-11-5.el8 + payloadhash: 31bc067a6462aacd3b891681bdb27512 + release: 5.el8 + size: 9652 + version: '11' +- arch: noarch + build_id: 829223 + buildroot_id: 4678814 + buildtime: 1547644074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696179 + metadata_only: false + name: ncurses-base + nvr: ncurses-base-6.1-7.20180224.el8 + payloadhash: 6f474c29de2d5954bf13ae3a68215dc9 + release: 7.20180224.el8 + size: 81712 + version: '6.1' +- arch: aarch64 + build_id: 1360527 + buildroot_id: 6582955 + buildtime: 1603273887 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8672624 + metadata_only: false + name: libselinux + nvr: libselinux-2.9-5.el8 + payloadhash: 5b6eda5301e67443fa7df4acf2b6b134 + release: 5.el8 + size: 164544 + version: '2.9' +- arch: aarch64 + build_id: 1525306 + buildroot_id: 7130577 + buildtime: 1614965345 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412274 + metadata_only: false + name: glibc-minimal-langpack + nvr: glibc-minimal-langpack-2.28-151.el8 + payloadhash: 1fb7999bddf9eed3cf1125087d0a0441 + release: 151.el8 + size: 56264 + version: '2.28' +- arch: aarch64 + build_id: 1525306 + buildroot_id: 7130577 + buildtime: 1614965345 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412069 + metadata_only: false + name: glibc + nvr: glibc-2.28-151.el8 + payloadhash: 9bed517b8c69d81e8cbe1cefb9d32d85 + release: 151.el8 + size: 3651640 + version: '2.28' +- arch: aarch64 + build_id: 1449855 + buildroot_id: 6885594 + buildtime: 1610126040 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9079440 + metadata_only: false + name: libsepol + nvr: libsepol-2.9-2.el8 + payloadhash: 31591b092df7e482a501239cc082b0bf + release: 2.el8 + size: 326684 + version: '2.9' +- arch: aarch64 + build_id: 803342 + buildroot_id: 4585478 + buildtime: 1542895809 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6547266 + metadata_only: false + name: xz-libs + nvr: xz-libs-5.2.4-3.el8 + payloadhash: 292a1d907063ff7e4491bf18c03e63e1 + release: 3.el8 + size: 91680 + version: 5.2.4 +- arch: aarch64 + build_id: 747111 + buildroot_id: 4376641 + buildtime: 1534086529 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6175777 + metadata_only: false + name: libgpg-error + nvr: libgpg-error-1.31-1.el8 + payloadhash: 4c17a74edd786d8269927465c2fe3343 + release: 1.el8 + size: 244196 + version: '1.31' +- arch: aarch64 + build_id: 1201127 + buildroot_id: 5994861 + buildtime: 1590147983 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8090616 + metadata_only: false + name: libcap + nvr: libcap-2.26-4.el8 + payloadhash: 19b0f9e8112790e73bb190a9e35b8c19 + release: 4.el8 + size: 59880 + version: '2.26' +- arch: aarch64 + build_id: 1216822 + buildroot_id: 6052379 + buildtime: 1591349096 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8146166 + metadata_only: false + name: libzstd + nvr: libzstd-1.4.4-1.el8 + payloadhash: e896ef90c03d9d56e8fb75f0d266cdfa + release: 1.el8 + size: 245000 + version: 1.4.4 +- arch: aarch64 + build_id: 1606778 + buildroot_id: 7397475 + buildtime: 1621412142 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9736482 + metadata_only: false + name: libxml2 + nvr: libxml2-2.9.7-9.el8_4.2 + payloadhash: 8362f6780c16bd8a7e3709c5da432158 + release: 9.el8_4.2 + size: 667516 + version: 2.9.7 +- arch: aarch64 + build_id: 1397463 + buildroot_id: 6715854 + buildtime: 1606832478 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8878683 + metadata_only: false + name: sqlite-libs + nvr: sqlite-libs-3.26.0-13.el8 + payloadhash: 1e3ef64017accf3701ceb2b5922a1f52 + release: 13.el8 + size: 561000 + version: 3.26.0 +- arch: aarch64 + build_id: 1487471 + buildroot_id: 7009373 + buildtime: 1612371226 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9239278 + metadata_only: false + name: json-c + nvr: json-c-0.13.1-0.4.el8 + payloadhash: a8648ec2c78d7c38adf0f19d09176a49 + release: 0.4.el8 + size: 39240 + version: 0.13.1 +- arch: aarch64 + build_id: 1192639 + buildroot_id: 5961304 + buildtime: 1589395408 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8062224 + metadata_only: false + name: libffi + nvr: libffi-3.1-22.el8 + payloadhash: 10f249042ae7d94420ffa9ca2c9e08a0 + release: 22.el8 + size: 36048 + version: '3.1' +- arch: aarch64 + build_id: 748275 + buildroot_id: 4381427 + buildtime: 1534101839 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6192834 + metadata_only: false + name: readline + nvr: readline-7.0-10.el8 + payloadhash: 003d25d73105bc24028cc3f4372c408b + release: 10.el8 + size: 196560 + version: '7.0' +- arch: aarch64 + build_id: 746019 + buildroot_id: 4369763 + buildtime: 1534063982 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6157313 + metadata_only: false + name: libattr + nvr: libattr-2.4.48-3.el8 + payloadhash: bfad7a48530a8a8416175acdcc89c185 + release: 3.el8 + size: 26256 + version: 2.4.48 +- arch: aarch64 + build_id: 1165793 + buildroot_id: 5853079 + buildtime: 1586866738 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7967287 + metadata_only: false + name: coreutils-single + nvr: coreutils-single-8.30-8.el8 + payloadhash: 7d8082c3e25c1579388eb434a8da1a6a + release: 8.el8 + size: 606688 + version: '8.30' +- arch: aarch64 + build_id: 1465282 + buildroot_id: 6933594 + buildtime: 1611049969 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132936 + metadata_only: false + name: libmount + nvr: libmount-2.32.1-27.el8 + payloadhash: 4ae61bcabb6439fd21cd3a6d2c807f11 + release: 27.el8 + size: 229852 + version: 2.32.1 +- arch: aarch64 + build_id: 1465282 + buildroot_id: 6933594 + buildtime: 1611049969 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132934 + metadata_only: false + name: libsmartcols + nvr: libsmartcols-2.32.1-27.el8 + payloadhash: 04d628aaa05d39774e5bb28247f33edd + release: 27.el8 + size: 174320 + version: 2.32.1 +- arch: aarch64 + build_id: 906174 + buildroot_id: 4955478 + buildtime: 1559576814 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7052249 + metadata_only: false + name: lua-libs + nvr: lua-libs-5.3.4-11.el8 + payloadhash: 7e7e8d905a7d63e75a5370cc201ec56d + release: 11.el8 + size: 116012 + version: 5.3.4 +- arch: aarch64 + build_id: 1168710 + buildroot_id: 5866947 + buildtime: 1587109510 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7983719 + metadata_only: false + name: chkconfig + nvr: chkconfig-1.13-2.el8 + payloadhash: dc2a15ff31133704936c90becc625f31 + release: 2.el8 + size: 196232 + version: '1.13' +- arch: aarch64 + build_id: 909244 + buildroot_id: 4968998 + buildtime: 1560162343 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7072867 + metadata_only: false + name: libidn2 + nvr: libidn2-2.2.0-1.el8 + payloadhash: 728e46151cb96bef6acf43cfd0a19f77 + release: 1.el8 + size: 94456 + version: 2.2.0 +- arch: aarch64 + build_id: 1480523 + buildroot_id: 6984975 + buildtime: 1611937419 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9200981 + metadata_only: false + name: file-libs + nvr: file-libs-5.33-16.el8_3.1 + payloadhash: 2ffa8dc66928adcb8e20494d8c72b133 + release: 16.el8_3.1 + size: 552244 + version: '5.33' +- arch: aarch64 + build_id: 1054304 + buildroot_id: 5491132 + buildtime: 1578502392 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7666081 + metadata_only: false + name: audit-libs + nvr: audit-libs-3.0-0.17.20191104git1c2f876.el8 + payloadhash: ced493791c8345865f03ba16b8623908 + release: 0.17.20191104git1c2f876.el8 + size: 114144 + version: '3.0' +- arch: aarch64 + build_id: 1615115 + buildroot_id: 7425905 + buildtime: 1622121446 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9773182 + metadata_only: false + name: lz4-libs + nvr: lz4-libs-1.8.3-3.el8_4 + payloadhash: 048690dabce5389c1164d3b833d4ef41 + release: 3.el8_4 + size: 63436 + version: 1.8.3 +- arch: aarch64 + build_id: 774503 + buildroot_id: 4488608 + buildtime: 1538130096 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399062 + metadata_only: false + name: gdbm-libs + nvr: gdbm-libs-1.18-1.el8 + payloadhash: a2f5ad6eb801b12aaea0da5bbec6d297 + release: 1.el8 + size: 59464 + version: '1.18' +- arch: aarch64 + build_id: 747294 + buildroot_id: 4377587 + buildtime: 1534090209 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180513 + metadata_only: false + name: libtasn1 + nvr: libtasn1-4.13-3.el8 + payloadhash: 40e8e4b1f41d4c8f399edef1fb7f1cca + release: 3.el8 + size: 75488 + version: '4.13' +- arch: aarch64 + build_id: 761272 + buildroot_id: 4433033 + buildtime: 1535970014 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6279920 + metadata_only: false + name: pcre + nvr: pcre-8.42-4.el8 + payloadhash: 285ce0e13510185e73a37d0d44b8b6a7 + release: 4.el8 + size: 188748 + version: '8.42' +- arch: aarch64 + build_id: 1647417 + buildroot_id: 7537563 + buildtime: 1624959134 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912872 + metadata_only: false + name: systemd-libs + nvr: systemd-libs-239-45.el8_4.2 + payloadhash: 3e216a0e8d7d75b43ee98affddcfaba0 + release: 45.el8_4.2 + size: 1036396 + version: '239' +- arch: noarch + build_id: 1234030 + buildroot_id: 6114472 + buildtime: 1592867963 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8205302 + metadata_only: false + name: ca-certificates + nvr: ca-certificates-2020.2.41-80.0.el8_2 + payloadhash: df20d39b69d47efe9a26fb1316c8b323 + release: 80.0.el8_2 + size: 399264 + version: 2020.2.41 +- arch: aarch64 + build_id: 1286148 + buildroot_id: 6307443 + buildtime: 1597242786 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8351495 + metadata_only: false + name: libusbx + nvr: libusbx-1.0.23-4.el8 + payloadhash: bf6594b9737a950c0c96b7a37a9a3cb0 + release: 4.el8 + size: 73292 + version: 1.0.23 +- arch: aarch64 + build_id: 1483913 + buildroot_id: 6995720 + buildtime: 1612205431 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9211037 + metadata_only: false + name: libsemanage + nvr: libsemanage-2.9-6.el8 + payloadhash: 65a7889aeff3a2aa5d007cd3282bbd45 + release: 6.el8 + size: 163320 + version: '2.9' +- arch: aarch64 + build_id: 747310 + buildroot_id: 4377669 + buildtime: 1534090268 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180618 + metadata_only: false + name: libutempter + nvr: libutempter-1.1.6-14.el8 + payloadhash: 71638942670c8b03fbc43b6b1ddfc9fc + release: 14.el8 + size: 31488 + version: 1.1.6 +- arch: aarch64 + build_id: 1215600 + buildroot_id: 6048396 + buildtime: 1591290944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8143583 + metadata_only: false + name: libpsl + nvr: libpsl-0.20.2-6.el8 + payloadhash: ed393310ec8bcafdc7b12cca0f529dc0 + release: 6.el8 + size: 61672 + version: 0.20.2 +- arch: aarch64 + build_id: 1454801 + buildroot_id: 6900334 + buildtime: 1610445320 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9094375 + metadata_only: false + name: gzip + nvr: gzip-1.9-12.el8 + payloadhash: 9d68482b8b5b0ab2367b5b64dfd01685 + release: 12.el8 + size: 167344 + version: '1.9' +- arch: aarch64 + build_id: 804625 + buildroot_id: 4589604 + buildtime: 1543246368 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551425 + metadata_only: false + name: cracklib-dicts + nvr: cracklib-dicts-2.9.6-15.el8 + payloadhash: 553bbb2f3876372389b68a09f4d23b4f + release: 15.el8 + size: 4143736 + version: 2.9.6 +- arch: aarch64 + build_id: 747521 + buildroot_id: 4378678 + buildtime: 1534093844 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6184914 + metadata_only: false + name: mpfr + nvr: mpfr-3.1.6-1.el8 + payloadhash: c725284dc97a5959a6246907badad448 + release: 1.el8 + size: 218516 + version: 3.1.6 +- arch: aarch64 + build_id: 1460547 + buildroot_id: 6918056 + buildtime: 1610710726 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9118076 + metadata_only: false + name: libcomps + nvr: libcomps-0.1.11-5.el8 + payloadhash: 7d89ef7f01edbd113935cf6debb37718 + release: 5.el8 + size: 77820 + version: 0.1.11 +- arch: aarch64 + build_id: 747165 + buildroot_id: 4377014 + buildtime: 1534088054 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177347 + metadata_only: false + name: libksba + nvr: libksba-1.3.5-7.el8 + payloadhash: 722b157badb03e1d233eff03a2d5bbc2 + release: 7.el8 + size: 131548 + version: 1.3.5 +- arch: aarch64 + build_id: 1410760 + buildroot_id: 6766272 + buildtime: 1607570365 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8983386 + metadata_only: false + name: dmidecode + nvr: dmidecode-3.2-8.el8 + payloadhash: 63b2c2f6df585559a403141fd024fd29 + release: 8.el8 + size: 73024 + version: '3.2' +- arch: aarch64 + build_id: 1508952 + buildroot_id: 7083726 + buildtime: 1613731546 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9364629 + metadata_only: false + name: libseccomp + nvr: libseccomp-2.5.1-1.el8 + payloadhash: ce2fea5faf822ca27a05b181737b0495 + release: 1.el8 + size: 70488 + version: 2.5.1 +- arch: aarch64 + build_id: 1399824 + buildroot_id: 6724194 + buildtime: 1606997807 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8890383 + metadata_only: false + name: gawk + nvr: gawk-4.2.1-2.el8 + payloadhash: c99932b0e2ace3b052bcc78d0ef8cd92 + release: 2.el8 + size: 1161028 + version: 4.2.1 +- arch: aarch64 + build_id: 747205 + buildroot_id: 4377232 + buildtime: 1534088731 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6178300 + metadata_only: false + name: libnsl2 + nvr: libnsl2-1.2.0-2.20180605git4a062cf.el8 + payloadhash: 0242442724a6eefb874f15831e9173a4 + release: 2.20180605git4a062cf.el8 + size: 55364 + version: 1.2.0 +- arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320562 + metadata_only: false + name: crypto-policies + nvr: crypto-policies-20210209-1.gitbfb6bed.el8_3 + payloadhash: 48e3a2b96a8676497f52723238d02615 + release: 1.gitbfb6bed.el8_3 + size: 62520 + version: '20210209' +- arch: aarch64 + build_id: 936936 + buildroot_id: 5062314 + buildtime: 1563984231 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7200928 + metadata_only: false + name: libtirpc + nvr: libtirpc-1.1.4-4.el8 + payloadhash: ab269af8b9b3b8ab96414e4aaa6b0a76 + release: 4.el8 + size: 112044 + version: 1.1.4 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896583 + metadata_only: false + name: platform-python-setuptools + nvr: platform-python-setuptools-39.2.0-6.el8 + payloadhash: 5934b19fab076ef2ddcf46b5b547dccb + release: 6.el8 + size: 646368 + version: 39.2.0 +- arch: aarch64 + build_id: 1540243 + buildroot_id: 7177548 + buildtime: 1616076362 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465777 + metadata_only: false + name: python3-libs + nvr: python3-libs-3.6.8-37.el8 + payloadhash: b2f9a6ba716a99b72e0def005c4bbff0 + release: 37.el8 + size: 8098888 + version: 3.6.8 +- arch: aarch64 + build_id: 1513957 + buildroot_id: 7096789 + buildtime: 1614005658 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9378930 + metadata_only: false + name: libpwquality + nvr: libpwquality-1.4.4-3.el8 + payloadhash: 5776e3f513fa73432eac449e65728029 + release: 3.el8 + size: 107600 + version: 1.4.4 +- arch: noarch + build_id: 747717 + buildroot_id: 4377880 + buildtime: 1534090982 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6181349 + metadata_only: false + name: python3-six + nvr: python3-six-1.11.0-8.el8 + payloadhash: 3a46b593df0c4e15061a4340cb8503bd + release: 8.el8 + size: 38304 + version: 1.11.0 +- arch: noarch + build_id: 747009 + buildroot_id: 4374452 + buildtime: 1534079097 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169270 + metadata_only: false + name: python3-dateutil + nvr: python3-dateutil-2.6.1-6.el8 + payloadhash: 229da5815b24a30b853e16880b69a193 + release: 6.el8 + size: 255964 + version: 2.6.1 +- arch: aarch64 + build_id: 1608370 + buildroot_id: 7406155 + buildtime: 1621581328 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9743102 + metadata_only: false + name: glib2 + nvr: glib2-2.56.4-10.el8_4 + payloadhash: 39b07aad86aa00d9d501ededb97773ac + release: 10.el8_4 + size: 2549992 + version: 2.56.4 +- arch: aarch64 + build_id: 1446215 + buildroot_id: 6873472 + buildtime: 1609936687 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9062195 + metadata_only: false + name: librhsm + nvr: librhsm-0.0.3-4.el8 + payloadhash: b5353463de5a84c3f68ce2a0ab645c06 + release: 4.el8 + size: 31564 + version: 0.0.3 +- arch: aarch64 + build_id: 1449225 + buildroot_id: 6883416 + buildtime: 1610105233 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075264 + metadata_only: false + name: kmod-libs + nvr: kmod-libs-25-17.el8 + payloadhash: 8f844eb262f6b9312767bf7907836bf1 + release: 17.el8 + size: 66104 + version: '25' +- arch: aarch64 + build_id: 907679 + buildroot_id: 4962512 + buildtime: 1559822274 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7063436 + metadata_only: false + name: python3-dbus + nvr: python3-dbus-1.2.4-15.el8 + payloadhash: 5b2f0915af7c8cb65000e535424c0e87 + release: 15.el8 + size: 135868 + version: 1.2.4 +- arch: aarch64 + build_id: 1224593 + buildroot_id: 6081749 + buildtime: 1591905784 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8174114 + metadata_only: false + name: python3-gobject-base + nvr: python3-gobject-base-3.28.3-2.el8 + payloadhash: 79283edcf3e95e26ece0b1b8f2e4a214 + release: 2.el8 + size: 314900 + version: 3.28.3 +- arch: aarch64 + build_id: 1636355 + buildroot_id: 7498299 + buildtime: 1623854711 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9858609 + metadata_only: false + name: openldap + nvr: openldap-2.4.46-17.el8_4 + payloadhash: b4a307f19621c555c14d4f39e44dc1b2 + release: 17.el8_4 + size: 344588 + version: 2.4.46 +- arch: aarch64 + build_id: 1037354 + buildroot_id: 5429493 + buildtime: 1576262521 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7628686 + metadata_only: false + name: passwd + nvr: passwd-0.80-3.el8 + payloadhash: e3fc76a10c724ec66e8fa51a1208d4a5 + release: 3.el8 + size: 115652 + version: '0.80' +- arch: aarch64 + build_id: 1399757 + buildroot_id: 6723955 + buildtime: 1606996026 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8889704 + metadata_only: false + name: libdb-utils + nvr: libdb-utils-5.3.28-40.el8 + payloadhash: 152298259900a7a8b8ee9f5d8f8d23d4 + release: 40.el8 + size: 150208 + version: 5.3.28 +- arch: aarch64 + build_id: 1460547 + buildroot_id: 6918056 + buildtime: 1610710726 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9118080 + metadata_only: false + name: python3-libcomps + nvr: python3-libcomps-0.1.11-5.el8 + payloadhash: 3a79518adb1f48598a7e49f50b15bd2d + release: 5.el8 + size: 51816 + version: 0.1.11 +- arch: noarch + build_id: 746941 + buildroot_id: 4374227 + buildtime: 1534078513 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168847 + metadata_only: false + name: python3-decorator + nvr: python3-decorator-4.2.1-2.el8 + payloadhash: 8e25edc54aba4c26c4962fe3df53cca3 + release: 2.el8 + size: 27036 + version: 4.2.1 +- arch: noarch + build_id: 800820 + buildroot_id: 4575314 + buildtime: 1542276035 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6525877 + metadata_only: false + name: python3-inotify + nvr: python3-inotify-0.9.6-13.el8 + payloadhash: 7edde5ba6f70c5bdd543fd295738b6f2 + release: 13.el8 + size: 57676 + version: 0.9.6 +- arch: noarch + build_id: 1380689 + buildroot_id: 6655007 + buildtime: 1604942511 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8794363 + metadata_only: false + name: python3-urllib3 + nvr: python3-urllib3-1.24.2-5.el8 + payloadhash: 3e72ec4338ad0bb966222d5dcb2333b7 + release: 5.el8 + size: 179804 + version: 1.24.2 +- arch: aarch64 + build_id: 1627034 + buildroot_id: 7465257 + buildtime: 1623179465 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819738 + metadata_only: false + name: python3-syspurpose + nvr: python3-syspurpose-1.28.13-3.el8_4 + payloadhash: dcb8b8277fe6a452c475bdacc798a276 + release: 3.el8_4 + size: 308900 + version: 1.28.13 +- arch: aarch64 + build_id: 1389452 + buildroot_id: 6687645 + buildtime: 1605895533 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8837070 + metadata_only: false + name: tpm2-tss + nvr: tpm2-tss-2.3.2-3.el8 + payloadhash: 87d3ef3e5098f7b205cf994d11e3c7c7 + release: 3.el8 + size: 244264 + version: 2.3.2 +- arch: aarch64 + build_id: 747381 + buildroot_id: 4378004 + buildtime: 1534091980 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6182488 + metadata_only: false + name: libyaml + nvr: libyaml-0.1.7-5.el8 + payloadhash: 30a6049228f5658ca43b05eeebc1da34 + release: 5.el8 + size: 57352 + version: 0.1.7 +- arch: aarch64 + build_id: 1184235 + buildroot_id: 5929425 + buildtime: 1588610288 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8029164 + metadata_only: false + name: gnupg2 + nvr: gnupg2-2.2.20-2.el8 + payloadhash: b83a350ada84a5d18bf7daea777b40a6 + release: 2.el8 + size: 2535324 + version: 2.2.20 +- arch: aarch64 + build_id: 1441861 + buildroot_id: 6860098 + buildtime: 1609761054 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9051340 + metadata_only: false + name: python3-gpg + nvr: python3-gpg-1.13.1-7.el8 + payloadhash: 4c317ab6dc46c15d014e2c0f9ef4ba90 + release: 7.el8 + size: 241472 + version: 1.13.1 +- arch: aarch64 + build_id: 1013911 + buildroot_id: 5340493 + buildtime: 1574160798 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7520897 + metadata_only: false + name: which + nvr: which-2.21-12.el8 + payloadhash: 59d807caf1fd7a8f920ba05d01be191e + release: 12.el8 + size: 47908 + version: '2.21' +- arch: noarch + build_id: 1237213 + buildroot_id: 6125644 + buildtime: 1593094870 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215425 + metadata_only: false + name: libssh-config + nvr: libssh-config-0.9.4-2.el8 + payloadhash: d4d44f510aea15a2e7c51d7b1166a988 + release: 2.el8 + size: 17796 + version: 0.9.4 +- arch: aarch64 + build_id: 1479079 + buildroot_id: 6984992 + buildtime: 1611938315 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201099 + metadata_only: false + name: libcurl + nvr: libcurl-7.61.1-18.el8 + payloadhash: 0f4576447da7069a226dc575fbfc876a + release: 18.el8 + size: 286652 + version: 7.61.1 +- arch: aarch64 + build_id: 1416620 + buildroot_id: 6784805 + buildtime: 1608027522 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9001972 + metadata_only: false + name: python3-librepo + nvr: python3-librepo-1.12.0-3.el8 + payloadhash: 11601e01ff1d5ac65c32f3e6a009c6e9 + release: 3.el8 + size: 51472 + version: 1.12.0 +- arch: aarch64 + build_id: 1618827 + buildroot_id: 7437103 + buildtime: 1622479424 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782803 + metadata_only: false + name: rpm-libs + nvr: rpm-libs-4.14.3-14.el8_4 + payloadhash: 4f61b0e4c390a2ae4751c9023c269586 + release: 14.el8_4 + size: 329264 + version: 4.14.3 +- arch: aarch64 + build_id: 1199395 + buildroot_id: 5988265 + buildtime: 1590005902 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8086021 + metadata_only: false + name: libmodulemd + nvr: libmodulemd-2.9.4-2.el8 + payloadhash: 469e986453c8086b3f2aabd3de393195 + release: 2.el8 + size: 167040 + version: 2.9.4 +- arch: aarch64 + build_id: 1528104 + buildroot_id: 7139225 + buildtime: 1615218233 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417622 + metadata_only: false + name: libdnf + nvr: libdnf-0.55.0-7.el8 + payloadhash: 2e7392b40a88c72ad92098f10f8b38da + release: 7.el8 + size: 618272 + version: 0.55.0 +- arch: aarch64 + build_id: 1528104 + buildroot_id: 7139225 + buildtime: 1615218233 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417625 + metadata_only: false + name: python3-hawkey + nvr: python3-hawkey-0.55.0-7.el8 + payloadhash: 56482509f1bec79daf77bea99c52ce13 + release: 7.el8 + size: 107164 + version: 0.55.0 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417617 + metadata_only: false + name: dnf-data + nvr: dnf-data-4.4.2-11.el8 + payloadhash: 41912b57a025dac9f66f9c03b9bf60ea + release: 11.el8 + size: 154068 + version: 4.4.2 +- arch: aarch64 + build_id: 1374200 + buildroot_id: 6630136 + buildtime: 1604330681 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8746368 + metadata_only: false + name: pciutils + nvr: pciutils-3.7.0-1.el8 + payloadhash: b2ad46b2685dcba323d65bc4e3c0a32e + release: 1.el8 + size: 103244 + version: 3.7.0 +- arch: aarch64 + build_id: 1479677 + buildroot_id: 6982003 + buildtime: 1611893392 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9194000 + metadata_only: false + name: libibverbs + nvr: libibverbs-32.0-4.el8 + payloadhash: 3ef9acdd27bc130f361c46891a1e442f + release: 4.el8 + size: 309332 + version: '32.0' +- arch: aarch64 + build_id: 1476759 + buildroot_id: 6972449 + buildtime: 1611748303 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9182174 + metadata_only: false + name: iptables-libs + nvr: iptables-libs-1.8.4-17.el8 + payloadhash: 3a0ce2f574778cd9ef5d6f0bb000e5c2 + release: 17.el8 + size: 105660 + version: 1.8.4 +- arch: aarch64 + build_id: 1525173 + buildroot_id: 7130183 + buildtime: 1614950003 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9410172 + metadata_only: false + name: device-mapper-libs + nvr: device-mapper-libs-1.02.175-5.el8 + payloadhash: 2df3bca5481a2c819e248013ca516e7e + release: 5.el8 + size: 404076 + version: 1.02.175 +- arch: noarch + build_id: 1420642 + buildroot_id: 6798337 + buildtime: 1608209944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020902 + metadata_only: false + name: elfutils-default-yama-scope + nvr: elfutils-default-yama-scope-0.182-3.el8 + payloadhash: 2003620672397ff00ced147f0dbbe756 + release: 3.el8 + size: 49248 + version: '0.182' +- arch: aarch64 + build_id: 1647417 + buildroot_id: 7537563 + buildtime: 1624959134 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912873 + metadata_only: false + name: systemd-pam + nvr: systemd-pam-239-45.el8_4.2 + payloadhash: ef311da43238cfd0322b081064fec6f1 + release: 45.el8_4.2 + size: 441220 + version: '239' +- arch: aarch64 + build_id: 1573801 + buildroot_id: 7272689 + buildtime: 1618406023 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561236 + metadata_only: false + name: dbus + nvr: dbus-1.12.8-12.el8_4.2 + payloadhash: c596d5d9f6ef56d2944db381d447f5e0 + release: 12.el8_4.2 + size: 40776 + version: 1.12.8 +- arch: aarch64 + build_id: 1618827 + buildroot_id: 7437103 + buildtime: 1622479424 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782808 + metadata_only: false + name: python3-rpm + nvr: python3-rpm-4.14.3-14.el8_4 + payloadhash: db159bfb096234d1035e766c47a585a8 + release: 14.el8_4 + size: 160676 + version: 4.14.3 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417616 + metadata_only: false + name: dnf + nvr: dnf-4.4.2-11.el8 + payloadhash: 5df2e1f21c3b8441d55492ae87f1544f + release: 11.el8 + size: 550680 + version: 4.4.2 +- arch: aarch64 + build_id: 1627034 + buildroot_id: 7465257 + buildtime: 1623179465 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819741 + metadata_only: false + name: dnf-plugin-subscription-manager + nvr: dnf-plugin-subscription-manager-1.28.13-3.el8_4 + payloadhash: daa32310418335fa070d58d194ca5d84 + release: 3.el8_4 + size: 297120 + version: 1.28.13 +- arch: aarch64 + build_id: 1627034 + buildroot_id: 7465257 + buildtime: 1623179465 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819737 + metadata_only: false + name: subscription-manager + nvr: subscription-manager-1.28.13-3.el8_4 + payloadhash: fe097451644bbaa319b84400564aba06 + release: 3.el8_4 + size: 1185284 + version: 1.28.13 +- arch: aarch64 + build_id: 1412741 + buildroot_id: 6773492 + buildtime: 1607742026 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8993820 + metadata_only: false + name: gdb-gdbserver + nvr: gdb-gdbserver-8.2-15.el8 + payloadhash: 299d6a2f7e709b1cac0fe82292c41aac + release: 15.el8 + size: 422080 + version: '8.2' +- arch: aarch64 + build_id: 1213699 + buildroot_id: 6041040 + buildtime: 1591175805 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8134016 + metadata_only: false + name: vim-minimal + nvr: vim-minimal-8.0.1763-15.el8 + payloadhash: b64e37063e496327701fe4c31fe68bdf + release: 15.el8 + size: 553252 + version: 8.0.1763 +- arch: noarch + build_id: 746975 + buildroot_id: 4374352 + buildtime: 1534078655 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6169012 + metadata_only: false + name: langpacks-en + nvr: langpacks-en-1.0-12.el8 + payloadhash: 1130f256caf9531f47bf94dc9c89a697 + release: 12.el8 + size: 8684 + version: '1.0' +- arch: aarch64 + build_id: 1446652 + buildroot_id: 6874891 + buildtime: 1609953414 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9063799 + metadata_only: false + name: fstrm + nvr: fstrm-0.6.0-3.el8.1 + payloadhash: 7f8996fce9e8899d45d032ed20b93ea2 + release: 3.el8.1 + size: 26852 + version: 0.6.0 +- arch: aarch64 + build_id: 1221242 + buildroot_id: 6069063 + buildtime: 1591692434 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157006 + metadata_only: false + name: libmaxminddb + nvr: libmaxminddb-1.2.0-10.el8 + payloadhash: 3066f8de8719bc40f0869721c1d02ba0 + release: 10.el8 + size: 32720 + version: 1.2.0 +- arch: aarch64 + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650592 + metadata_only: false + name: bind-libs-lite + nvr: bind-libs-lite-9.11.26-4.el8_4 + payloadhash: 1cdfeebec41510c69fbd49b1fc41e596 + release: 4.el8_4 + size: 1148964 + version: 9.11.26 +- arch: aarch64 + build_id: 747178 + buildroot_id: 4377051 + buildtime: 1534088252 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177559 + metadata_only: false + name: libmnl + nvr: libmnl-1.0.4-6.el8 + payloadhash: fd2ffba03bdf2fc1d3ea814f405df00f + release: 6.el8 + size: 29464 + version: 1.0.4 +- arch: noarch + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650600 + metadata_only: false + name: python3-bind + nvr: python3-bind-9.11.26-4.el8_4 + payloadhash: f2165135f8433d93285ad5424609d56d + release: 4.el8_4 + size: 151884 + version: 9.11.26 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896584 + metadata_only: false + name: python3-setuptools + nvr: python3-setuptools-39.2.0-6.el8 + payloadhash: 6d34ed1b6b1e4e9a04c9c81f4387aa0c + release: 6.el8 + size: 165444 + version: 39.2.0 +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075061 + metadata_only: false + name: python3-pip + nvr: python3-pip-9.0.3-19.el8 + payloadhash: 595c3569e5c51aad85a1eb6906fb4f71 + release: 19.el8 + size: 19104 + version: 9.0.3 +- arch: aarch64 + build_id: 1533934 + buildroot_id: 7157439 + buildtime: 1615575680 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9438871 + metadata_only: false + name: iproute + nvr: iproute-5.9.0-4.el8 + payloadhash: 485bbf654c7da48f796c252fa1e67613 + release: 4.el8 + size: 702480 + version: 5.9.0 +- arch: aarch64 + build_id: 1397548 + buildroot_id: 6716404 + buildtime: 1606839924 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8879932 + metadata_only: false + name: procps-ng + nvr: procps-ng-3.3.15-6.el8 + payloadhash: 31ffef1f3fbecf9c51d4aa28f671cb7c + release: 6.el8 + size: 334456 + version: 3.3.15 +- arch: aarch64 + build_id: 1014155 + buildroot_id: 5341428 + buildtime: 1574173454 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7523540 + metadata_only: false + name: diffutils + nvr: diffutils-3.6-6.el8 + payloadhash: d281a507a1e433124e39864e5708ed89 + release: 6.el8 + size: 359572 + version: '3.6' +- arch: aarch64 + build_id: 1157209 + buildroot_id: 5819892 + buildtime: 1585912009 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7930563 + metadata_only: false + name: wget + nvr: wget-1.19.5-10.el8 + payloadhash: e4341db2076976bcedc45b1079f4dff7 + release: 10.el8 + size: 732496 + version: 1.19.5 +- arch: aarch64 + build_id: 1334981 + buildroot_id: 6477765 + buildtime: 1601420832 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8495781 + metadata_only: false + name: libgcc + nvr: libgcc-8.4.1-1.el8 + payloadhash: a6c4d62aff29cb1b517f5ab873ba4784 + release: 1.el8 + size: 72256 + version: 8.4.1 +- arch: noarch + build_id: 1147995 + buildroot_id: 5788844 + buildtime: 1585227806 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7896582 + metadata_only: false + name: python3-setuptools-wheel + nvr: python3-setuptools-wheel-39.2.0-6.el8 + payloadhash: f7a0c30562c572b2b169a51cdd75df84 + release: 6.el8 + size: 294672 + version: 39.2.0 +- arch: aarch64 + build_id: 1627034 + buildroot_id: 7465257 + buildtime: 1623179465 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819745 + metadata_only: false + name: subscription-manager-rhsm-certificates + nvr: subscription-manager-rhsm-certificates-1.28.13-3.el8_4 + payloadhash: b54be7c5987a92850afe70b57135dc3c + release: 3.el8_4 + size: 270544 + version: 1.28.13 +- arch: aarch64 + build_id: 1557760 + buildroot_id: 7227928 + buildtime: 1617179255 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9521461 + metadata_only: false + name: redhat-release + nvr: redhat-release-8.4-0.6.el8 + payloadhash: bb6382cc37fa3e0c9014f8a8c657426c + release: 0.6.el8 + size: 41172 + version: '8.4' +- arch: aarch64 + build_id: 1175627 + buildroot_id: 5893768 + buildtime: 1587623281 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8000791 + metadata_only: false + name: filesystem + nvr: filesystem-3.8-3.el8 + payloadhash: 5d364408bbf31b2af3666040130be00a + release: 3.el8 + size: 1134432 + version: '3.8' +- arch: noarch + build_id: 748188 + buildroot_id: 4379429 + buildtime: 1534094638 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185702 + metadata_only: false + name: publicsuffix-list-dafsa + nvr: publicsuffix-list-dafsa-20180723-1.el8 + payloadhash: 193f2f7ffa5e990141b941b47dfbab79 + release: 1.el8 + size: 56488 + version: '20180723' +- arch: aarch64 + build_id: 1207296 + buildroot_id: 6017985 + buildtime: 1590685402 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8114603 + metadata_only: false + name: pcre2 + nvr: pcre2-10.32-2.el8 + payloadhash: c0255ee6b58718021b79c3fce960d5be + release: 2.el8 + size: 223172 + version: '10.32' +- arch: aarch64 + build_id: 829223 + buildroot_id: 4678814 + buildtime: 1547644074 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6696173 + metadata_only: false + name: ncurses-libs + nvr: ncurses-libs-6.1-7.20180224.el8 + payloadhash: 097a54d2fd9c99ec075f893b440d1fb6 + release: 7.20180224.el8 + size: 318760 + version: '6.1' +- arch: aarch64 + build_id: 1525306 + buildroot_id: 7130577 + buildtime: 1614965345 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9412074 + metadata_only: false + name: glibc-common + nvr: glibc-common-2.28-151.el8 + payloadhash: c085edfe14c647d6f3ad238972408a39 + release: 151.el8 + size: 1303172 + version: '2.28' +- arch: aarch64 + build_id: 1584181 + buildroot_id: 7306052 + buildtime: 1619014145 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9630593 + metadata_only: false + name: bash + nvr: bash-4.4.20-1.el8_4 + payloadhash: bd14d862ede7a76a81e243e881aad588 + release: 1.el8_4 + size: 1596832 + version: 4.4.20 +- arch: aarch64 + build_id: 1366387 + buildroot_id: 6602585 + buildtime: 1603788578 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8693794 + metadata_only: false + name: zlib + nvr: zlib-1.2.11-17.el8 + payloadhash: 44b5de0af875a1fa56f340b364b42136 + release: 17.el8 + size: 101496 + version: 1.2.11 +- arch: aarch64 + build_id: 745941 + buildroot_id: 4369297 + buildtime: 1534060636 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155753 + metadata_only: false + name: bzip2-libs + nvr: bzip2-libs-1.0.6-26.el8 + payloadhash: 1611a25266b7e6f93c19b2db8cd1f483 + release: 26.el8 + size: 48216 + version: 1.0.6 +- arch: aarch64 + build_id: 1054659 + buildroot_id: 5492778 + buildtime: 1578565185 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7668493 + metadata_only: false + name: info + nvr: info-6.5-6.el8 + payloadhash: 4af49a5be4cfa63ce2d39b17f3674de8 + release: 6.el8 + size: 194668 + version: '6.5' +- arch: aarch64 + build_id: 745929 + buildroot_id: 4369264 + buildtime: 1534060430 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155562 + metadata_only: false + name: libxcrypt + nvr: libxcrypt-4.1.1-4.el8 + payloadhash: 23a2e006f1e0d3d790ea924aa3616a40 + release: 4.el8 + size: 73860 + version: 4.1.1 +- arch: aarch64 + build_id: 1447539 + buildroot_id: 6878037 + buildtime: 1610017504 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9068286 + metadata_only: false + name: popt + nvr: popt-1.18-1.el8 + payloadhash: f420f74a05a2c6e948a2d0372398196f + release: 1.el8 + size: 60556 + version: '1.18' +- arch: aarch64 + build_id: 1420642 + buildroot_id: 6798337 + buildtime: 1608209944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020899 + metadata_only: false + name: elfutils-libelf + nvr: elfutils-libelf-0.182-3.el8 + payloadhash: e16ddfa0445a1d22a6fe60bb0203db20 + release: 3.el8 + size: 219040 + version: '0.182' +- arch: aarch64 + build_id: 1177309 + buildroot_id: 5900170 + buildtime: 1587742313 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8006310 + metadata_only: false + name: expat + nvr: expat-2.2.5-4.el8 + payloadhash: cb27f7a909cb9714ead56404470bef95 + release: 4.el8 + size: 102508 + version: 2.2.5 +- arch: aarch64 + build_id: 1220066 + buildroot_id: 6064527 + buildtime: 1591612493 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8152059 + metadata_only: false + name: libcom_err + nvr: libcom_err-1.45.6-1.el8 + payloadhash: 5203e3f4c629eceb9f5029e627295d8d + release: 1.el8 + size: 48620 + version: 1.45.6 +- arch: aarch64 + build_id: 1465282 + buildroot_id: 6933594 + buildtime: 1611049969 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132940 + metadata_only: false + name: libuuid + nvr: libuuid-2.32.1-27.el8 + payloadhash: e673e5352633e4c672715c1877320efb + release: 27.el8 + size: 95944 + version: 2.32.1 +- arch: aarch64 + build_id: 911719 + buildroot_id: 4980065 + buildtime: 1560502098 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7093016 + metadata_only: false + name: gmp + nvr: gmp-6.1.2-10.el8 + payloadhash: 596cc8860d235535acd3a7872f098766 + release: 10.el8 + size: 275180 + version: 6.1.2 +- arch: aarch64 + build_id: 745979 + buildroot_id: 4369551 + buildtime: 1534063437 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156896 + metadata_only: false + name: libacl + nvr: libacl-2.2.53-1.el8 + payloadhash: 43a6abffa9b4642b86610d7ddd64f880 + release: 1.el8 + size: 33568 + version: 2.2.53 +- arch: aarch64 + build_id: 1465282 + buildroot_id: 6933594 + buildtime: 1611049969 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132938 + metadata_only: false + name: libblkid + nvr: libblkid-2.32.1-27.el8 + payloadhash: 41875e64ed52713f95d322aab497c60b + release: 27.el8 + size: 214528 + version: 2.32.1 +- arch: aarch64 + build_id: 1197484 + buildroot_id: 5980583 + buildtime: 1589884155 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8076494 + metadata_only: false + name: sed + nvr: sed-4.5-2.el8 + payloadhash: 6335d6f39ea69483a53f122acd3f88d4 + release: 2.el8 + size: 300068 + version: '4.5' +- arch: aarch64 + build_id: 1334981 + buildroot_id: 6477765 + buildtime: 1601420832 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8495783 + metadata_only: false + name: libstdc++ + nvr: libstdc++-8.4.1-1.el8 + payloadhash: 9e17ebb3af1d8546c2b37fad2ce9d904 + release: 1.el8 + size: 430440 + version: 8.4.1 +- arch: aarch64 + build_id: 1453279 + buildroot_id: 6895953 + buildtime: 1610373410 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9088143 + metadata_only: false + name: p11-kit + nvr: p11-kit-0.23.22-1.el8 + payloadhash: 9c782441f12e0816c34aec690d11965d + release: 1.el8 + size: 312340 + version: 0.23.22 +- arch: aarch64 + build_id: 753876 + buildroot_id: 4402012 + buildtime: 1534538994 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6239943 + metadata_only: false + name: libunistring + nvr: libunistring-0.9.9-3.el8 + payloadhash: 0c58ad382d81de2499a84407a054a1cd + release: 3.el8 + size: 419568 + version: 0.9.9 +- arch: aarch64 + build_id: 1225800 + buildroot_id: 6086851 + buildtime: 1592238351 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8179249 + metadata_only: false + name: libgcrypt + nvr: libgcrypt-1.8.5-4.el8 + payloadhash: 53bb44db4d805b5218e8432b882cbabc + release: 4.el8 + size: 399176 + version: 1.8.5 +- arch: aarch64 + build_id: 1003002 + buildroot_id: 5298246 + buildtime: 1572943071 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7465662 + metadata_only: false + name: libcap-ng + nvr: libcap-ng-0.7.9-5.el8 + payloadhash: 444ed5a1edd9c06cc5615d9652dea368 + release: 5.el8 + size: 32488 + version: 0.7.9 +- arch: aarch64 + build_id: 1020741 + buildroot_id: 5366831 + buildtime: 1574797136 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7557324 + metadata_only: false + name: libnl3 + nvr: libnl3-3.5.0-1.el8 + payloadhash: 133ce256ce4b826e79553428a4811d5f + release: 1.el8 + size: 308564 + version: 3.5.0 +- arch: aarch64 + build_id: 747020 + buildroot_id: 4376088 + buildtime: 1534084436 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6173696 + metadata_only: false + name: libassuan + nvr: libassuan-2.5.1-3.el8 + payloadhash: 14be8d46717ae05d7e06acb9a8d8d909 + release: 3.el8 + size: 81452 + version: 2.5.1 +- arch: aarch64 + build_id: 746949 + buildroot_id: 4375863 + buildtime: 1534083720 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6172966 + metadata_only: false + name: keyutils-libs + nvr: keyutils-libs-1.5.10-6.el8 + payloadhash: a7c36850b43afce6d1dc7bae16010999 + release: 6.el8 + size: 33200 + version: 1.5.10 +- arch: aarch64 + build_id: 1453279 + buildroot_id: 6895953 + buildtime: 1610373410 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9088145 + metadata_only: false + name: p11-kit-trust + nvr: p11-kit-trust-0.23.22-1.el8 + payloadhash: 8521b2473d356fe06cc36c596b2fdb6b + release: 1.el8 + size: 135944 + version: 0.23.22 +- arch: aarch64 + build_id: 745934 + buildroot_id: 4369269 + buildtime: 1534060441 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6155634 + metadata_only: false + name: grep + nvr: grep-3.1-6.el8 + payloadhash: 0361f9382bde12720e101dd00746fb31 + release: 6.el8 + size: 273488 + version: '3.1' +- arch: aarch64 + build_id: 1573801 + buildroot_id: 7272689 + buildtime: 1618406023 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561240 + metadata_only: false + name: dbus-libs + nvr: dbus-libs-1.12.8-12.el8_4.2 + payloadhash: 45110101488ed8ac846480d586ea19bd + release: 12.el8_4.2 + size: 178328 + version: 1.12.8 +- arch: aarch64 + build_id: 1573801 + buildroot_id: 7272689 + buildtime: 1618406023 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561239 + metadata_only: false + name: dbus-tools + nvr: dbus-tools-1.12.8-12.el8_4.2 + payloadhash: 712657b2da54a55e71e26f29930f5855 + release: 12.el8_4.2 + size: 84828 + version: 1.12.8 +- arch: aarch64 + build_id: 774503 + buildroot_id: 4488608 + buildtime: 1538130096 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6399065 + metadata_only: false + name: gdbm + nvr: gdbm-1.18-1.el8 + payloadhash: fe9c7951c3f84d9857a98151f305b7eb + release: 1.el8 + size: 129596 + version: '1.18' +- arch: aarch64 + build_id: 1364758 + buildroot_id: 6598268 + buildtime: 1603717913 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8690799 + metadata_only: false + name: shadow-utils + nvr: shadow-utils-4.6-12.el8 + payloadhash: 63c27a155a11b5fa3eecf572b6a5a914 + release: 12.el8 + size: 1257120 + version: '4.6' +- arch: aarch64 + build_id: 1573801 + buildroot_id: 7272689 + buildtime: 1618406023 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9561238 + metadata_only: false + name: dbus-daemon + nvr: dbus-daemon-1.12.8-12.el8_4.2 + payloadhash: 392ac0afb456db305d92c04e9f78990e + release: 12.el8_4.2 + size: 237572 + version: 1.12.8 +- arch: aarch64 + build_id: 1465282 + buildroot_id: 6933594 + buildtime: 1611049969 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132932 + metadata_only: false + name: libfdisk + nvr: libfdisk-2.32.1-27.el8 + payloadhash: 1127e08ee42a42e64cb111bf249188a7 + release: 27.el8 + size: 245208 + version: 2.32.1 +- arch: aarch64 + build_id: 804625 + buildroot_id: 4589604 + buildtime: 1543246368 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6551428 + metadata_only: false + name: cracklib + nvr: cracklib-2.9.6-15.el8 + payloadhash: 04026dcd89ce0ee20760f021f50d3fac + release: 15.el8 + size: 94116 + version: 2.9.6 +- arch: aarch64 + build_id: 745979 + buildroot_id: 4369551 + buildtime: 1534063437 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6156893 + metadata_only: false + name: acl + nvr: acl-2.2.53-1.el8 + payloadhash: a45203e899e0f84da415860224f9a6f8 + release: 1.el8 + size: 80904 + version: 2.2.53 +- arch: aarch64 + build_id: 1565615 + buildroot_id: 7249239 + buildtime: 1617782204 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9540198 + metadata_only: false + name: nettle + nvr: nettle-3.4.1-4.el8_3 + payloadhash: b6c7114f0880f69a65a2e76c58a2d00a + release: 4.el8_3 + size: 312892 + version: 3.4.1 +- arch: aarch64 + build_id: 747162 + buildroot_id: 4376987 + buildtime: 1534087993 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177317 + metadata_only: false + name: libmetalink + nvr: libmetalink-0.1.3-7.el8 + payloadhash: 98c57f13ccf102ffce0a7e4813d0dab7 + release: 7.el8 + size: 30192 + version: 0.1.3 +- arch: aarch64 + build_id: 1337704 + buildroot_id: 6486980 + buildtime: 1601568875 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8508695 + metadata_only: false + name: brotli + nvr: brotli-1.0.6-3.el8 + payloadhash: 5278c1afa3bbcf3a9dfb5d7c67c57750 + release: 3.el8 + size: 320380 + version: 1.0.6 +- arch: aarch64 + build_id: 1221598 + buildroot_id: 6070241 + buildtime: 1591702741 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8157482 + metadata_only: false + name: libnghttp2 + nvr: libnghttp2-1.33.0-3.el8_2.1 + payloadhash: 97cfd26aa6a7890393b06a06cd2ea686 + release: 3.el8_2.1 + size: 75360 + version: 1.33.0 +- arch: aarch64 + build_id: 747270 + buildroot_id: 4377505 + buildtime: 1534089751 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6179866 + metadata_only: false + name: libsigsegv + nvr: libsigsegv-2.11-5.el8 + payloadhash: 6d57b6267e4bce23fa29524bcb0ba47b + release: 5.el8 + size: 29840 + version: '2.11' +- arch: aarch64 + build_id: 747306 + buildroot_id: 4377653 + buildtime: 1534090577 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6180850 + metadata_only: false + name: libverto + nvr: libverto-0.3.0-5.el8 + payloadhash: 63d505390bbff3e53982fef4ab4c67a8 + release: 5.el8 + size: 23228 + version: 0.3.0 +- arch: aarch64 + build_id: 1550360 + buildroot_id: 7208300 + buildtime: 1616691342 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9500737 + metadata_only: false + name: openssl-libs + nvr: openssl-libs-1.1.1g-15.el8_3 + payloadhash: 44713aee8482ec4d0208b96a58bb6016 + release: 15.el8_3 + size: 1402756 + version: 1.1.1g +- arch: aarch64 + build_id: 1419017 + buildroot_id: 6793818 + buildtime: 1608141865 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9016694 + metadata_only: false + name: krb5-libs + nvr: krb5-libs-1.18.2-8.el8 + payloadhash: 8d76776d03669fec460316895c284626 + release: 8.el8 + size: 831272 + version: 1.18.2 +- arch: noarch + build_id: 1500241 + buildroot_id: 7053386 + buildtime: 1613063803 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9320563 + metadata_only: false + name: crypto-policies-scripts + nvr: crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3 + payloadhash: 419de3d06a04ee6fbb655fe74740bb8f + release: 1.gitbfb6bed.el8_3 + size: 67668 + version: '20210209' +- arch: aarch64 + build_id: 1540243 + buildroot_id: 7177548 + buildtime: 1616076362 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9465776 + metadata_only: false + name: platform-python + nvr: platform-python-3.6.8-37.el8 + payloadhash: 3475d8a9fcbd0c4b7c9112efb0f0f646 + release: 37.el8 + size: 85068 + version: 3.6.8 +- arch: aarch64 + build_id: 1399757 + buildroot_id: 6723955 + buildtime: 1606996026 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8889703 + metadata_only: false + name: libdb + nvr: libdb-5.3.28-40.el8 + payloadhash: 7b4e6aee5d06a80699e32ccfc237b638 + release: 40.el8 + size: 701900 + version: 5.3.28 +- arch: aarch64 + build_id: 1378172 + buildroot_id: 6645374 + buildtime: 1604589535 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8777824 + metadata_only: false + name: pam + nvr: pam-1.3.1-14.el8 + payloadhash: e8b8a6ddd48a30bd3217cc348839d93c + release: 14.el8 + size: 748144 + version: 1.3.1 +- arch: aarch64 + build_id: 1465282 + buildroot_id: 6933594 + buildtime: 1611049969 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132931 + metadata_only: false + name: util-linux + nvr: util-linux-2.32.1-27.el8 + payloadhash: da092a89f25bc228c985ff8bc860f759 + release: 27.el8 + size: 2582604 + version: 2.32.1 +- arch: aarch64 + build_id: 1559858 + buildroot_id: 7234159 + buildtime: 1617283302 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9527121 + metadata_only: false + name: gnutls + nvr: gnutls-3.6.14-8.el8_3 + payloadhash: 01ae650e4a291e9003a1f4dc758d9b54 + release: 8.el8_3 + size: 955800 + version: 3.6.14 +- arch: aarch64 + build_id: 782991 + buildroot_id: 4522243 + buildtime: 1539698553 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6452465 + metadata_only: false + name: json-glib + nvr: json-glib-1.4.4-1.el8 + payloadhash: b84c25798c451ea88e3e3b9d75ccdd4a + release: 1.el8 + size: 142316 + version: 1.4.4 +- arch: noarch + build_id: 747226 + buildroot_id: 4375496 + buildtime: 1534082024 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6171381 + metadata_only: false + name: python3-iniparse + nvr: python3-iniparse-0.4-31.el8 + payloadhash: 29f73a3875d2d7f187c2796233b96724 + release: 31.el8 + size: 48776 + version: '0.4' +- arch: aarch64 + build_id: 746151 + buildroot_id: 4370644 + buildtime: 1534067217 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6161481 + metadata_only: false + name: dbus-glib + nvr: dbus-glib-0.110-2.el8 + payloadhash: 6ebbc8ac7d461d7d891891e7c7a1bda1 + release: 2.el8 + size: 123836 + version: '0.110' +- arch: aarch64 + build_id: 746526 + buildroot_id: 4374070 + buildtime: 1534078669 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168962 + metadata_only: false + name: gobject-introspection + nvr: gobject-introspection-1.56.1-1.el8 + payloadhash: f4c626d656ad50de040fdbe75bed50e0 + release: 1.el8 + size: 252812 + version: 1.56.1 +- arch: aarch64 + build_id: 1188151 + buildroot_id: 5943493 + buildtime: 1588873271 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8043964 + metadata_only: false + name: cyrus-sasl-lib + nvr: cyrus-sasl-lib-2.1.27-5.el8 + payloadhash: f3bfbf0efae150fe7d3036f0cbb52116 + release: 5.el8 + size: 124112 + version: 2.1.27 +- arch: aarch64 + build_id: 919146 + buildroot_id: 5005133 + buildtime: 1561576797 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7125032 + metadata_only: false + name: libuser + nvr: libuser-0.62-23.el8 + payloadhash: 884c7dab0ab07bbd4d5819a7ff38705d + release: 23.el8 + size: 420972 + version: '0.62' +- arch: aarch64 + build_id: 802356 + buildroot_id: 4581335 + buildtime: 1542709265 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6534745 + metadata_only: false + name: usermode + nvr: usermode-1.113-1.el8 + payloadhash: afb555abbd8a2a502c9709a12c9b8d48 + release: 1.el8 + size: 204972 + version: '1.113' +- arch: aarch64 + build_id: 812275 + buildroot_id: 4614376 + buildtime: 1544451204 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6588179 + metadata_only: false + name: python3-ethtool + nvr: python3-ethtool-0.14-3.el8 + payloadhash: 3fad4215d90d85d7691bc4ebc1c897bd + release: 3.el8 + size: 44516 + version: '0.14' +- arch: noarch + build_id: 746857 + buildroot_id: 4373971 + buildtime: 1534077847 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6168183 + metadata_only: false + name: python3-chardet + nvr: python3-chardet-3.0.4-7.el8 + payloadhash: 3ada1fbcb564b91e61de7f32130c471a + release: 7.el8 + size: 198980 + version: 3.0.4 +- arch: noarch + build_id: 747193 + buildroot_id: 4375299 + buildtime: 1534081484 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6171075 + metadata_only: false + name: python3-idna + nvr: python3-idna-2.5-5.el8 + payloadhash: 6ac5832b8bd214a6d2abc0072c97ab94 + release: 5.el8 + size: 98292 + version: '2.5' +- arch: noarch + build_id: 747578 + buildroot_id: 4377175 + buildtime: 1534088197 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6177446 + metadata_only: false + name: python3-pysocks + nvr: python3-pysocks-1.6.8-3.el8 + payloadhash: 69d81ceb864a79a1b73a3c9826d9d6a7 + release: 3.el8 + size: 33924 + version: 1.6.8 +- arch: noarch + build_id: 989775 + buildroot_id: 5251486 + buildtime: 1571299303 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7411632 + metadata_only: false + name: python3-requests + nvr: python3-requests-2.20.0-2.1.el8_1 + payloadhash: 86b829d8cb0e3dc32d5c0d3a992456f4 + release: 2.1.el8_1 + size: 125356 + version: 2.20.0 +- arch: aarch64 + build_id: 1335853 + buildroot_id: 6480702 + buildtime: 1601461080 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8501293 + metadata_only: false + name: libarchive + nvr: libarchive-3.3.3-1.el8 + payloadhash: ba0a519e325ff07da1befb58178b45a9 + release: 1.el8 + size: 346144 + version: 3.3.3 +- arch: aarch64 + build_id: 1509562 + buildroot_id: 7086193 + buildtime: 1613753179 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9368614 + metadata_only: false + name: ima-evm-utils + nvr: ima-evm-utils-1.3.2-12.el8 + payloadhash: 5c5ebd47df4ab5693bde84b5d6d35c9e + release: 12.el8 + size: 63272 + version: 1.3.2 +- arch: aarch64 + build_id: 747600 + buildroot_id: 4379128 + buildtime: 1534094225 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6185256 + metadata_only: false + name: npth + nvr: npth-1.5-4.el8 + payloadhash: eb22955f4751da9d3017a6eb6be20971 + release: 4.el8 + size: 25224 + version: '1.5' +- arch: aarch64 + build_id: 1441861 + buildroot_id: 6860098 + buildtime: 1609761054 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9051334 + metadata_only: false + name: gpgme + nvr: gpgme-1.13.1-7.el8 + payloadhash: 85ba0f85da77632c086dac339ba1a33c + release: 7.el8 + size: 329872 + version: 1.13.1 +- arch: aarch64 + build_id: 1374200 + buildroot_id: 6630136 + buildtime: 1604330681 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8746370 + metadata_only: false + name: pciutils-libs + nvr: pciutils-libs-3.7.0-1.el8 + payloadhash: c3d4b9280fe0bfae6ab3fee0977c8717 + release: 1.el8 + size: 52256 + version: 3.7.0 +- arch: aarch64 + build_id: 791846 + buildroot_id: 4549785 + buildtime: 1541015523 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6482138 + metadata_only: false + name: virt-what + nvr: virt-what-1.18-6.el8 + payloadhash: ddea1f1e70ffb9a7aadafd4e4325def7 + release: 6.el8 + size: 34884 + version: '1.18' +- arch: aarch64 + build_id: 1237213 + buildroot_id: 6125644 + buildtime: 1593094870 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8215426 + metadata_only: false + name: libssh + nvr: libssh-0.9.4-2.el8 + payloadhash: d06a194a7798ac125eb52f4dab320ddb + release: 2.el8 + size: 209088 + version: 0.9.4 +- arch: aarch64 + build_id: 1416620 + buildroot_id: 6784805 + buildtime: 1608027522 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9001970 + metadata_only: false + name: librepo + nvr: librepo-1.12.0-3.el8 + payloadhash: 9146c414ba7e1caee5ee9dbe7f71cac4 + release: 3.el8 + size: 86996 + version: 1.12.0 +- arch: aarch64 + build_id: 1479079 + buildroot_id: 6984992 + buildtime: 1611938315 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9201098 + metadata_only: false + name: curl + nvr: curl-7.61.1-18.el8 + payloadhash: 93d2834e6a6bd3628fd8b8bb71de26b5 + release: 18.el8 + size: 356248 + version: 7.61.1 +- arch: aarch64 + build_id: 1618827 + buildroot_id: 7437103 + buildtime: 1622479424 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782802 + metadata_only: false + name: rpm + nvr: rpm-4.14.3-14.el8_4 + payloadhash: fac82d745a2bda02e1ed138224a20aa9 + release: 14.el8_4 + size: 553428 + version: 4.14.3 +- arch: aarch64 + build_id: 1460531 + buildroot_id: 6918014 + buildtime: 1610709737 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9117877 + metadata_only: false + name: libsolv + nvr: libsolv-0.7.16-2.el8 + payloadhash: 29a1d8649247a6ca75ad300f87c9439f + release: 2.el8 + size: 335752 + version: 0.7.16 +- arch: aarch64 + build_id: 1528104 + buildroot_id: 7139225 + buildtime: 1615218233 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417624 + metadata_only: false + name: python3-libdnf + nvr: python3-libdnf-0.55.0-7.el8 + payloadhash: c181bb32a1074992f78d16a1d537dd93 + release: 7.el8 + size: 711568 + version: 0.55.0 +- arch: aarch64 + build_id: 1290417 + buildroot_id: 6324128 + buildtime: 1597819713 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8363382 + metadata_only: false + name: libreport-filesystem + nvr: libreport-filesystem-2.9.5-15.el8 + payloadhash: b9069bb387e1904c92092d654749ded5 + release: 15.el8 + size: 20400 + version: 2.9.5 +- arch: noarch + build_id: 1495269 + buildroot_id: 7035710 + buildtime: 1612784043 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9293910 + metadata_only: false + name: hwdata + nvr: hwdata-0.314-8.8.el8 + payloadhash: 4992d597c87d420c328da638b51d5edd + release: 8.8.el8 + size: 1733960 + version: '0.314' +- arch: aarch64 + build_id: 1479677 + buildroot_id: 6982003 + buildtime: 1611893392 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9193997 + metadata_only: false + name: rdma-core + nvr: rdma-core-32.0-4.el8 + payloadhash: 557261a7f0acbd33e3ecab42d2ca5fa2 + release: 4.el8 + size: 58832 + version: '32.0' +- arch: aarch64 + build_id: 1465270 + buildroot_id: 6933544 + buildtime: 1611049390 + epoch: 14 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9132889 + metadata_only: false + name: libpcap + nvr: libpcap-1.9.1-5.el8 + payloadhash: 105ef469a5bbc920bb9d7722a182e5b0 + release: 5.el8 + size: 163728 + version: 1.9.1 +- arch: aarch64 + build_id: 1525173 + buildroot_id: 7130183 + buildtime: 1614950003 + epoch: 8 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9410170 + metadata_only: false + name: device-mapper + nvr: device-mapper-1.02.175-5.el8 + payloadhash: b5fc5cd26bb0d47f9285e27ce59bae5e + release: 5.el8 + size: 379036 + version: 1.02.175 +- arch: aarch64 + build_id: 1507689 + buildroot_id: 7079457 + buildtime: 1613665478 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9356207 + metadata_only: false + name: cryptsetup-libs + nvr: cryptsetup-libs-2.3.3-4.el8 + payloadhash: ae43c8fe074b356d000ca1d56a419ba8 + release: 4.el8 + size: 465180 + version: 2.3.3 +- arch: aarch64 + build_id: 1420642 + buildroot_id: 6798337 + buildtime: 1608209944 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9020896 + metadata_only: false + name: elfutils-libs + nvr: elfutils-libs-0.182-3.el8 + payloadhash: 8da58fd627203f2285fa4d30aeab1f87 + release: 3.el8 + size: 289548 + version: '0.182' +- arch: aarch64 + build_id: 1647417 + buildroot_id: 7537563 + buildtime: 1624959134 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9912871 + metadata_only: false + name: systemd + nvr: systemd-239-45.el8_4.2 + payloadhash: ad073f697bd4d544aed0c2b0c2ddd723 + release: 45.el8_4.2 + size: 3426832 + version: '239' +- arch: aarch64 + build_id: 1618827 + buildroot_id: 7437103 + buildtime: 1622479424 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9782804 + metadata_only: false + name: rpm-build-libs + nvr: rpm-build-libs-4.14.3-14.el8_4 + payloadhash: 7aa4cb2048c1a245104c2ed2becbf050 + release: 14.el8_4 + size: 151844 + version: 4.14.3 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417619 + metadata_only: false + name: python3-dnf + nvr: python3-dnf-4.4.2-11.el8 + payloadhash: 37d326ca26f018d54ddcc285ddc8cefc + release: 11.el8 + size: 553316 + version: 4.4.2 +- arch: noarch + build_id: 1528091 + buildroot_id: 7139136 + buildtime: 1615216494 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417601 + metadata_only: false + name: python3-dnf-plugins-core + nvr: python3-dnf-plugins-core-4.0.18-4.el8 + payloadhash: eca9f30e6d32e56dbdd811458b405d55 + release: 4.el8 + size: 238880 + version: 4.0.18 +- arch: aarch64 + build_id: 1627034 + buildroot_id: 7465257 + buildtime: 1623179465 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9819744 + metadata_only: false + name: python3-subscription-manager-rhsm + nvr: python3-subscription-manager-rhsm-1.28.13-3.el8_4 + payloadhash: cd269470ee80747156597387c0a2e5a5 + release: 3.el8_4 + size: 373476 + version: 1.28.13 +- arch: noarch + build_id: 1528106 + buildroot_id: 7139234 + buildtime: 1615218195 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9417618 + metadata_only: false + name: yum + nvr: yum-4.4.2-11.el8 + payloadhash: 60663bd019796159c134cbf95fd15022 + release: 11.el8 + size: 200560 + version: 4.4.2 +- arch: aarch64 + build_id: 1229781 + buildroot_id: 6101290 + buildtime: 1592562630 + epoch: 2 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 8194437 + metadata_only: false + name: tar + nvr: tar-1.30-5.el8 + payloadhash: 6c598d2ae7a7ec7a374e11520038d8c0 + release: 5.el8 + size: 848132 + version: '1.30' +- arch: aarch64 + build_id: 794639 + buildroot_id: 4557730 + buildtime: 1541427834 + epoch: 1 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6492554 + metadata_only: false + name: findutils + nvr: findutils-4.6.0-20.el8 + payloadhash: 25e47a937e819bf86a0f1a266a6a3982 + release: 20.el8 + size: 536516 + version: 4.6.0 +- arch: noarch + build_id: 748292 + buildroot_id: 4379902 + buildtime: 1534096383 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6187287 + metadata_only: false + name: rootfiles + nvr: rootfiles-8.1-22.el8 + payloadhash: 95e9e04d2d86a4595e51bb74119338c6 + release: 22.el8 + size: 12544 + version: '8.1' +- arch: aarch64 + build_id: 1487216 + buildroot_id: 7008114 + buildtime: 1612360426 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9234950 + metadata_only: false + name: protobuf-c + nvr: protobuf-c-1.3.0-6.el8 + payloadhash: 62440ff3e5762571f0da62903b7aca56 + release: 6.el8 + size: 36608 + version: 1.3.0 +- arch: noarch + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650594 + metadata_only: false + name: bind-license + nvr: bind-license-9.11.26-4.el8_4 + payloadhash: 507b400cbcc1a531a56a96a0e7ec5d95 + release: 4.el8_4 + size: 103484 + version: 9.11.26 +- arch: aarch64 + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650593 + metadata_only: false + name: bind-libs + nvr: bind-libs-9.11.26-4.el8_4 + payloadhash: 667ec96a58bd26e0128637133e192292 + release: 4.el8_4 + size: 171620 + version: 9.11.26 +- arch: noarch + build_id: 1446322 + buildroot_id: 6873795 + buildtime: 1609942008 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9062446 + metadata_only: false + name: python3-ply + nvr: python3-ply-3.9-9.el8 + payloadhash: e3b7c687e59dca916480eb02c9a3661e + release: 9.el8 + size: 112760 + version: '3.9' +- arch: noarch + build_id: 1449200 + buildroot_id: 6883313 + buildtime: 1610103562 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9075060 + metadata_only: false + name: platform-python-pip + nvr: platform-python-pip-9.0.3-19.el8 + payloadhash: 0558b3e85bd74c4cbc651c0cc47a2f1c + release: 19.el8 + size: 1779340 + version: 9.0.3 +- arch: aarch64 + build_id: 908277 + buildroot_id: 4964962 + buildtime: 1559911972 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7068900 + metadata_only: false + name: python36 + nvr: python36-3.6.8-2.module+el8.1.0+3334+5cb623d7 + payloadhash: bc7c30b338e393d55c24184e05f79f9a + release: 2.module+el8.1.0+3334+5cb623d7 + size: 18418 + version: 3.6.8 +- arch: aarch64 + build_id: 1588980 + buildroot_id: 7323893 + buildtime: 1619525791 + epoch: 32 + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9650595 + metadata_only: false + name: bind-utils + nvr: bind-utils-9.11.26-4.el8_4 + payloadhash: 229bfd65f6f03de5f9547b0145c7fbd0 + release: 4.el8_4 + size: 454204 + version: 9.11.26 +- arch: aarch64 + build_id: 1421942 + buildroot_id: 6801954 + buildtime: 1608274170 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 9025026 + metadata_only: false + name: rsync + nvr: rsync-3.1.3-12.el8 + payloadhash: 86ad7f78d4742e6277554429fd7fbbff + release: 12.el8 + size: 403712 + version: 3.1.3 +- arch: aarch64 + build_id: 1172035 + buildroot_id: 5879009 + buildtime: 1587382155 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7991542 + metadata_only: false + name: lsof + nvr: lsof-4.93.2-1.el8 + payloadhash: 8bd62f731c21a595e1e10cc11a7fec2c + release: 1.el8 + size: 253648 + version: 4.93.2 +- arch: aarch64 + build_id: 746599 + buildroot_id: 4375009 + buildtime: 1534081122 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 6170670 + metadata_only: false + name: hostname + nvr: hostname-3.20-6.el8 + payloadhash: f405151f652f144d5bb9c40d4dbb25b8 + release: 6.el8 + size: 31276 + version: '3.20' +- arch: aarch64 + build_id: 1025058 + buildroot_id: 5383388 + buildtime: 1575182533 + epoch: null + external_repo_id: 0 + external_repo_name: INTERNAL + extra: null + id: 7579197 + metadata_only: false + name: socat + nvr: socat-1.7.3.3-2.el8 + payloadhash: d2705294eef570365a10c71d7a1b3ccc + release: 2.el8 + size: 302760 + version: 1.7.3.3 diff --git a/tests/resources/sriov-operator-must-gather/container_image_brew_build_dict.yaml b/tests/resources/sriov-operator-must-gather/container_image_brew_build_dict.yaml new file mode 100644 index 000000000..061a21eac --- /dev/null +++ b/tests/resources/sriov-operator-must-gather/container_image_brew_build_dict.yaml @@ -0,0 +1,114 @@ +# print(yaml.dump(k.getBuild(1675520),default_flow_style=False, indent=2)) +build_id: 1675520 +cg_id: 1 +cg_name: atomic-reactor +completion_time: '2021-07-26 15:49:28.959938' +completion_ts: 1627314568.95994 +creation_event_id: 40176633 +creation_time: '2021-07-26 15:45:58.495587' +creation_ts: 1627314358.49559 +epoch: null +extra: + container_koji_task_id: 38405241 + image: + autorebuild: false + go: + modules: + - module: github.com/openshift/sriov-network-operator + help: null + index: + digests: + application/vnd.docker.distribution.manifest.list.v2+json: sha256:611a4934a9388fd5f5a9179da182eb9edc99b01ee78222fcd750ec035c141131 + floating_tags: + - latest + - v4.9.0 + - v4.9 + - v4.9.0.20210726.153339 + - assembly.stream + pull: + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather@sha256:611a4934a9388fd5f5a9179da182eb9edc99b01ee78222fcd750ec035c141131 + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather:v4.9.0-202107261525.p0.git.51a98df.assembly.stream + tags: + - v4.9.0-202107261525.p0.git.51a98df.assembly.stream + unique_tags: + - rhaos-4.9-rhel-8-containers-candidate-50118-20210726154538 + isolated: false + media_types: + - application/vnd.docker.distribution.manifest.list.v2+json + - application/vnd.docker.distribution.manifest.v1+json + - application/vnd.docker.distribution.manifest.v2+json + parent_build_id: 1671604 + parent_image_builds: + registry-proxy.engineering.redhat.com/rh-osbs/openshift-golang-builder:rhel_8_golang_1.16: + id: 1647994 + nvr: openshift-golang-builder-container-v1.16.4-202106291833.el8.git.83c4106 + registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-base:v4.9.0-202107222130.p0.git.8bbec8f.assembly.stream: + id: 1671604 + nvr: openshift-enterprise-base-container-v4.9.0-202107222130.p0.git.8bbec8f.assembly.stream + parent_images: + - openshift/golang-builder:rhel_8_golang_1.16 + - openshift/ose-base:v4.9.0-202107222130.p0.git.8bbec8f.assembly.stream + yum_repourls: + - http://pkgs.devel.redhat.com/cgit/containers/sriov-network-must-gather/plain/.oit/unsigned.repo?h=rhaos-4.9-rhel-8&id=e43afce9d3812403ae54e9166551791a9a4ea550 + osbs_build: + engine: imagebuilder + kind: container_build + subtypes: [] + submitter: osbs + typeinfo: + image: + autorebuild: false + go: + modules: + - module: github.com/openshift/sriov-network-operator + help: null + index: + digests: + application/vnd.docker.distribution.manifest.list.v2+json: sha256:611a4934a9388fd5f5a9179da182eb9edc99b01ee78222fcd750ec035c141131 + floating_tags: + - latest + - v4.9.0 + - v4.9 + - v4.9.0.20210726.153339 + - assembly.stream + pull: + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather@sha256:611a4934a9388fd5f5a9179da182eb9edc99b01ee78222fcd750ec035c141131 + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather:v4.9.0-202107261525.p0.git.51a98df.assembly.stream + tags: + - v4.9.0-202107261525.p0.git.51a98df.assembly.stream + unique_tags: + - rhaos-4.9-rhel-8-containers-candidate-50118-20210726154538 + isolated: false + media_types: + - application/vnd.docker.distribution.manifest.list.v2+json + - application/vnd.docker.distribution.manifest.v1+json + - application/vnd.docker.distribution.manifest.v2+json + parent_build_id: 1671604 + parent_image_builds: + registry-proxy.engineering.redhat.com/rh-osbs/openshift-golang-builder:rhel_8_golang_1.16: + id: 1647994 + nvr: openshift-golang-builder-container-v1.16.4-202106291833.el8.git.83c4106 + registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-base:v4.9.0-202107222130.p0.git.8bbec8f.assembly.stream: + id: 1671604 + nvr: openshift-enterprise-base-container-v4.9.0-202107222130.p0.git.8bbec8f.assembly.stream + parent_images: + - openshift/golang-builder:rhel_8_golang_1.16 + - openshift/ose-base:v4.9.0-202107222130.p0.git.8bbec8f.assembly.stream + yum_repourls: + - http://pkgs.devel.redhat.com/cgit/containers/sriov-network-must-gather/plain/.oit/unsigned.repo?h=rhaos-4.9-rhel-8&id=e43afce9d3812403ae54e9166551791a9a4ea550 +id: 1675520 +name: sriov-network-must-gather-container +nvr: sriov-network-must-gather-container-v4.9.0-202107261525.p0.git.51a98df.assembly.stream +owner_id: 4078 +owner_name: ocp-build/buildvm.openshift.eng.bos.redhat.com +package_id: 77244 +package_name: sriov-network-must-gather-container +release: 202107261525.p0.git.51a98df.assembly.stream +source: git://pkgs.devel.redhat.com/containers/sriov-network-must-gather#e43afce9d3812403ae54e9166551791a9a4ea550 +start_time: '2021-07-26 15:45:58.428712' +start_ts: 1627314358.42871 +state: 1 +task_id: null +version: v4.9.0 +volume_id: 0 +volume_name: DEFAULT diff --git a/tests/resources/sriov-operator-must-gather/container_image_list_archives.yaml b/tests/resources/sriov-operator-must-gather/container_image_list_archives.yaml new file mode 100644 index 000000000..577a4e641 --- /dev/null +++ b/tests/resources/sriov-operator-must-gather/container_image_list_archives.yaml @@ -0,0 +1,546 @@ +# print(yaml.dump(k.listArchives(1675520), default_flow_style=False, indent=2)) +- btype: fake_some_non_image_btype_we_dont_care_about +- btype: image + btype_id: 4 + build_id: 1675520 + buildroot_id: 7646828 + checksum: c99d8169f11a90fa5da8e752af3311ea + checksum_type: 0 + extra: + docker: + config: + architecture: s390x + config: + ArgsEscaped: true + AttachStderr: false + AttachStdin: false + AttachStdout: false + Cmd: null + Domainname: '' + Entrypoint: + - /bin/sh + - -c + - /usr/bin/gather + Env: + - __doozer=merge + - BUILD_RELEASE=202107261525.p0.git.51a98df.assembly.stream + - BUILD_VERSION=v4.9.0 + - OS_GIT_MAJOR=4 + - OS_GIT_MINOR=9 + - OS_GIT_PATCH=0 + - OS_GIT_TREE_STATE=clean + - OS_GIT_VERSION=4.9.0-202107261525.p0.git.51a98df.assembly.stream-51a98df + - SOURCE_GIT_TREE_STATE=clean + - OS_GIT_COMMIT=51a98df + - SOURCE_DATE_EPOCH=1627311800 + - SOURCE_GIT_COMMIT=51a98df728d6712c469946b6ed5973c2fba1454e + - SOURCE_GIT_TAG=51a98df7 + - SOURCE_GIT_URL=https://github.com/openshift/sriov-network-operator + - GODEBUG=x509ignoreCN=0,madvdontneed=1 + - PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + - container=oci + Hostname: fb44c51e1f2b + Image: '' + Labels: + License: GPLv2+ + architecture: s390x + build-date: '2021-07-26T15:46:19.710759' + com.redhat.build-host: s390-c1-vm-03.prod.osbs.eng.bos.redhat.com + com.redhat.component: sriov-network-must-gather-container + com.redhat.license_terms: https://www.redhat.com/agreements + description: This is a sriov must-gather image that collectes sriov network + operator related resources. + distribution-scope: public + io.k8s.description: This is a sriov must-gather image that collectes sriov + network operator related resources. + io.k8s.display-name: sriov-network-operator-must-gather + io.openshift.build.commit.id: 51a98df728d6712c469946b6ed5973c2fba1454e + io.openshift.build.commit.url: https://github.com/openshift/sriov-network-operator/commit/51a98df728d6712c469946b6ed5973c2fba1454e + io.openshift.build.source-location: https://github.com/openshift/sriov-network-operator + io.openshift.expose-services: '' + io.openshift.maintainer.component: Networking + io.openshift.maintainer.product: OpenShift Container Platform + io.openshift.maintainer.subcomponent: SR-IOV + io.openshift.tags: openshift,base + maintainer: Red Hat, Inc. + name: openshift/ose-sriov-operator-must-gather + release: 202107261525.p0.git.51a98df.assembly.stream + summary: Provides the latest release of Red Hat Universal Base Image 8. + url: https://access.redhat.com/containers/#/registry.access.redhat.com/openshift/ose-sriov-operator-must-gather/images/v4.9.0-202107261525.p0.git.51a98df.assembly.stream + vcs-ref: e43afce9d3812403ae54e9166551791a9a4ea550 + vcs-type: git + vendor: Red Hat, Inc. + version: v4.9.0 + OnBuild: null + OpenStdin: false + StdinOnce: false + Tty: false + User: '' + Volumes: null + WorkingDir: '' + container: 2ddce683e3875a09b81903979f3be476ba49aaeb30393522de70ddb0b1b8ea61 + created: '2021-07-26T15:46:47.495145755Z' + docker_version: 1.13.1 + history: + - comment: Imported from - + created: '2021-07-21T02:45:45.881252177Z' + - created: '2021-07-21T02:46:09.171166Z' + - created: '2021-07-22T22:46:55.378845102Z' + created_by: '#(imagebuilder) + + sleep 86400' + - created: '2021-07-22T23:12:23.488934076Z' + created_by: '#(imagebuilder) + + sleep 86400' + - created: '2021-07-26T15:46:47.495145755Z' + created_by: '#(imagebuilder) + + sleep 86400' + os: linux + rootfs: + diff_ids: + - sha256:78047c02b1c89334f8312c81b63b5183e701271bc34d214f93e7ccec9f686b36 + - sha256:284a855c20507cde5260e0c7390651f9a565494279c541cf8efa750c36fc052c + - sha256:a26a7cc69488f2d713abdd9a15a152b0cfdb24ab4061a4ecc79ced8e9dd1bbf6 + - sha256:e76bba334cd795ffe7ffea8647829231f381d4118627df0f58b69961832beefb + - sha256:0c0240bae433d0b2be8859c000f0bdf190f58361aacd03b109584568373d0e7a + type: layers + digests: + application/vnd.docker.distribution.manifest.v2+json: sha256:1f3ebef02669eca018dbfd2c5a65575a21e4920ebe6a5328029a5000127aaa4b + id: sha256:3478b32cf5bac9ed0b196c040e34e8a9d723f94b8f8b1fe8e4765966c0d35141 + layer_sizes: + - diff_id: sha256:78047c02b1c89334f8312c81b63b5183e701271bc34d214f93e7ccec9f686b36 + size: 223446739 + - diff_id: sha256:284a855c20507cde5260e0c7390651f9a565494279c541cf8efa750c36fc052c + size: 4760 + - diff_id: sha256:a26a7cc69488f2d713abdd9a15a152b0cfdb24ab4061a4ecc79ced8e9dd1bbf6 + size: 7705020 + - diff_id: sha256:e76bba334cd795ffe7ffea8647829231f381d4118627df0f58b69961832beefb + size: 34363223 + - diff_id: sha256:0c0240bae433d0b2be8859c000f0bdf190f58361aacd03b109584568373d0e7a + size: 6734 + parent_id: sha256:4394e986499357613948126f45638cf3ae8974533604af407ae87371702a2dd4 + repositories: + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather:rhaos-4.9-rhel-8-containers-candidate-98861-20210726154614-s390x + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather@sha256:1f3ebef02669eca018dbfd2c5a65575a21e4920ebe6a5328029a5000127aaa4b + tags: + - rhaos-4.9-rhel-8-containers-candidate-98861-20210726154614-s390x + image: + arch: s390x + filename: docker-image-sha256:3478b32cf5bac9ed0b196c040e34e8a9d723f94b8f8b1fe8e4765966c0d35141.s390x.tar.gz + id: 5229574 + metadata_only: false + size: 107946644 + type_description: Tar file + type_extensions: tar tar.gz tar.bz2 tar.xz tgz + type_id: 4 + type_name: tar +- btype: image + btype_id: 4 + build_id: 1675520 + buildroot_id: 7646826 + checksum: 3bf7f3248c4310fb98dea5210058f038 + checksum_type: 0 + extra: + docker: + config: + architecture: ppc64le + config: + ArgsEscaped: true + AttachStderr: false + AttachStdin: false + AttachStdout: false + Cmd: null + Domainname: '' + Entrypoint: + - /bin/sh + - -c + - /usr/bin/gather + Env: + - __doozer=merge + - BUILD_RELEASE=202107261525.p0.git.51a98df.assembly.stream + - BUILD_VERSION=v4.9.0 + - OS_GIT_MAJOR=4 + - OS_GIT_MINOR=9 + - OS_GIT_PATCH=0 + - OS_GIT_TREE_STATE=clean + - OS_GIT_VERSION=4.9.0-202107261525.p0.git.51a98df.assembly.stream-51a98df + - SOURCE_GIT_TREE_STATE=clean + - OS_GIT_COMMIT=51a98df + - SOURCE_DATE_EPOCH=1627311800 + - SOURCE_GIT_COMMIT=51a98df728d6712c469946b6ed5973c2fba1454e + - SOURCE_GIT_TAG=51a98df7 + - SOURCE_GIT_URL=https://github.com/openshift/sriov-network-operator + - GODEBUG=x509ignoreCN=0,madvdontneed=1 + - PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + - container=oci + Hostname: 23bbf48fd445 + Image: '' + Labels: + License: GPLv2+ + architecture: ppc64le + build-date: '2021-07-26T15:44:25.173651' + com.redhat.build-host: ppc64le-c1-vm-03.prod.osbs.eng.rdu2.redhat.com + com.redhat.component: sriov-network-must-gather-container + com.redhat.license_terms: https://www.redhat.com/agreements + description: This is a sriov must-gather image that collectes sriov network + operator related resources. + distribution-scope: public + io.k8s.description: This is a sriov must-gather image that collectes sriov + network operator related resources. + io.k8s.display-name: sriov-network-operator-must-gather + io.openshift.build.commit.id: 51a98df728d6712c469946b6ed5973c2fba1454e + io.openshift.build.commit.url: https://github.com/openshift/sriov-network-operator/commit/51a98df728d6712c469946b6ed5973c2fba1454e + io.openshift.build.source-location: https://github.com/openshift/sriov-network-operator + io.openshift.expose-services: '' + io.openshift.maintainer.component: Networking + io.openshift.maintainer.product: OpenShift Container Platform + io.openshift.maintainer.subcomponent: SR-IOV + io.openshift.tags: openshift,base + maintainer: Red Hat, Inc. + name: openshift/ose-sriov-operator-must-gather + release: 202107261525.p0.git.51a98df.assembly.stream + summary: Provides the latest release of Red Hat Universal Base Image 8. + url: https://access.redhat.com/containers/#/registry.access.redhat.com/openshift/ose-sriov-operator-must-gather/images/v4.9.0-202107261525.p0.git.51a98df.assembly.stream + vcs-ref: e43afce9d3812403ae54e9166551791a9a4ea550 + vcs-type: git + vendor: Red Hat, Inc. + version: v4.9.0 + OnBuild: null + OpenStdin: false + StdinOnce: false + Tty: false + User: '' + Volumes: null + WorkingDir: '' + container: fe335e445dceab41db2b7411ef14bd172e533754b32a4829badfee0b5dbb4104 + created: '2021-07-26T15:45:18.95974165Z' + docker_version: 1.13.1 + history: + - comment: Imported from - + created: '2021-07-21T02:44:11.031595949Z' + - created: '2021-07-21T02:44:40.8539Z' + - created: '2021-07-22T22:47:13.339015911Z' + created_by: '#(imagebuilder) + + sleep 86400' + - created: '2021-07-22T23:12:47.864168528Z' + created_by: '#(imagebuilder) + + sleep 86400' + - created: '2021-07-26T15:45:18.95974165Z' + created_by: '#(imagebuilder) + + sleep 86400' + os: linux + rootfs: + diff_ids: + - sha256:618fdb075737348f6bd8dff7549f7e7fb333565662287452483a7e14599f9515 + - sha256:078d45965216760d96022518ccb5be928c8adaa81d1c6f281bc3568cafdd08d4 + - sha256:f8a6598ec0addeeaeffa3722a5a5a35d7b3a20260bb30cc3dee4d48b56b78b4c + - sha256:28dd471b9cc6ee088e69efc6b5d265ad3e460be3460f1bb5d6ff272624fee06a + - sha256:52f7900ef01c394895c9ab0f287b922c0a37de57a6e2498ca117029e470d4e5e + type: layers + digests: + application/vnd.docker.distribution.manifest.v2+json: sha256:0c460ed9cc9565e68472600c1eaa4c766f47d21d80b9a545ab36b6cb5bfa63f5 + id: sha256:d325a2f3042968f6763141670961d8aefc2eb0ead27ef5de15b757bdc4d8a912 + layer_sizes: + - diff_id: sha256:618fdb075737348f6bd8dff7549f7e7fb333565662287452483a7e14599f9515 + size: 291203156 + - diff_id: sha256:078d45965216760d96022518ccb5be928c8adaa81d1c6f281bc3568cafdd08d4 + size: 4770 + - diff_id: sha256:f8a6598ec0addeeaeffa3722a5a5a35d7b3a20260bb30cc3dee4d48b56b78b4c + size: 7758282 + - diff_id: sha256:28dd471b9cc6ee088e69efc6b5d265ad3e460be3460f1bb5d6ff272624fee06a + size: 38943656 + - diff_id: sha256:52f7900ef01c394895c9ab0f287b922c0a37de57a6e2498ca117029e470d4e5e + size: 6740 + parent_id: sha256:97cad93dd0fba397e77b177e2f5499fc3d394e096e6f1fa4efc497bae8252d4f + repositories: + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather:rhaos-4.9-rhel-8-containers-candidate-12844-20210726154614-ppc64le + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather@sha256:0c460ed9cc9565e68472600c1eaa4c766f47d21d80b9a545ab36b6cb5bfa63f5 + tags: + - rhaos-4.9-rhel-8-containers-candidate-12844-20210726154614-ppc64le + image: + arch: ppc64le + filename: docker-image-sha256:d325a2f3042968f6763141670961d8aefc2eb0ead27ef5de15b757bdc4d8a912.ppc64le.tar.gz + id: 5229575 + metadata_only: false + size: 102272115 + type_description: Tar file + type_extensions: tar tar.gz tar.bz2 tar.xz tgz + type_id: 4 + type_name: tar +- btype: image + btype_id: 4 + build_id: 1675520 + buildroot_id: 7646829 + checksum: 5f22ec02d961409caf2da2e87f430c79 + checksum_type: 0 + extra: + docker: + config: + architecture: amd64 + config: + ArgsEscaped: true + AttachStderr: false + AttachStdin: false + AttachStdout: false + Cmd: null + Domainname: '' + Entrypoint: + - /bin/sh + - -c + - /usr/bin/gather + Env: + - __doozer=merge + - BUILD_RELEASE=202107261525.p0.git.51a98df.assembly.stream + - BUILD_VERSION=v4.9.0 + - OS_GIT_MAJOR=4 + - OS_GIT_MINOR=9 + - OS_GIT_PATCH=0 + - OS_GIT_TREE_STATE=clean + - OS_GIT_VERSION=4.9.0-202107261525.p0.git.51a98df.assembly.stream-51a98df + - SOURCE_GIT_TREE_STATE=clean + - OS_GIT_COMMIT=51a98df + - SOURCE_DATE_EPOCH=1627311800 + - SOURCE_GIT_COMMIT=51a98df728d6712c469946b6ed5973c2fba1454e + - SOURCE_GIT_TAG=51a98df7 + - SOURCE_GIT_URL=https://github.com/openshift/sriov-network-operator + - GODEBUG=x509ignoreCN=0,madvdontneed=1 + - PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + - container=oci + Hostname: 01eb13d41cd1 + Image: '' + Labels: + License: GPLv2+ + architecture: x86_64 + build-date: '2021-07-26T15:46:18.869735' + com.redhat.build-host: cpt-1007.osbs.prod.upshift.rdu2.redhat.com + com.redhat.component: sriov-network-must-gather-container + com.redhat.license_terms: https://www.redhat.com/agreements + description: This is a sriov must-gather image that collectes sriov network + operator related resources. + distribution-scope: public + io.k8s.description: This is a sriov must-gather image that collectes sriov + network operator related resources. + io.k8s.display-name: sriov-network-operator-must-gather + io.openshift.build.commit.id: 51a98df728d6712c469946b6ed5973c2fba1454e + io.openshift.build.commit.url: https://github.com/openshift/sriov-network-operator/commit/51a98df728d6712c469946b6ed5973c2fba1454e + io.openshift.build.source-location: https://github.com/openshift/sriov-network-operator + io.openshift.expose-services: '' + io.openshift.maintainer.component: Networking + io.openshift.maintainer.product: OpenShift Container Platform + io.openshift.maintainer.subcomponent: SR-IOV + io.openshift.tags: openshift,base + maintainer: Red Hat, Inc. + name: openshift/ose-sriov-operator-must-gather + release: 202107261525.p0.git.51a98df.assembly.stream + summary: Provides the latest release of Red Hat Universal Base Image 8. + url: https://access.redhat.com/containers/#/registry.access.redhat.com/openshift/ose-sriov-operator-must-gather/images/v4.9.0-202107261525.p0.git.51a98df.assembly.stream + vcs-ref: e43afce9d3812403ae54e9166551791a9a4ea550 + vcs-type: git + vendor: Red Hat, Inc. + version: v4.9.0 + OnBuild: null + OpenStdin: false + StdinOnce: false + Tty: false + User: '' + Volumes: null + WorkingDir: '' + container: 6c00a7ca55a1ee26dbbaaaebe278666e28cd56c9f21cdd04dcb168d3702e3d5f + created: '2021-07-26T15:47:28.698039824Z' + docker_version: 1.13.1 + history: + - comment: Imported from - + created: '2021-07-21T02:45:44.77365861Z' + - created: '2021-07-21T02:45:52.657622Z' + - created: '2021-07-22T22:46:56.715242216Z' + created_by: '#(imagebuilder) + + sleep 86400' + - created: '2021-07-22T23:12:14.877852975Z' + created_by: '#(imagebuilder) + + sleep 86400' + - created: '2021-07-26T15:47:28.698039824Z' + created_by: '#(imagebuilder) + + sleep 86400' + os: linux + rootfs: + diff_ids: + - sha256:9f792120afb392676729d0f0dfdb54350bb95ddebcbcfd0ed57163fe63a7e748 + - sha256:fabeba2a071f743f0e40675d4ec77cfc70dffe2e2e45bfea9d9d105da901fce9 + - sha256:ad143e6884c1176131371dbb91ce6a7a940f4f91384582ba07d6b5ee729fce46 + - sha256:5e04e033945ff915ca4cca2450a609754d8993088ea90ea8004f9673b4759a75 + - sha256:e640c89a62e063bfe11420d1150feb3ff38d74e0d44b667de4d7b5ba708c45e1 + type: layers + digests: + application/vnd.docker.distribution.manifest.v2+json: sha256:dccedddbe79de2f6b1212c42ac2f68f810c3bca68a3434db376c106478cc6198 + id: sha256:76824da63a05cd0195e178237a6c628a14ed9b1d2b4104d16821c4cbef0076d2 + layer_sizes: + - diff_id: sha256:9f792120afb392676729d0f0dfdb54350bb95ddebcbcfd0ed57163fe63a7e748 + size: 225671015 + - diff_id: sha256:fabeba2a071f743f0e40675d4ec77cfc70dffe2e2e45bfea9d9d105da901fce9 + size: 4763 + - diff_id: sha256:ad143e6884c1176131371dbb91ce6a7a940f4f91384582ba07d6b5ee729fce46 + size: 7745269 + - diff_id: sha256:5e04e033945ff915ca4cca2450a609754d8993088ea90ea8004f9673b4759a75 + size: 34201218 + - diff_id: sha256:e640c89a62e063bfe11420d1150feb3ff38d74e0d44b667de4d7b5ba708c45e1 + size: 6735 + parent_id: sha256:dc0ea3950364d9e9e5771bb64e08f657b3fdef8f626e166520b3bb39e87702b8 + repositories: + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather:rhaos-4.9-rhel-8-containers-candidate-91433-20210726154614-x86_64 + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather@sha256:dccedddbe79de2f6b1212c42ac2f68f810c3bca68a3434db376c106478cc6198 + tags: + - rhaos-4.9-rhel-8-containers-candidate-91433-20210726154614-x86_64 + image: + arch: x86_64 + filename: docker-image-sha256:76824da63a05cd0195e178237a6c628a14ed9b1d2b4104d16821c4cbef0076d2.x86_64.tar.gz + id: 5229576 + metadata_only: false + size: 93985037 + type_description: Tar file + type_extensions: tar tar.gz tar.bz2 tar.xz tgz + type_id: 4 + type_name: tar +- btype: image + btype_id: 4 + build_id: 1675520 + buildroot_id: 7646825 + checksum: 043df606fc7798cab7529fb37bab3751 + checksum_type: 0 + extra: + docker: + config: + architecture: arm64 + config: + ArgsEscaped: true + AttachStderr: false + AttachStdin: false + AttachStdout: false + Cmd: null + Domainname: '' + Entrypoint: + - /bin/sh + - -c + - /usr/bin/gather + Env: + - __doozer=merge + - BUILD_RELEASE=202107261525.p0.git.51a98df.assembly.stream + - BUILD_VERSION=v4.9.0 + - OS_GIT_MAJOR=4 + - OS_GIT_MINOR=9 + - OS_GIT_PATCH=0 + - OS_GIT_TREE_STATE=clean + - OS_GIT_VERSION=4.9.0-202107261525.p0.git.51a98df.assembly.stream-51a98df + - SOURCE_GIT_TREE_STATE=clean + - OS_GIT_COMMIT=51a98df + - SOURCE_DATE_EPOCH=1627311800 + - SOURCE_GIT_COMMIT=51a98df728d6712c469946b6ed5973c2fba1454e + - SOURCE_GIT_TAG=51a98df7 + - SOURCE_GIT_URL=https://github.com/openshift/sriov-network-operator + - GODEBUG=x509ignoreCN=0,madvdontneed=1 + - PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + - container=oci + Hostname: 9d01c867eae8 + Image: '' + Labels: + License: GPLv2+ + architecture: arm64 + build-date: '2021-07-26T15:46:27.437761' + com.redhat.build-host: arm-003.osbs.prod.upshift.rdu2.redhat.com + com.redhat.component: sriov-network-must-gather-container + com.redhat.license_terms: https://www.redhat.com/agreements + description: This is a sriov must-gather image that collectes sriov network + operator related resources. + distribution-scope: public + io.k8s.description: This is a sriov must-gather image that collectes sriov + network operator related resources. + io.k8s.display-name: sriov-network-operator-must-gather + io.openshift.build.commit.id: 51a98df728d6712c469946b6ed5973c2fba1454e + io.openshift.build.commit.url: https://github.com/openshift/sriov-network-operator/commit/51a98df728d6712c469946b6ed5973c2fba1454e + io.openshift.build.source-location: https://github.com/openshift/sriov-network-operator + io.openshift.expose-services: '' + io.openshift.maintainer.component: Networking + io.openshift.maintainer.product: OpenShift Container Platform + io.openshift.maintainer.subcomponent: SR-IOV + io.openshift.tags: openshift,base + maintainer: Red Hat, Inc. + name: openshift/ose-sriov-operator-must-gather + release: 202107261525.p0.git.51a98df.assembly.stream + summary: Provides the latest release of Red Hat Universal Base Image 8. + url: https://access.redhat.com/containers/#/registry.access.redhat.com/openshift/ose-sriov-operator-must-gather/images/v4.9.0-202107261525.p0.git.51a98df.assembly.stream + vcs-ref: e43afce9d3812403ae54e9166551791a9a4ea550 + vcs-type: git + vendor: Red Hat, Inc. + version: v4.9.0 + OnBuild: null + OpenStdin: false + StdinOnce: false + Tty: false + User: '' + Volumes: null + WorkingDir: '' + container: 49b458405f8f8d0fd4c2cc799a2c6743b3e86bd2e8f1c215963f525d8cb3e559 + created: '2021-07-26T15:48:03.373137079Z' + docker_version: 1.13.1 + history: + - comment: Imported from - + created: '2021-07-21T02:45:58.395130589Z' + - created: '2021-07-21T02:47:33.03081Z' + - created: '2021-07-22T22:47:51.408036713Z' + created_by: '#(imagebuilder) + + sleep 86400' + - created: '2021-07-22T23:13:15.630094902Z' + created_by: '#(imagebuilder) + + sleep 86400' + - created: '2021-07-26T15:48:03.373137079Z' + created_by: '#(imagebuilder) + + sleep 86400' + os: linux + rootfs: + diff_ids: + - sha256:120879ddbc58437deae79a7d2bf51601e84e5e0ec0f4e13a190de3e7a5360e55 + - sha256:df9e50ca260fbc3365d4b756999a8f8103813d570a59308efa424f0504838c16 + - sha256:6c7246dd16f35d2ead6cf67f1219876546f5795f7d2ea1067fe612d4872b735c + - sha256:84be2ba296af04ef93be2e9249fa15eba3a94cae50e45efeae37814dea2e1a31 + - sha256:41e651b5d6cd6fa5339f258ff2024b96d4a4fbefde72ac334b877a7d7d65a1e2 + type: layers + digests: + application/vnd.docker.distribution.manifest.v2+json: sha256:162b5087f7f82fd781ef6a35d99719e89b42a0463307629e081f256b6a94c5e7 + id: sha256:2f7ca6ec6774da0d446c05c42b00d67f14452810016ddfe6caebe29ccb2b8736 + layer_sizes: + - diff_id: sha256:120879ddbc58437deae79a7d2bf51601e84e5e0ec0f4e13a190de3e7a5360e55 + size: 259129779 + - diff_id: sha256:df9e50ca260fbc3365d4b756999a8f8103813d570a59308efa424f0504838c16 + size: 4763 + - diff_id: sha256:6c7246dd16f35d2ead6cf67f1219876546f5795f7d2ea1067fe612d4872b735c + size: 7762372 + - diff_id: sha256:84be2ba296af04ef93be2e9249fa15eba3a94cae50e45efeae37814dea2e1a31 + size: 36613745 + - diff_id: sha256:41e651b5d6cd6fa5339f258ff2024b96d4a4fbefde72ac334b877a7d7d65a1e2 + size: 6733 + parent_id: sha256:9c3300bf5b8aa74eeaf1ca2553e771e4d0e0825032822cd13de6661aa730c973 + repositories: + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather:rhaos-4.9-rhel-8-containers-candidate-49566-20210726154614-aarch64 + - registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather@sha256:162b5087f7f82fd781ef6a35d99719e89b42a0463307629e081f256b6a94c5e7 + tags: + - rhaos-4.9-rhel-8-containers-candidate-49566-20210726154614-aarch64 + image: + arch: aarch64 + filename: docker-image-sha256:2f7ca6ec6774da0d446c05c42b00d67f14452810016ddfe6caebe29ccb2b8736.aarch64.tar.gz + id: 5229577 + metadata_only: false + size: 92586407 + type_description: Tar file + type_extensions: tar tar.gz tar.bz2 tar.xz tgz + type_id: 4 + type_name: tar diff --git a/tests/resources/sriov-operator-must-gather/container_image_oc_info.json b/tests/resources/sriov-operator-must-gather/container_image_oc_info.json new file mode 100644 index 000000000..15d7b052e --- /dev/null +++ b/tests/resources/sriov-operator-must-gather/container_image_oc_info.json @@ -0,0 +1,188 @@ +{ + "name": "registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather@sha256:611a4934a9388fd5f5a9179da182eb9edc99b01ee78222fcd750ec035c141131", + "digest": "sha256:dccedddbe79de2f6b1212c42ac2f68f810c3bca68a3434db376c106478cc6198", + "contentDigest": "sha256:dccedddbe79de2f6b1212c42ac2f68f810c3bca68a3434db376c106478cc6198", + "listDigest": "sha256:611a4934a9388fd5f5a9179da182eb9edc99b01ee78222fcd750ec035c141131", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", + "layers": [ + { + "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", + "size": 83335265, + "digest": "sha256:1cadda38f72dece653de82063e3c8e910265fe7a342ec2fb73ad8e540c47e1f7" + }, + { + "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", + "size": 1801, + "digest": "sha256:a50df8fd88fecefc26fd331f832672108deb08cf9d2b303a5b86156a7f51b5d8" + }, + { + "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", + "size": 2121431, + "digest": "sha256:904d3325f999f09cad1ba9676937fc8b72ff2856ec698cf7b203509a4c8b449d" + }, + { + "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", + "size": 11178541, + "digest": "sha256:5193b0db398b46003eefb073cbddef4a528410365e992081c8d2ea6633d78865" + }, + { + "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", + "size": 2168, + "digest": "sha256:c508459eab721a3bd89bd2987b0d73985ef41be9fa609371eeaec573f4346baa" + } + ], + "config": { + "id": "", + "created": "2021-07-26T15:47:28.698039824Z", + "container": "6c00a7ca55a1ee26dbbaaaebe278666e28cd56c9f21cdd04dcb168d3702e3d5f", + "container_config": { + "Hostname": "6c00a7ca55a1", + "Env": [ + "__doozer=merge", + "BUILD_RELEASE=202107222130.p0.git.8bbec8f.assembly.stream", + "BUILD_VERSION=v4.9.0", + "OS_GIT_MAJOR=4", + "OS_GIT_MINOR=9", + "OS_GIT_PATCH=0", + "OS_GIT_TREE_STATE=clean", + "OS_GIT_VERSION=4.9.0-202107222130.p0.git.8bbec8f.assembly.stream-8bbec8f", + "SOURCE_GIT_TREE_STATE=clean", + "OS_GIT_COMMIT=8bbec8f", + "SOURCE_DATE_EPOCH=1625799187", + "SOURCE_GIT_COMMIT=8bbec8fc781529b9b6eebd1f86c3725752d38dcb", + "SOURCE_GIT_TAG=8bbec8f", + "SOURCE_GIT_URL=https://github.com/openshift/images", + "GODEBUG=x509ignoreCN=0,madvdontneed=1", + "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", + "container=oci" + ], + "Cmd": [ + "#(imagebuilder)\nsleep 86400" + ], + "Image": "sha256:dc0ea3950364d9e9e5771bb64e08f657b3fdef8f626e166520b3bb39e87702b8", + "Entrypoint": [ + "/bin/sh", + "-c" + ], + "Labels": { + "License": "GPLv2+", + "architecture": "x86_64", + "build-date": "2021-07-22T23:10:35.606964", + "com.redhat.build-host": "cpt-1007.osbs.prod.upshift.rdu2.redhat.com", + "com.redhat.component": "openshift-enterprise-base-container", + "com.redhat.license_terms": "https://www.redhat.com/agreements", + "description": "This is the base image from which all OpenShift Container Platform images inherit.", + "distribution-scope": "public", + "io.k8s.description": "This is the base image from which all OpenShift Container Platform images inherit.", + "io.k8s.display-name": "OpenShift Container Platform RHEL 7 Base", + "io.openshift.build.commit.id": "8bbec8fc781529b9b6eebd1f86c3725752d38dcb", + "io.openshift.build.commit.url": "https://github.com/openshift/images/commit/8bbec8fc781529b9b6eebd1f86c3725752d38dcb", + "io.openshift.build.source-location": "https://github.com/openshift/images", + "io.openshift.expose-services": "", + "io.openshift.maintainer.component": "Release", + "io.openshift.maintainer.product": "OpenShift Container Platform", + "io.openshift.tags": "openshift,base", + "maintainer": "Red Hat, Inc.", + "name": "openshift/ose-base", + "release": "202107222130.p0.git.8bbec8f.assembly.stream", + "summary": "Provides the latest release of Red Hat Universal Base Image 8.", + "url": "https://access.redhat.com/containers/#/registry.access.redhat.com/openshift/ose-base/images/v4.9.0-202107222130.p0.git.8bbec8f.assembly.stream", + "vcs-ref": "7fef0def1f9ad264f371a5ab11aaf279a5f3c41b", + "vcs-type": "git", + "vendor": "Red Hat, Inc.", + "version": "v4.9.0" + } + }, + "docker_version": "1.13.1", + "config": { + "Hostname": "01eb13d41cd1", + "Env": [ + "__doozer=merge", + "BUILD_RELEASE=202107261525.p0.git.51a98df.assembly.stream", + "BUILD_VERSION=v4.9.0", + "OS_GIT_MAJOR=4", + "OS_GIT_MINOR=9", + "OS_GIT_PATCH=0", + "OS_GIT_TREE_STATE=clean", + "OS_GIT_VERSION=4.9.0-202107261525.p0.git.51a98df.assembly.stream-51a98df", + "SOURCE_GIT_TREE_STATE=clean", + "OS_GIT_COMMIT=51a98df", + "SOURCE_DATE_EPOCH=1627311800", + "SOURCE_GIT_COMMIT=51a98df728d6712c469946b6ed5973c2fba1454e", + "SOURCE_GIT_TAG=51a98df7", + "SOURCE_GIT_URL=https://github.com/openshift/sriov-network-operator", + "GODEBUG=x509ignoreCN=0,madvdontneed=1", + "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", + "container=oci" + ], + "Entrypoint": [ + "/bin/sh", + "-c", + "/usr/bin/gather" + ], + "Labels": { + "License": "GPLv2+", + "architecture": "x86_64", + "build-date": "2021-07-26T15:46:18.869735", + "com.redhat.build-host": "cpt-1007.osbs.prod.upshift.rdu2.redhat.com", + "com.redhat.component": "sriov-network-must-gather-container", + "com.redhat.license_terms": "https://www.redhat.com/agreements", + "description": "This is a sriov must-gather image that collectes sriov network operator related resources.", + "distribution-scope": "public", + "io.k8s.description": "This is a sriov must-gather image that collectes sriov network operator related resources.", + "io.k8s.display-name": "sriov-network-operator-must-gather", + "io.openshift.build.commit.id": "51a98df728d6712c469946b6ed5973c2fba1454e", + "io.openshift.build.commit.url": "https://github.com/openshift/sriov-network-operator/commit/51a98df728d6712c469946b6ed5973c2fba1454e", + "io.openshift.build.source-location": "https://github.com/openshift/sriov-network-operator", + "io.openshift.expose-services": "", + "io.openshift.maintainer.component": "Networking", + "io.openshift.maintainer.product": "OpenShift Container Platform", + "io.openshift.maintainer.subcomponent": "SR-IOV", + "io.openshift.tags": "openshift,base", + "maintainer": "Red Hat, Inc.", + "name": "openshift/ose-sriov-operator-must-gather", + "release": "202107261525.p0.git.51a98df.assembly.stream", + "summary": "Provides the latest release of Red Hat Universal Base Image 8.", + "url": "https://access.redhat.com/containers/#/registry.access.redhat.com/openshift/ose-sriov-operator-must-gather/images/v4.9.0-202107261525.p0.git.51a98df.assembly.stream", + "vcs-ref": "e43afce9d3812403ae54e9166551791a9a4ea550", + "vcs-type": "git", + "vendor": "Red Hat, Inc.", + "version": "v4.9.0" + } + }, + "architecture": "amd64", + "size": 96639206, + "rootfs": { + "type": "layers", + "diff_ids": [ + "sha256:9f792120afb392676729d0f0dfdb54350bb95ddebcbcfd0ed57163fe63a7e748", + "sha256:fabeba2a071f743f0e40675d4ec77cfc70dffe2e2e45bfea9d9d105da901fce9", + "sha256:ad143e6884c1176131371dbb91ce6a7a940f4f91384582ba07d6b5ee729fce46", + "sha256:5e04e033945ff915ca4cca2450a609754d8993088ea90ea8004f9673b4759a75", + "sha256:e640c89a62e063bfe11420d1150feb3ff38d74e0d44b667de4d7b5ba708c45e1" + ] + }, + "history": [ + { + "created": "2021-07-21T02:45:44.77365861Z", + "comment": "Imported from -" + }, + { + "created": "2021-07-21T02:45:52.657622Z" + }, + { + "created": "2021-07-22T22:46:56.715242216Z", + "created_by": "#(imagebuilder)\nsleep 86400" + }, + { + "created": "2021-07-22T23:12:14.877852975Z", + "created_by": "#(imagebuilder)\nsleep 86400" + }, + { + "created": "2021-07-26T15:47:28.698039824Z", + "created_by": "#(imagebuilder)\nsleep 86400" + } + ], + "os": "linux" + } +} \ No newline at end of file diff --git a/tests/test_brew_inspector.py b/tests/test_brew_inspector.py new file mode 100644 index 000000000..707cd0b6f --- /dev/null +++ b/tests/test_brew_inspector.py @@ -0,0 +1,98 @@ +#!/usr/bin/env python +from __future__ import absolute_import, print_function, unicode_literals + +from pathlib import Path +import os +import yaml +import json +import logging + +import unittest +from mock import MagicMock, Mock, patch + +from doozerlib.image import BrewBuildImageInspector + + +class MockRuntime(object): + + def __init__(self, logger): + self.logger = logger + + +class TestBrewBuildImageInspector(unittest.TestCase): + + def setUp(self): + logging.basicConfig(level=logging.DEBUG) + self.logger = logging.getLogger() + + runtime = MockRuntime(self.logger) + koji_mock = Mock() + koji_mock.__enter__ = Mock() + koji_mock.__enter__.return_value = koji_mock + koji_mock.__exit__ = Mock() + + runtime.pooled_koji_client_session = Mock() + runtime.pooled_koji_client_session.return_value = koji_mock + self.runtime = runtime + self.koji_mock = koji_mock + self.respath = Path(os.path.dirname(__file__), 'resources') + pass + + def tearDown(self): + pass + + @patch("doozerlib.exectools.cmd_assert") + def test_info_parsing(self, fake_cmd_assert): + """ + Tests the brew build inspector abstraction to ensure it correctly parses and utilizes + pre-canned data. + """ + + image_res = self.respath.joinpath('sriov-operator-must-gather') + image_build_dict = yaml.safe_load(image_res.joinpath('container_image_brew_build_dict.yaml').read_text()) + image_archives = yaml.safe_load(image_res.joinpath('container_image_list_archives.yaml').read_text()) + image_archives_list_rpms = yaml.safe_load(image_res.joinpath('container_image_archive_rpms.yaml').read_text()) # dict[imageID] => koji.listRPMs(imageID) + image_archives_builds_used = yaml.safe_load(image_res.joinpath('build_dicts.yaml').read_text()) # dict[buildID] => koji.getBuild(buildID) + oc_info_dict = json.loads(image_res.joinpath('container_image_oc_info.json').read_text()) + + self.koji_mock.getBuild.return_value = image_build_dict + self.koji_mock.listArchives.return_value = image_archives + fake_cmd_assert.return_value = (json.dumps(oc_info_dict), "") + bbii = BrewBuildImageInspector(self.runtime, image_build_dict['nvr']) + + self.assertEqual(bbii.get_nvr(), image_build_dict['nvr']) + self.assertEqual(bbii.get_source_git_url(), 'https://github.com/openshift/sriov-network-operator') + self.assertEqual(bbii.get_labels()["io.openshift.build.commit.url"], "https://github.com/openshift/sriov-network-operator/commit/51a98df728d6712c469946b6ed5973c2fba1454e") + + self.assertEqual(len(bbii.get_all_archive_dicts()), 5) + self.assertEqual(len(bbii.get_image_archive_dicts()), 4) # filters out non-image archive types + + def canned_listRPMs(imageID, *_, **__): + return image_archives_list_rpms[imageID] + + def canned_getBuild(build_id, *_, **__): + return image_archives_builds_used[build_id] + + self.koji_mock.getBuild = MagicMock() # Get rid of old return_value + self.koji_mock.getBuild.side_effect = canned_getBuild + self.koji_mock.listRPMs.side_effect = canned_listRPMs + archive_inspectors = bbii.get_image_archive_inspectors() + self.assertEqual(len(archive_inspectors), 4) # One per image archive + + for ai in archive_inspectors: + self.assertIn(ai.get_archive_id(), image_archives_list_rpms.keys(), 'ArchiveIDs not reported corrected from abstraction class') + self.assertTrue(len(ai.get_installed_rpm_dicts()) > 0) + bd = ai.get_installed_package_build_dicts() + self.assertEqual(bd['grep']['nvr'], 'grep-3.1-6.el8') + + self.assertIsNone(bbii.get_image_archive_inspector('s390x').get_installed_package_build_dicts().get('tzdata', None)) # Remove this from the resource data by hand for this test + self.assertIsNotNone(bbii.get_image_archive_inspector('x86_64').get_installed_package_build_dicts().get('tzdata', None)) # Remove this from the resource data by hand for this test + self.assertIsNotNone(bbii.get_all_installed_package_build_dicts().get('tzdata', None)) # Even though not in s390x, it should be in aggregate + self.assertEqual(bbii.get_all_installed_package_build_dicts()['grep']['nvr'], 'grep-3.1-6.el8') # Ensure aggregate has the same nvr for grep + + self.assertEqual(bbii.get_image_archive_inspector('s390x').get_archive_pullspec(), 'registry-proxy.engineering.redhat.com/rh-osbs/openshift-ose-sriov-operator-must-gather:rhaos-4.9-rhel-8-containers-candidate-98861-20210726154614-s390x') + self.assertEqual(bbii.get_image_archive_inspector('s390x').get_archive_digest(), 'sha256:1f3ebef02669eca018dbfd2c5a65575a21e4920ebe6a5328029a5000127aaa4b') + + +if __name__ == "__main__": + unittest.main() diff --git a/tests/test_rhcos.py b/tests/test_rhcos.py index 34074dfd7..dbec389c5 100755 --- a/tests/test_rhcos.py +++ b/tests/test_rhcos.py @@ -1,14 +1,24 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 from __future__ import absolute_import, print_function, unicode_literals + +import logging import json import unittest -from flexmock import flexmock -from unittest.mock import patch, MagicMock +import os +import yaml +from pathlib import Path +from unittest.mock import patch, MagicMock, Mock from doozerlib import rhcos +class MockRuntime(object): + + def __init__(self, logger): + self.logger = logger + + def _urlopen_json_cm(mock_urlopen, content, rc=200): # serializes content as json and has the urlopen context manager return it cm = MagicMock() @@ -21,7 +31,20 @@ def _urlopen_json_cm(mock_urlopen, content, rc=200): class TestRhcos(unittest.TestCase): def setUp(self): - pass + logging.basicConfig(level=logging.DEBUG) + self.logger = logging.getLogger() + + runtime = MockRuntime(self.logger) + koji_mock = Mock() + koji_mock.__enter__ = Mock() + koji_mock.__enter__.return_value = koji_mock + koji_mock.__exit__ = Mock() + + runtime.pooled_koji_client_session = Mock() + runtime.pooled_koji_client_session.return_value = koji_mock + self.runtime = runtime + self.koji_mock = koji_mock + self.respath = Path(os.path.dirname(__file__), 'resources') def tearDown(self): pass @@ -51,6 +74,40 @@ def test_build_meta(self, meta_mock, id_mock): id_mock.return_value = None self.assertEqual((None, None), rhcos.latest_machine_os_content("4.4")) + @patch('doozerlib.rhcos.rhcos_build_meta') + def test_rhcos_build_inspector(self, rhcos_build_meta_mock): + """ + Tests the RHCOS build inspector abstraction to ensure it correctly parses and utilizes + pre-canned data. + """ + # Data source: https://releases-rhcos-art.cloud.privileged.psi.redhat.com/?stream=releases/rhcos-4.7-s390x&release=47.83.202107261211-0#47.83.202107261211-0 + rhcos_meta = json.loads(self.respath.joinpath('rhcos1', '47.83.202107261211-0.meta.json').read_text()) + rhcos_commitmeta = json.loads(self.respath.joinpath('rhcos1', '47.83.202107261211-0.commitmeta.json').read_text()) + rpm_defs = yaml.safe_load(self.respath.joinpath('rhcos1', '47.83.202107261211-0.rpm_defs.yaml').read_text()) + pkg_build_dicts = yaml.safe_load(self.respath.joinpath('rhcos1', '47.83.202107261211-0.pkg_builds.yaml').read_text()) + + rhcos_build_meta_mock.side_effect = [rhcos_meta, rhcos_commitmeta] + rhcos_build = rhcos.RHCOSBuildInspector(self.runtime, '47.83.202107261211-0', 's390x') + self.assertEqual(rhcos_build.brew_arch, 's390x') + self.assertEqual(rhcos_build.get_image_pullspec(), 'quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:d51ca4e301cfdbc98e16ace0bcbee02b143a8be9e454ce5fb196467981141f59') + + self.assertEqual(rhcos_build.stream_version, '4.7') + self.assertEqual(rhcos_build.get_rhel_base_version(), 8) + + def canned_getRPM(nvra, *_, **__): + return rpm_defs[nvra] + + def canned_getBuild(build_id, *_, **__): + return pkg_build_dicts[build_id] + + self.koji_mock.getRPM.side_effect = canned_getRPM + self.koji_mock.getBuild.side_effect = canned_getBuild + + self.assertIn("util-linux-2.32.1-24.el8.s390x", rhcos_build.get_rpm_nvras()) + self.assertIn("util-linux-2.32.1-24.el8", rhcos_build.get_rpm_nvrs()) + self.assertEqual(rhcos_build.get_package_build_objects()['dbus']['nvr'], 'dbus-1.12.8-12.el8_3') + self.assertEqual(rhcos_build.get_machine_os_content_digest(), 'sha256:d51ca4e301cfdbc98e16ace0bcbee02b143a8be9e454ce5fb196467981141f59') + if __name__ == "__main__": unittest.main()