diff --git a/.github/workflows/oelint.yaml b/.github/workflows/oelint.yaml new file mode 100644 index 0000000..72f3211 --- /dev/null +++ b/.github/workflows/oelint.yaml @@ -0,0 +1,37 @@ +name: OE Lint + +on: + pull_request: + merge_group: + push: + branches: + - master + +concurrency: + group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + oelint: + runs-on: ubuntu-latest + # Advisory (non-blocking) for now. Released oelint-adv still reports known + # false positives that our upstream fixes remove but which are not in a + # release yet: + # * oelint-adv #889 - gomod SRC_URI support; without it the generated + # telegraf-go-mods.inc trips ~536 srcuri* findings. + # * oelint-parser #383 - leftover-buffer drain; without it two event + # handlers trip oelint.task.docstrings. + # The findings stay visible in the job log. Once both land in nixpkgs' + # oelint-adv, drop continue-on-error to make this a blocking gate. + continue-on-error: true + steps: + - uses: ossystems/nix-actions@v1 + with: + install-nix: true # hosted runner ships no Nix + flake-check: false # this layer is not a flake + build-hosts: false # nothing local to build + build-devshells: false + # The lint shell is a plain mkShell (oelint-adv on PATH), so unlike + # the default FHS bwrap shell it runs `--command` non-interactively. + devshell: github:OSSystems/yocto-env.nix#lint + run: ./contrib/oelint/run-oelint.sh diff --git a/.oelint.cfg b/.oelint.cfg new file mode 100644 index 0000000..784f35b --- /dev/null +++ b/.oelint.cfg @@ -0,0 +1,12 @@ +# oelint-adv defaults for this layer. Auto-loaded when oelint-adv runs with this +# directory as the working directory (see contrib/oelint/run-oelint.sh). +# +# The only layer-wide suppression is oelint.var.bbclassextend: every recipe in +# this layer is target-only, so the "add BBCLASSEXTEND" suggestion never applies +# and would otherwise need a redundant inline comment on every single recipe. +# All other exceptions stay inline as '# nooelint: ' comments next to +# the finding, so new recipes are always fully linted and each exception is +# documented in place. +[oelint] +release = wrynose +suppress = oelint.var.bbclassextend diff --git a/classes/cve-filter.bbclass b/classes/cve-filter.bbclass index 75eb1e5..4729950 100644 --- a/classes/cve-filter.bbclass +++ b/classes/cve-filter.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # Copyright (c) 2024 O.S. Systems Software LTDA. # Usage Instructions for the Yocto CVE Filter Class @@ -18,7 +19,7 @@ # The cve-filter class provides several configurable variables: -# CVE_FILTER_PREVIOUS_FILE: Specifies the previous version of +# CVE_FILTER_PREVIOUS_FILE: Specifies the previous version of # the CVE JSON file. If no file is provided, only the current # file will be considered. # Default: empty @@ -29,7 +30,7 @@ # Example: "1.0.0" # Default: "0.0.0" -# CVE_FILTER_MARKDOWN_FILE_NAME: Specifies the name of the +# CVE_FILTER_MARKDOWN_FILE_NAME: Specifies the name of the # output Markdown file containing the list of detected CVEs. # Default: "${IMAGE_NAME}.md" @@ -96,10 +97,12 @@ python do_cve_filter (){ bb.plain("DONE!!") } +do_cve_filter[doc] = "Compare the image CVE report against a previous version and emit a filtered Markdown summary of the new CVEs." addtask cve_filter after do_rootfs before do_image ROOTFS_POSTPROCESS_COMMAND:prepend = "link_cvefilter_markdownfile; " +link_cvefilter_markdownfile[doc] = "Create a stable-named symlink to the CVE filter Markdown report in the deploy directory." link_cvefilter_markdownfile () { ln -sf ${CVE_FILTER_MARKDOWN_FILE_NAME} ${IMGDEPLOYDIR}/${IMAGE_LINK_NAME}.md } diff --git a/classes/deploy-license-manifest.bbclass b/classes/deploy-license-manifest.bbclass index 2c4c914..a14c0f5 100644 --- a/classes/deploy-license-manifest.bbclass +++ b/classes/deploy-license-manifest.bbclass @@ -1,6 +1,8 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless ROOTFS_POSTPROCESS_COMMAND += "deploy_license_manifest;" IMAGE_POSTPROCESS_COMMAND += "link_license_manifest;" +deploy_license_manifest[doc] = "Copy the image license manifest into the deploy directory and generate a CSV variant." deploy_license_manifest () { if [ -e "${LICENSE_DIRECTORY}/${IMAGE_NAME}/license.manifest" ]; then cp ${LICENSE_DIRECTORY}/${IMAGE_NAME}/license.manifest ${IMGDEPLOYDIR}/${IMAGE_NAME}.license_manifest @@ -8,6 +10,7 @@ deploy_license_manifest () { fi } +link_license_manifest[doc] = "Create stable-named symlinks to the deployed license manifest and its CSV variant." link_license_manifest () { if [ -e "${IMGDEPLOYDIR}/${IMAGE_NAME}.license_manifest" ]; then ln -sf ${IMAGE_NAME}.license_manifest ${IMGDEPLOYDIR}/${IMAGE_LINK_NAME}.license_manifest diff --git a/classes/easysplash-animation.bbclass b/classes/easysplash-animation.bbclass index 8c39536..3cf9940 100644 --- a/classes/easysplash-animation.bbclass +++ b/classes/easysplash-animation.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # -*- python -*- # easysplash-animation.bbclass allows for easy packaging of EasySplash # animation packages. diff --git a/classes/image-license-checker.bbclass b/classes/image-license-checker.bbclass index 8cadcc9..88bb92c 100644 --- a/classes/image-license-checker.bbclass +++ b/classes/image-license-checker.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # Copyright (c) 2018 Arm Limited and Contributors. All rights reserved. # # SPDX-License-Identifier: MIT @@ -43,7 +44,6 @@ IMAGE_LICENSE_CHECKER_ROOTFS_DENYLIST ?= "" IMAGE_LICENSE_CHECKER_NON_ROOTFS_DENYLIST ?= "" - def bad_license(d, license, denylist): """ Check if a license string is denylisted. The license string will be @@ -134,9 +134,9 @@ python check_rootfs_licenses() { if bad_packages: bb.fatal("Packages have denylisted licenses: {}".format(", ".join(bad_packages))) } +check_rootfs_licenses[doc] = "Fail the build if any package installed on the rootfs has a denylisted license." ROOTFS_POSTPROCESS_COMMAND:prepend = "check_rootfs_licenses; " - python check_deploy_licenses() { """ Check recipes that deploy files used in an image (e.g. U-Boot) for @@ -153,4 +153,5 @@ python check_deploy_licenses() { if bad_recipes: bb.fatal("Deployed image dependencies have denylisted licenses: {}".format(", ".join(bad_recipes))) } +check_deploy_licenses[doc] = "Fail the build if any recipe deploying files into the image has a denylisted license." IMAGE_POSTPROCESS_COMMAND:prepend = "check_deploy_licenses; " diff --git a/classes/layerdirs.bbclass b/classes/layerdirs.bbclass index 0350cdd..02e45b0 100644 --- a/classes/layerdirs.bbclass +++ b/classes/layerdirs.bbclass @@ -10,6 +10,7 @@ def save_layerdirs(d): for layername in (l.getVar('BBFILE_COLLECTIONS', True) or '').split(): d.setVar('LAYERDIR_%s' % layername, layerpath) +cfg_save_layerdirs[doc] = "Record each layer's directory in LAYERDIR_ at config-parse time." python cfg_save_layerdirs () { save_layerdirs(d) } diff --git a/classes/mirrors.bbclass b/classes/mirrors.bbclass index 2ffa83d..68ae9a6 100644 --- a/classes/mirrors.bbclass +++ b/classes/mirrors.bbclass @@ -1,21 +1,23 @@ +# nooelint: oelint.vars.bbvars.PREMIRRORS set here on purpose: this is the project mirror class PREMIRRORS:append = " \ -git://sources.redhat.com/ git://sourceware.org/ \n\ + git://sources.redhat.com/ git://sourceware.org/ \ " +# nooelint: oelint.vars.bbvars.MIRRORS set here on purpose: this is the project mirror class MIRRORS += "\ -${KERNELORG_MIRROR}/ https://kernel.googlesource.com/ \n\ -${KERNELORG_MIRROR}/ http://mirror.nexcess.net/kernel.org/ \n\ -${KERNELORG_MIRROR}/ http://mirror.gbxs.net/pub/ \n\ -${APACHE_MIRROR}/ http://archive.apache.org/dist/ \n\ -${DEBIAN_MIRROR}/ ftp://archive.debian.org/debian/pool/ \n\ -git://git.kernel.org/pub/ http://mirror.nexcess.net/kernel.org/ \n\ -\ -(ftp|https?)://.*/.* http://autobuilder.yoctoproject.org/sources/ \n\ -(ftp|https?)://.*/.* http://sources.openembedded.org/ \n\ -(ftp|https?)://.*/.* http://www.angstrom-distribution.org/unstable/sources/ \n\ -\ -(cvs|svn|git|gitsm|hg|bzr|osc|p4|svk)://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n\ -(cvs|svn|git|gitsm|hg|bzr|osc|p4|svk)://.*/.* http://autobuilder.yoctoproject.org/sources/ \n\ -(cvs|svn|git|gitsm|hg|bzr|osc|p4|svk)://.*/.* http://sources.openembedded.org/ \n\ -(cvs|svn|git|gitsm|hg|bzr|osc|p4|svk)://.*/.* http://www.angstrom-distribution.org/unstable/sources/ \n\ + ${KERNELORG_MIRROR}/ https://kernel.googlesource.com/ \ + ${KERNELORG_MIRROR}/ http://mirror.nexcess.net/kernel.org/ \ + ${KERNELORG_MIRROR}/ http://mirror.gbxs.net/pub/ \ + ${APACHE_MIRROR}/ http://archive.apache.org/dist/ \ + ${DEBIAN_MIRROR}/ ftp://archive.debian.org/debian/pool/ \ + git://git.kernel.org/pub/ http://mirror.nexcess.net/kernel.org/ \ + \ + (ftp|https?)://.*/.* http://autobuilder.yoctoproject.org/sources/ \ + (ftp|https?)://.*/.* http://sources.openembedded.org/ \ + (ftp|https?)://.*/.* http://www.angstrom-distribution.org/unstable/sources/ \ + \ + (cvs|svn|git|gitsm|hg|bzr|osc|p4|svk)://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \ + (cvs|svn|git|gitsm|hg|bzr|osc|p4|svk)://.*/.* http://autobuilder.yoctoproject.org/sources/ \ + (cvs|svn|git|gitsm|hg|bzr|osc|p4|svk)://.*/.* http://sources.openembedded.org/ \ + (cvs|svn|git|gitsm|hg|bzr|osc|p4|svk)://.*/.* http://www.angstrom-distribution.org/unstable/sources/ \ " diff --git a/classes/ossystems-distro-version.bbclass b/classes/ossystems-distro-version.bbclass index 56d7e9d..a91dd9e 100644 --- a/classes/ossystems-distro-version.bbclass +++ b/classes/ossystems-distro-version.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # -*- python -*- # ossystems-distro-version.bbclass provides a DISTRO_VERSION variable # that can be used to identify the release of a product. diff --git a/classes/ossystems-factory-defaults-base.bbclass b/classes/ossystems-factory-defaults-base.bbclass index 975c2ae..399a216 100644 --- a/classes/ossystems-factory-defaults-base.bbclass +++ b/classes/ossystems-factory-defaults-base.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless OSSYSTEMS_FACTORY_DEFAULTS_DIR ?= "${datadir}/factory-defaults" OSSYSTEMS_FACTORY_DEFAULTS_FILES ?= "" OSSYSTEMS_FACTORY_DEFAULTS_HOOKS ?= "" diff --git a/classes/ossystems-factory-defaults.bbclass b/classes/ossystems-factory-defaults.bbclass index f3c3a06..58b342c 100644 --- a/classes/ossystems-factory-defaults.bbclass +++ b/classes/ossystems-factory-defaults.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # Copyright (c) 2015-2020 O.S. Systems Software LTDA. # # The ossystems-factory-defaults class provides some variables that diff --git a/classes/ossystems-onsite-only-recipe-handler.bbclass b/classes/ossystems-onsite-only-recipe-handler.bbclass index bbde061..4de6603 100644 --- a/classes/ossystems-onsite-only-recipe-handler.bbclass +++ b/classes/ossystems-onsite-only-recipe-handler.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # -*- python -*- # ossystems-onsite-only-recipe-handler.bbclass # Copyright (C) 2015-2020 O.S. Systems Software Ltda. All Rights Reserved @@ -43,11 +44,13 @@ def ossystems_onsite_only_recipe_check(d): raise bb.parse.SkipPackage("O.S. Systems OnSite-Only Recipes handler: recipe skipped.") addhandler ossystems_onsite_only_recipe_eventhandler +ossystems_onsite_only_recipe_eventhandler[doc] = "Disable on-site-only recipes at ConfigParsed when building off-site." python ossystems_onsite_only_recipe_eventhandler() { if bb.event.getName(e) == "ConfigParsed": ossystems_onsite_only_recipe_handler(e.data) } +# nooelint: oelint.task.noanonpython required to SkipPackage per-recipe at parse time python () { ossystems_onsite_only_recipe_check(d) } diff --git a/classes/ossystems-srcrev-handler.bbclass b/classes/ossystems-srcrev-handler.bbclass index 6ec45fe..eae13c3 100644 --- a/classes/ossystems-srcrev-handler.bbclass +++ b/classes/ossystems-srcrev-handler.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # -*- python -*- # ossystems-srcrev-handler.bbclass # Copyright (C) 2013, 2014 O.S. Systems Software Ltda. All Rights Reserved @@ -52,6 +53,7 @@ def ossystems_srcrev_handler(d): d.setVar("SRCREV:pn-%s" % pkg, rev) addhandler ossystems_srcrev_eventhandler +ossystems_srcrev_eventhandler[doc] = "Apply the project per-recipe SRCREV overrides at ConfigParsed." python ossystems_srcrev_eventhandler() { if bb.event.getName(e) == "ConfigParsed": ossystems_srcrev_handler(e.data) diff --git a/classes/release-bundle-generation.bbclass b/classes/release-bundle-generation.bbclass index aaadfed..6f718bb 100644 --- a/classes/release-bundle-generation.bbclass +++ b/classes/release-bundle-generation.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # -*- python -*- # release-bundle-generation.bbclass # @@ -45,6 +46,7 @@ do_build[recrdeptask] = "" do_release_bundle_finalize[depends] += "${@' '.join('%s:do_collect_recipe_source' % recipe for recipe in d.getVar('RELEASE_BUNDLE_RECIPES_WITH_SOURCE').split())}" addtask collect_platform_source before do_release_bundle_finalize +do_collect_platform_source[doc] = "Garbage-collect and copy the platform source tree (.repo, sources, setup-environment) into the release bundle workdir." do_collect_platform_source[cleandirs] = "${RELEASE_BUNDLE_WORKDIR}" do_collect_platform_source[depends] += "repo-native:do_populate_sysroot " do_collect_platform_source[doc] = "Collect platform repositories into the release bundle work directory." @@ -79,6 +81,7 @@ fakeroot tar_release_bundle() { } addtask release_bundle_finalize after do_unpack do_collect_platform_source before do_build +do_release_bundle_finalize[doc] = "Assemble the final self-extracting release bundle from the collected sources and download cache." do_release_bundle_finalize[dirs] = "${RELEASE_BUNDLE_WORKDIR}/download" do_release_bundle_finalize[depends] += "pbzip2-native:do_populate_sysroot " do_release_bundle_finalize[doc] = "Finalize and emit the self-extracting release bundle." diff --git a/classes/release-bundle.bbclass b/classes/release-bundle.bbclass index 19d99ef..8c97835 100644 --- a/classes/release-bundle.bbclass +++ b/classes/release-bundle.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless # -*- python -*- # release-bundle.bbclass # diff --git a/classes/restore-dumped-headrevs.bbclass b/classes/restore-dumped-headrevs.bbclass index 7b7ec18..3c7c4ad 100644 --- a/classes/restore-dumped-headrevs.bbclass +++ b/classes/restore-dumped-headrevs.bbclass @@ -1,3 +1,4 @@ +# nooelint: oelint.bbclass.underscores oelint.file.inlinesuppress_na no EXPORT_FUNCTIONS here, so the dash is harmless def copy_persist_domain(d, domain, other_db_path, restore=False): import contextlib @@ -18,6 +19,7 @@ def restore_headrevs(d, dump_db_path): DUMP_HEADREVS_DB ?= '${COREBASE}/saved_persist_data.db' DUMP_HEADREVS_STAMP ?= '${STAMP}.restored_headrevs' +restore_dumped_headrevs[doc] = "Restore dumped BB_URI_HEADREVS persistent data once, at config-parse time, when a dump database is present." python restore_dumped_headrevs() { stamp_path = d.getVar('DUMP_HEADREVS_STAMP', True) dump_db_path = d.getVar('DUMP_HEADREVS_DB', True) diff --git a/contrib/oelint/run-oelint.sh b/contrib/oelint/run-oelint.sh new file mode 100755 index 0000000..facd2a9 --- /dev/null +++ b/contrib/oelint/run-oelint.sh @@ -0,0 +1,37 @@ +#!/bin/sh +# Run oelint-adv over meta-ossystems-base. Requires oelint-adv on PATH. +# +# All linter configuration is declarative and lives at the layer root, so this +# script only has to enumerate the files (oelint-adv does not recurse into +# directories): +# * .oelint.cfg - sets '--release' and the single layer-wide +# suppression (oelint.var.bbclassextend); auto-loaded +# from the working directory +# * oelint.constants.json - the layer constant-DB additions, auto-loaded by +# oelint-adv from the layer root (no --constantmods) +# +# Aside from oelint.var.bbclassextend (which never applies to a target-only +# layer), exceptions stay inline as '# nooelint: ' comments next to the +# finding, so new recipes are always fully linted and each exception is +# documented in place (and flagged by oelint.file.inlinesuppress_na once stale). +set -eu + +# Neutralise CDPATH so 'cd' below can't print or jump to an unexpected dir. +unset CDPATH + +here=$(cd -- "$(dirname -- "$0")" && pwd) +layer=$(cd -- "$here/../.." && pwd) + +# Run from the layer root so '.oelint.cfg' (probed in the working directory) and +# 'oelint.constants.json' (probed in the file's layer root) are both picked up. +cd -- "$layer" + +files=$(find . \ + \( -name '*.bb' -o -name '*.bbappend' -o -name '*.bbclass' -o -name '*.inc' \) \ + | sort) + +# Run serially: oelint-adv's parallel workers race while loading the layer +# constants, intermittently emitting false "unknown variable/override" findings. +# Serial execution is deterministic. Pass '--jobs N' to override. +# shellcheck disable=SC2086 +exec oelint-adv --jobs 1 "$@" $files diff --git a/files/license-hashes.csv b/files/license-hashes.csv new file mode 100644 index 0000000..ff54f2f --- /dev/null +++ b/files/license-hashes.csv @@ -0,0 +1,89 @@ +017cec6623be1ac901a1235a38221458,BSD-2-Clause +04424bc6f5a5be60691b9824d65c2ad8,Apache-2.0 +09ece85f3c312a63b522bfc6ebd44943,BSD-3-Clause +0bdce43b16cd5c587124d6f274632c87,MIT +0dd18b0da66d7495c1854498b25ad986,BSD-3-Clause +117a75021599a6a627f538a5c4c26156,Apache-2.0 +1269f40c0d099c21a871163984590d89,Apache-2.0 +13cea479df204c85485b5db6eb1bc9d5,BSD-3-Clause +1694f6ca1fdc81a15c1fd408542d47e6,MPL-2.0 +1bdf5d819f50f141366dabce3be1460f,BSD-2-Clause +1e8b7dc8b906737639131047a590f21d,BSD-3-Clause +2460814a2b25a7277556c2d89de915d1,BSD-3-Clause +24dad3abbe7a8f390afc8ab967bfefa7,Apache-2.0 +259f3802525423b1a33efb1b85f64e18,BSD-3-Clause +2604a98416f52ae5aaceb3630431020c,BSD-3-Clause +27ef03aa2da6e424307f102e8b42621d,Apache-2.0 +2925e7910462fe55fcd3a652c4cf2a2d,MPL-2.0 +29f156828ca5f2df0d1c12543a75f12a,BSD-3-Clause +2ade771c7d7211af507864e8dd520529,Apache-2.0 +2ba6b7bd91e16af46a856eca87db2504,BSD-3-Clause +2d6fc0e85c3f118af64c85a78d56d3cf,Apache-2.0 +30899bc7061301c842b697aaa4bb0ecc,BSD-3-Clause +34400b68072d710fecd0a2940a0d1658,Apache-2.0 +44714fe40638e49453cfb438ddd301f1,BSD-3-Clause +45d265a0c4de9788288c6d1dc5055083,MPL-2.0 +4859e97a9c7780e77972d989f0823f28,Apache-2.0 +4ac66f7dea41d8d116cb7fb28aeff2ab,BSD-3-Clause +4c728948788b1a02f33ae4e906546eef,BSD-3-Clause +4f2d8e6bee7c0a27a06df40c6220e667,BSD-3-Clause +545d3f23616dee7495323aeb0b098df3,Apache-2.0 +56ba9a7139fb128d57668c048a3231dd,BSD-3-Clause +58103aa5ea1ee9b7a369c9c4a95ef9b5,BSD-2-Clause +591778525c869cdde0ab5a1bf283cd81,BSD-3-Clause +617a50fad37d002a452934970a6a8a97,BSD-3-Clause +6455b01b6f20e76eda9400c5951c7d65,Apache-2.0 +652ef7590e03427663a9b9d1318a9fbb,MIT +65d26fcc2f35ea6a181ac777e42db1ea,MPL-2.0 +6809686fee171a5b91c0fa6a6600ff14,Apache-2.0 +68418a2b5d025376b21bcbd2d9289f22,MIT +6f275fd868aa0247702f69e646c3b325,BSD-3-Clause +714beb7325ffa89d5a68d936a3bb04e5,BSD-2-Clause +8a4d31d85177e024ae8df92c9bc2c9d3,BSD-2-Clause +9046099156f93a7f0ac340571476a58b,Apache-2.0 +94d9bbe24b03be19e69b3e9e8e7521a1,BSD-3-Clause +95d4102f39f26da9b66fee5d05ac597b,BSD-3-Clause +96ae735ca1b4dcdb6b26f4ca4b8ba645,BSD-3-Clause +9740d093a080530b5c5c6573df9af45a,Apache-2.0 +97442d133cf61b7ad91e38f39c5d8389,Apache-2.0 +9d210c7471ce08e3db5261f33bf8fce6,BSD-3-Clause +9e40c7725e55fa8f61a69abf908e2c6f,Apache-2.0 +9ebf09575297c1d970141b1562ed9f27,Apache-2.0 +a20b5c468e726e81fc47c73f16622671,BSD-3-Clause +a21a066a96199e1d9d1d6c27fa0f655b,BSD-2-Clause +a250e5ac3848f2acadb5adcb9555c18b,Apache-2.0 +aa2a9dc436df7ea8bd6092f04066362e,MIT +aaba05447288333a478938c7e45c0cb2,BSD-2-Clause +b32b347fe7ed4541e05033e8b0b29001,BSD-3-Clause +b48d4a6f448d246b1fe4e0600e79d0bf,ISC +b5d30dd5bc47d1b56b678ac06dead1c7,Apache-2.0 +b8b79c7d4cda128290b98c6a21f9aac6,BSD-3-Clause +bb2a2f2b7222607afeac4f5a31aca701,Apache-2.0 +bdc234595bc2fe370918f5de5077c8e9,BSD-3-Clause +bdfca4cb0874071cc3e42d2ae3b05a77,Apache-2.0 +bffc21c92b5f3adcbbb06f8e0067e786,MPL-2.0 +c30eee78985cf2584cded5f89ba3d787,BSD-3-Clause +c38914c9a7ab03bb2b96d4baaee10769,BSD-3-Clause +c4dac399c2cb8794cc72e762c9f07263,BSD-3-Clause +c510a2a01572b82d27f28fd4d02ca318,BSD-3-Clause +c7a6808207397b21163fe9167c375c09,MIT +cad2f12165769bbebe1d9235ea7dfbd6,MPL-2.0 +d21d25475326cf7f1b36eef8c9789801,MIT +d3c9ea087d1f492bcd340739bcfe98a7,BSD-3-Clause +d4f134d653a61aec28549bee8cbb97d7,MIT +d53379b9dfa1d07d943d8741dc39ae1f,Apache-2.0 +d8d1d59c60e60e8627fcd1c350a5c904,Apache-2.0 +d8f14631a6e5da377545cfaed3b67f55,BSD-3-Clause +db7dfd3c609df968396fa379c3851eb5,MIT +dc2f3ee49116a594755b22b853cc8b6b,MPL-2.0 +dcdb33474b60c38efd27356d8f2edec7,EPL-2.0 +e419fb05c99af03dfdbd3be8478cbc4e,MIT +e828fb91fe88d9e5d620842cf8bd81b0,BSD-3-Clause +e848d080178fb2d08b67acc5ba80b9fd,MIT +e8aca590db3d9304f507bcd5fe4de5a0,BSD-3-Clause +e9a2ebb8de779a07500ddecca806145e,BSD-2-Clause +ecf8a8a60560c35a862a4a545f2db1b3,BSD-2-Clause +f399e127495f9783cfbe2b3b2802555f,BSD-2-Clause +f3d4ee94647102ca0f4eca56554b12be,Apache-2.0 +fabff3dab4b5a6c3e29611c973dc3df9,BSD-3-Clause +ff13e03bb57bf9c52645f2f942afa28b,BSD-3-Clause diff --git a/oelint.constants.json b/oelint.constants.json new file mode 100644 index 0000000..61f2781 --- /dev/null +++ b/oelint.constants.json @@ -0,0 +1,26 @@ +{ + "comment": "Layer-specific oelint-adv constant DB. oelint-adv auto-loads 'oelint.constants.json' from the layer root (the directory holding conf/layer.conf) whenever a file from this layer is linted, so no --constantmods is needed. These are real variables/overrides oelint cannot know about when run standalone (outside a full bitbake build).", + "variables": { + "known": [ + "OPENGL_WINSYS", + "OS_RELEASE_FIELDS", + "OSSYSTEMS_FACTORY_DEFAULTS_DIR", + "OSSYSTEMS_FACTORY_DEFAULTS_FILES", + "OSSYSTEMS_FACTORY_DEFAULTS_HOOKS", + "OSSYSTEMS_FACTORY_DEFAULTS_HOOKS_DIR", + "OSSYSTEMS_FACTORY_DEFAULTS_POSTINST_FILES", + "OSSYSTEMS_FACTORY_DEFAULTS_RUNTIME_DIR", + "RELEASE_BUNDLE_LAYERNAME", + "RELEASE_BUNDLE_RECIPES_WITH_SOURCE", + "VERSION" + ] + }, + "replacements": { + "distros": [ + "oel" + ], + "machines": [ + "arm" + ] + } +} diff --git a/recipes-devtools/telegraf/telegraf-go-mods.inc b/recipes-devtools/telegraf/telegraf-go-mods.inc new file mode 100644 index 0000000..cfb3bd4 --- /dev/null +++ b/recipes-devtools/telegraf/telegraf-go-mods.inc @@ -0,0 +1,543 @@ + +# This file has been generated by go-mod-update-modules.bbclass +# +# Do not modify it by hand, as the contents will be replaced when +# running the update-modules task. + +SRC_URI += "\ + gomod://cel.dev/expr;version=v0.25.1;sha256sum=12652bea2461aa29004d23052d3a08cb5911ab0a652469ef5da6efb37c12ee87 \ + gomod://cloud.google.com/go;version=v0.123.0;sha256sum=e9c9509cf75beb9516795eeb113d01a20e2a71496a66ed736b6ed2a516878d52 \ + gomod://cloud.google.com/go/auth;version=v0.20.0;sha256sum=06371584193bbb88a8f2c2931d85efaf45666cc52643be5b8aada6b053672f3a \ + gomod://cloud.google.com/go/auth/oauth2adapt;version=v0.2.8;sha256sum=4cd64264bafc4dd05f645452d6e1485adf92309130bd82b4c595db10cd534963 \ + gomod://cloud.google.com/go/bigquery;version=v1.77.0;sha256sum=fd920ae17d05e4ad50ed7f6cbbf6711a54570277a1f62fd073a9ada136432ebf \ + gomod://cloud.google.com/go/compute/metadata;version=v0.9.0;sha256sum=f97e35d1c96239b8574054a77e312c95d2c82a89c21daf46ffeaea6d5fc59eca \ + gomod://cloud.google.com/go/iam;version=v1.7.0;sha256sum=a3d9f0ebc3baf0cda13db7be112508b19c3b8dee58c2176997a8aadd50ecc87a \ + gomod://cloud.google.com/go/monitoring;version=v1.28.0;sha256sum=3a7450b9cfc96e3ddcc1830d2bdd01fc47f5668edc816ee7ba0088fdeab5352e \ + gomod://cloud.google.com/go/pubsub/v2;version=v2.6.0;sha256sum=0f972dbaf2c8ed9925c5beac484fd68b77ce7ecf79a5ae2b7755c3e105c134d5 \ + gomod://cloud.google.com/go/storage;version=v1.62.1;sha256sum=2c8a2520ef58c3d2a6e9e0392ec2cea37adb17db4e00c903d48415fd809397f8 \ + gomod://code.cloudfoundry.org/clock;version=v1.2.0;sha256sum=56e68a1ab61265ef9f5b4b7a9cd9395d789865eba92694b8fe0d611077551e2e \ + gomod://collectd.org;version=v0.6.0;sha256sum=2450e566176eb73bf61966e31dbab8141f0414e8588b12fccca2b17c6ebfdf34 \ + gomod://dario.cat/mergo;version=v1.0.2;sha256sum=67d2e9d83ca57d3a8ce1a0e0e626a7c03753b3966b58b41b95e97ca4e7b2c640 \ + gomod://filippo.io/edwards25519;version=v1.2.0;sha256sum=98f2d3ca9b88daa031b0fb2fb521b7ea386af1fed61b6f445a20bef7fa381c17 \ + gomod://github.com/99designs/keyring;version=v1.2.2;sha256sum=7204ea1194e7835a02d9f8f3cf1ba30dce143dd9a3353ead71a46ffcd418d7be \ + gomod://github.com/Azure/azure-amqp-common-go/v4;version=v4.2.0;sha256sum=81477dc1b304b47ee6521e0a1915130121a40c6072082c6511cc0dfe1b1e33cb \ + gomod://github.com/Azure/azure-event-hubs-go/v3;version=v3.6.2;sha256sum=d5a39d72aa5be37fd61e3091cac9eb81b5a9efb01dbbfdf486418ac51f87af98 \ + gomod://github.com/Azure/azure-kusto-go/azkustodata;version=v1.2.2;sha256sum=6d17f4dc978809009400e99e790a79cdaf85da1074d04b2531b3897ba41f6566 \ + gomod://github.com/Azure/azure-kusto-go/azkustoingest;version=v1.2.2;sha256sum=aed525555dc2b483b36807afbd1eb5be3e775ffcad56671d3b594a8e9740e62d \ + gomod://github.com/Azure/azure-sdk-for-go;version=v68.0.0+incompatible;sha256sum=c40d67ce49f8e2bbf4ca4091cbfc05bd3d50117f21d789e32cfa19bdb11ec50c \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/azcore;version=v1.21.1;sha256sum=bce75c3fd1221d3d265127e1657046d343aed468e0060fd3ee61d33d63c54b3d \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/azidentity;version=v1.13.1;sha256sum=98012cfee26379a030c430ee2218c396201a9f9a35f17867c6f5c8a7cb6839a5 \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/data/aztables;version=v1.4.1;sha256sum=1fb7b985e6bb3c2a50011239526b8dda8242238989fe781932c0edd38b19715b \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/internal;version=v1.12.0;sha256sum=27800de3838500d4f3a0aaacea147fb49e0da3a7a6079a595c3e9d42df116ecf \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/messaging/azeventhubs/v2;version=v2.0.2;sha256sum=2ae1266edd933c458d95b3aeeb487474ee1a3d5a300c5829bbad461f46972047 \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor;version=v0.11.0;sha256sum=97ad4d0a82444b35ce027cf64e2fe1f97e4fc6424165a13892cfe51bf599cda3 \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources;version=v1.2.0;sha256sum=3bcaabeb817a212ddf0d5b0b3bf0cb2b85a2c578d273f319e7c1eb5a43d85b89 \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/storage/azblob;version=v1.6.3;sha256sum=00f054b406a5992f436c059cdcc8779edd36f0e24a81024eecae56215728c82e \ + gomod://github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue;version=v1.0.1;sha256sum=af49e04880cddfd519df3cdae2142f59a0e3f4b26a97a5613ebfd64a4dd174ad \ + gomod://github.com/Azure/go-amqp;version=v1.5.0;sha256sum=8c5d4d85a3bd8b426e801472061303ac46adc9f492592d837587c286d25ca312 \ + gomod://github.com/Azure/go-autorest;version=v14.2.0+incompatible;sha256sum=89ac786da5b108e594bb1fbbf8f39a822fc1d994be1ff7cc6e860e8b45f3d80c \ + gomod://github.com/Azure/go-autorest/autorest;version=v0.11.30;sha256sum=06d6428682506f7febcac2d1c3919f9350393124b82dbdc9320e6690c12aff23 \ + gomod://github.com/Azure/go-autorest/autorest/adal;version=v0.9.24;sha256sum=610f3610856de519a028a6023039df0f9807485132bf56b8c3d4d3326991d4bf \ + gomod://github.com/Azure/go-autorest/autorest/azure/auth;version=v0.5.13;sha256sum=b42a1285d8efb316cfade5041a6a3eb9ab34c89318952424ced3c06687539c74 \ + gomod://github.com/Azure/go-autorest/autorest/azure/cli;version=v0.4.6;sha256sum=cdc19569bc0dd13c3e52dc9babb064a50d0cf15bf5806357b31ba27b6e52a6be \ + gomod://github.com/Azure/go-autorest/autorest/date;version=v0.3.0;sha256sum=7b59c0421eaf8549f20d17aab7e3e4621e1798de1119dac65a04c110d110d64d \ + gomod://github.com/Azure/go-autorest/autorest/to;version=v0.4.0;sha256sum=d5b92f83195b4cdc690d1f015a52678ba1300485049ef27489b112a1dc056e93 \ + gomod://github.com/Azure/go-autorest/autorest/validation;version=v0.3.1;sha256sum=70c6a2f246af440cb891028ffe32546fe31de53ffab5f2f93f6c1652efd549c3 \ + gomod://github.com/Azure/go-autorest/logger;version=v0.2.1;sha256sum=90c84e126b503027f69d232f4ce5758ae01d08ea729c71539ebff851f2477b49 \ + gomod://github.com/Azure/go-autorest/tracing;version=v0.6.0;sha256sum=b7296ba64ecae67c83ae1c89da47c6f65c2ff0807027e301daccab32673914b3 \ + gomod://github.com/Azure/go-ntlmssp;version=v0.1.1;sha256sum=3b80d75f2e559d6568163e6da8119cb7118fc60288b0f62c80829ea855e1b4e5 \ + gomod://github.com/AzureAD/microsoft-authentication-library-for-go;version=v1.7.1;sha256sum=1b92f987ee0610e93a05b926898ae13e0fa46ed10b78c44eb8eeba581ec2a9b6 \ + gomod://github.com/BurntSushi/toml;version=v1.6.0;sha256sum=01f03d6c3f4bfee108bda3202407b54ac0c295b8302a1315512f12ac05011fd8 \ + gomod://github.com/ClickHouse/ch-go;version=v0.71.0;sha256sum=b5717ea4f9f360dfac19637bde681072a2c70c5a279f0f9f848406cdd6c5949b \ + gomod://github.com/ClickHouse/clickhouse-go/v2;version=v2.46.0;sha256sum=106a822f1fd1a052f000cb69298fdf14b6ec6a77cbecdc4dd991902a55c1b08d \ + gomod://github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp;version=v1.31.0;sha256sum=60558bb0633e963a442aaf8492162e7bc2a7817fa7b5a07ffe83ebd2ee8463c2 \ + gomod://github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric;version=v0.55.0;sha256sum=f76ca1fa726654948a0ac1035bde302c370b07830c5c1549f66d2f11c8a88ee9 \ + gomod://github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping;version=v0.55.0;sha256sum=d7f5f7dd65f511941db0dd77c37701ee2cab3540f96896399194f786f5317e5e \ + gomod://github.com/IBM/nzgo/v12;version=v12.0.12;sha256sum=1ff0d6188ed79f08d6700b24fbec46891afa49026e201ce54c133c14570c20d5 \ + gomod://github.com/IBM/sarama;version=v1.48.0;sha256sum=be5379a495713ad2f3ff796d1a2ae2133193821f0e086a3ab2a30ef0012fad0f \ + gomod://github.com/Masterminds/goutils;version=v1.1.1;sha256sum=ef8778a20c37e98a92e3b1db5ab027cc201743a2f5bfb26ba228bf0515e20b48 \ + gomod://github.com/Masterminds/semver;version=v1.5.0;sha256sum=15f6b54a695c15ffb205d5719e5ed50fab9ba9a739e1b4bdf3a0a319f51a7202 \ + gomod://github.com/Masterminds/semver/v3;version=v3.5.0;sha256sum=2cda916821eedb0e1d7ac45d80b6cb78320b035f0f77272ff18d082b7cd90713 \ + gomod://github.com/Masterminds/sprig;version=v2.22.0+incompatible;sha256sum=1b4d772334cc94e5703291b5f0fe4ac4965ac265424b1060baf18ef5ff9d845c \ + gomod://github.com/Masterminds/sprig/v3;version=v3.3.0;sha256sum=c731370f7601711d1df9b4b0c9bb8488fc381b32fd3e7de97a03673e8287b719 \ + gomod://github.com/Max-Sum/base32768;version=v0.0.0-20230304063302-18e6ce5945fd;sha256sum=884da69f365e677c1f1aa18e5404ae79324428c8063f61e9b5f01f29274fb997 \ + gomod://github.com/Mellanox/rdmamap;version=v1.2.0;sha256sum=3161a2b61e6e7f1c7a3e977dd118fed0331d97da5b476b78e306456366d98b27 \ + gomod://github.com/SAP/go-hdb;version=v1.16.7;sha256sum=ef8fe9f0e05563192b9c3cfba8b62045be252764a78dd74e6b68a4921c02e43a \ + gomod://github.com/abbot/go-http-auth;version=v0.4.0;sha256sum=8204bca24734f55f179dd1c0b820ae5be83151268693a147086f33cd2d4d473c \ + gomod://github.com/aerospike/aerospike-client-go/v5;version=v5.11.0;sha256sum=dd07d286000402df53bde9a076a7bcc783cf02827c041a3320bebdfbf8b386c3 \ + gomod://github.com/alecthomas/participle;version=v0.4.1;sha256sum=a628721c335438b8101e629336940ba154f37a7777589ac6878d6f888c09394a \ + gomod://github.com/alecthomas/units;version=v0.0.0-20240927000941-0f3dac36c52b;sha256sum=9a275dbb1454d52d2b868b990be424c7d31c0acf2c4a99850faf18ecb9f48b91 \ + gomod://github.com/alitto/pond;version=v1.9.2;sha256sum=df018ac9ac585fa99af11158bd4e9d1968239e57646613899259efd3db112339 \ + gomod://github.com/alitto/pond/v2;version=v2.7.1;sha256sum=173edbb47410c99b359db381d1ecd3cd14c4cabad78d71ad210eda657de779f3 \ + gomod://github.com/aliyun/alibaba-cloud-sdk-go;version=v1.63.107;sha256sum=371f328ae47e52de0f47d91804a85be791368cb87292cbdb296bb5d1cbcd3286 \ + gomod://github.com/amir/raidman;version=v0.0.0-20170415203553-1ccc43bfb9c9;sha256sum=9e36be59edd13e4a4850407e1319c49cc8ff1482f25bc211aa96b21ddec13152 \ + gomod://github.com/andybalholm/brotli;version=v1.2.1;sha256sum=83d570ec7f189deaf87376ba4f36d2e981a0dc4f706bf4d84cf11cc4efb1a857 \ + gomod://github.com/antchfx/jsonquery;version=v1.3.7;sha256sum=d375a7763fd4af12d75883dd64ba1895cbdbd55793125a4f62dd6328498f9f1d \ + gomod://github.com/antchfx/xmlquery;version=v1.5.1;sha256sum=5b28c57acb61959e52f34fa10708832a910f32e7e833d99ab2d17c3ca9b3c3ca \ + gomod://github.com/antchfx/xpath;version=v1.3.6;sha256sum=20e2e8a3e881473e1a32af1b8cdee0d94e84e637c33b05e1d9fca699a02fbdc0 \ + gomod://github.com/antithesishq/antithesis-sdk-go;version=v0.7.0-default-no-op;sha256sum=6d2161ad2a3bd484696a9044e3747f9e46113ba340df4ce403341432a87bddef \ + gomod://github.com/antlr4-go/antlr/v4;version=v4.13.1;sha256sum=2fb455ab1f46e53a3cfa678306a6e405f291b34858222db9240335c018ae9554 \ + gomod://github.com/apache/arrow/go/v15;version=v15.0.2;sha256sum=87b75aac27b395f651f232b4b89c184a6ab23a65596acc46b4efacb116f98adf \ + gomod://github.com/apache/arrow-go/v18;version=v18.6.0;sha256sum=0560173e9c2e2e8c2dbf69ad149041f09a579e8dc3a5ee4b0187db0f2d012dbe \ + gomod://github.com/apache/inlong/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-golang;version=v1.0.7;sha256sum=2e2ac64d36d73a71c2b79180b0c7e502e5315198859addee23461080942c3bd1 \ + gomod://github.com/apache/iotdb-client-go;version=v1.3.7;sha256sum=2bfa6001335ee6db62c67a90ed5992875e944f128db452dbbadba1b0a4fdc7bb \ + gomod://github.com/apache/thrift;version=v0.23.1-0.20260429145742-d2acd3c49e58;sha256sum=bd112c887fdbb76a5d064ed15cca2873c1dfaa0e1ad434e71b35880f14402dc9 \ + gomod://github.com/apapsch/go-jsonmerge/v2;version=v2.0.0;sha256sum=b5fbdf29dc23b3ce98f5215b125ccd324b7673f0e940bc122080fcf2c77bbaf7 \ + gomod://github.com/aristanetworks/glog;version=v0.0.0-20191112221043-67e8567f59f3;sha256sum=8161b674fd412587b0497864a719b3af2f608b6d494322051e87eacaf30e570d \ + gomod://github.com/aristanetworks/goarista;version=v0.0.0-20190325233358-a123909ec740;sha256sum=16903cbd03cf947899ed85e0657ad60b608a4f304e52bfa6dc16ae242c0e5414 \ + gomod://github.com/armon/go-metrics;version=v0.4.1;sha256sum=f1b9155b8635eea48fb8929934b1268bf624cec2d51fcef8b62fa4aa91e05cc9 \ + gomod://github.com/awnumar/memcall;version=v0.4.0;sha256sum=c764a4d5383c2cc52c9a3f25212f500d93caf481939265cc4a04c3928999c30a \ + gomod://github.com/awnumar/memguard;version=v0.23.0;sha256sum=ba36526e1db1f00364cc670bc7a6c6bc343ade1413d94734f8cb0ba28f7e73ca \ + gomod://github.com/aws/aws-msk-iam-sasl-signer-go;version=v1.0.4;sha256sum=cb9f7f3631b9c0ac592e91c6e3b7341b2324f232116d04ff811e3c4dc4e3535f \ + gomod://github.com/aws/aws-sdk-go-v2;version=v1.41.7;sha256sum=f9e69a0704a2d97fdd0bb8f6b97b8b41c42a1572fae8c673d32fc80beecc8d9d \ + gomod://github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream;version=v1.7.10;sha256sum=92ff491db61b3c7b9d031e65ee84fc38804e07ec1b9acb1a5db040f393065831 \ + gomod://github.com/aws/aws-sdk-go-v2/config;version=v1.32.17;sha256sum=a72a31ed8fce33b473dd0b684be8d709e64f6ef17981492541dd910403307004 \ + gomod://github.com/aws/aws-sdk-go-v2/credentials;version=v1.19.16;sha256sum=f4efe61167ef97d6c3cb5c9de373daa36aeae2a9be1668d8ffffc3d878e89a7f \ + gomod://github.com/aws/aws-sdk-go-v2/feature/ec2/imds;version=v1.18.23;sha256sum=090b0395757b407c89e80296beeecc24264b0ff7fe3337249eca3a3f056688fe \ + gomod://github.com/aws/aws-sdk-go-v2/feature/s3/manager;version=v1.17.43;sha256sum=9d66e19ef38707670be2da21b0e5d11704967455ad6ad3ca46fd11eb73d12e40 \ + gomod://github.com/aws/aws-sdk-go-v2/internal/configsources;version=v1.4.23;sha256sum=51982e61e8d403c4a397402090f72df7e4af0e635f2589077a12635a235a08e7 \ + gomod://github.com/aws/aws-sdk-go-v2/internal/endpoints/v2;version=v2.7.23;sha256sum=951917a92e725a8734202df0a8aab13c7a03efac7c26d96ddd7819f14d22a63e \ + gomod://github.com/aws/aws-sdk-go-v2/internal/v4a;version=v1.4.24;sha256sum=c7e35c4145c5d71ed4dbc45b599dee9304e9cfceb76970d65225fb4fe9771872 \ + gomod://github.com/aws/aws-sdk-go-v2/service/cloudwatch;version=v1.57.0;sha256sum=1e517d7102916afbdcc6022f4abd7624ab4461acc71542a071bf8cf210526104 \ + gomod://github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs;version=v1.73.0;sha256sum=dc2c639a0f9aa2e352cc00ad594d9e9714c627373299b65bfa230b7d08bb9cfb \ + gomod://github.com/aws/aws-sdk-go-v2/service/dynamodb;version=v1.57.3;sha256sum=b0c2711ca58bf39ffc5884b3df901bf164a795a0941f5ca724e0d98f6b860fe6 \ + gomod://github.com/aws/aws-sdk-go-v2/service/ec2;version=v1.300.0;sha256sum=fd949972f50c14127366e4c719d6a5386cc773bcace696f09fab192447f3cbe1 \ + gomod://github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding;version=v1.13.9;sha256sum=a5aa5c6d401e96238993cdfe7d2bc10bae979ae467a219afd9f2a769239fd796 \ + gomod://github.com/aws/aws-sdk-go-v2/service/internal/checksum;version=v1.9.13;sha256sum=6090625431bf8e9e0df9f4504a7ad32ca3a600602fc49e0e63a8c4d786c0165e \ + gomod://github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery;version=v1.11.23;sha256sum=b7e720e2bc9fb8d670db03ad1399eb32b08eaf9bf8e633573a1b74786e408685 \ + gomod://github.com/aws/aws-sdk-go-v2/service/internal/presigned-url;version=v1.13.23;sha256sum=9ea8387c36fb48ef7ed3c5b8c9db1b0c2a61c456feb7f0276346997743369828 \ + gomod://github.com/aws/aws-sdk-go-v2/service/internal/s3shared;version=v1.19.21;sha256sum=2dae9c3770ae9ee204e3c875796791e5a4083bc975fb517b34fb9bc2398a9b4c \ + gomod://github.com/aws/aws-sdk-go-v2/service/kinesis;version=v1.43.7;sha256sum=da8f334a8d710a8c6c7dd2ea78dbc798e301b848974e1cd02193f6a1c62635f9 \ + gomod://github.com/aws/aws-sdk-go-v2/service/s3;version=v1.97.3;sha256sum=f76abc6b0310f47bfe986e0ed6eaa31c7ab67b2e19ef260e761fbbf4e0f8dfeb \ + gomod://github.com/aws/aws-sdk-go-v2/service/signin;version=v1.0.11;sha256sum=6faac46de482e397f6d0c401078046b8d84bd11213f3a76e1536f058acd12056 \ + gomod://github.com/aws/aws-sdk-go-v2/service/sso;version=v1.30.17;sha256sum=09feabc247e03dec70f9fb8c2d1c49901d6dc6b2a064e5c4a79cf4dcdd403a1a \ + gomod://github.com/aws/aws-sdk-go-v2/service/ssooidc;version=v1.35.21;sha256sum=404f734866931f34bbdf3dd5b66a8807a500a7bb1073ea0bb8ff7063cd724d90 \ + gomod://github.com/aws/aws-sdk-go-v2/service/sts;version=v1.42.1;sha256sum=b3c95e049548d1116a0ccf034c0a0354cd30ef280223541e2cd8dd90c2e2cb11 \ + gomod://github.com/aws/aws-sdk-go-v2/service/timestreamwrite;version=v1.35.22;sha256sum=80dc4df93f3623a97300157212088687c7812f3b617041368ea5c5fb07e8724f \ + gomod://github.com/aws/smithy-go;version=v1.25.1;sha256sum=089758d35d4384f5b69d876e7cd0b1a05eaa0634cbd47f4990a9f4a2f4a7484a \ + gomod://github.com/benbjohnson/clock;version=v1.3.5;sha256sum=b615224e45f86907cfb0acc2b198dacea85ced624ed6c497ca2e7e705a53f2f9 \ + gomod://github.com/beorn7/perks;version=v1.0.1;sha256sum=25bd9e2d94aca770e6dbc1f53725f84f6af4432f631d35dd2c46f96ef0512f1a \ + gomod://github.com/bluenviron/gomavlib/v3;version=v3.3.1;sha256sum=62ef038a32567106e3627ab273f747083b75858355ccc5cb8bdd15721382552e \ + gomod://github.com/blues/jsonata-go;version=v1.5.4;sha256sum=509834c86ab091ab3eaafc070e06b82a7ca138073cea193fb6f3982d470750fb \ + gomod://github.com/bmatcuk/doublestar/v3;version=v3.0.0;sha256sum=823d083499d5e866817eaa76d25ba7c87b92968a8b648c6b1f1bedde1bb4bad7 \ + gomod://github.com/boschrexroth/ctrlx-datalayer-golang;version=v1.3.1;sha256sum=52423419015a7f0f358ca93d978037cb1b1e41a1d5e5fbbc6a025f92eeee61fb \ + gomod://github.com/brutella/dnssd;version=v1.2.14;sha256sum=dfd588d32ec61a1e2263e313cfee9ade088699611cf48bba64ead871453a2272 \ + gomod://github.com/bufbuild/protocompile;version=v0.14.1;sha256sum=e91f690874eeec2dce2c24b777a79b0569501b4c5014e0360ad746566cf719ef \ + gomod://github.com/bwmarrin/snowflake;version=v0.3.0;sha256sum=c5652a9614044c97d7c648c8ff7d554b18ca9adb8e1dac340192e264596e5b47 \ + gomod://github.com/caio/go-tdigest;version=v3.1.0+incompatible;sha256sum=199fe870de5d6f8286b67dddd6aba935ab9565c3a9852cb68ab79d6a170b1332 \ + gomod://github.com/caio/go-tdigest/v4;version=v4.0.1;sha256sum=722ad72836e62b9ca41bf0ee91b1839744b0f109aba0d884c6596b108a040908 \ + gomod://github.com/cenkalti/backoff;version=v2.2.1+incompatible;sha256sum=f8196815a1b4d25e5b8158029d5264801fc8aa5ff128ccf30752fd169693d43b \ + gomod://github.com/cenkalti/backoff/v4;version=v4.3.0;sha256sum=ef220b1ebf3bff4c46bbad5b2e123030e812b722b9e9dc88bc35956f9c622c2a \ + gomod://github.com/cespare/xxhash/v2;version=v2.3.0;sha256sum=145a26cdc7c49db566017b807c4989ee7f7ddeb569423e9cb99f995fac3621d3 \ + gomod://github.com/cisco-ie/nx-telemetry-proto;version=v0.0.0-20230117155933-f64c045c77df;sha256sum=fa5f7c1fd4e5ffd6b5253257c629dcff5280a35ea4b56be36da6c86fbfefb195 \ + gomod://github.com/clarify/clarify-go;version=v0.4.1;sha256sum=b044326c8c055948a2bb7993282df50ddf7736e5e25720997b97efd559b476a6 \ + gomod://github.com/clipperhouse/uax29/v2;version=v2.7.0;sha256sum=67b1278f1ffb4e4d783a390e48fe7396864650138e785d4b4bfca5914333f761 \ + gomod://github.com/cloudevents/sdk-go/v2;version=v2.16.2;sha256sum=fa4a7ff8513c5d147d90c7d22e0dbe280989114320a920dc0cf922fb56347bff \ + gomod://github.com/cncf/xds/go;version=v0.0.0-20260202195803-dba9d589def2;sha256sum=6f1b8ceaaa6e773dba2595bfe7b75f54d98f901c8f1340d420138095b36778fa \ + gomod://github.com/compose-spec/compose-go;version=v1.20.2;sha256sum=64b2c0695c99d18ca535e6be26db2dbc0ecd65cd42f71eba327afc47f58f33fe \ + gomod://github.com/containerd/errdefs;version=v1.0.0;sha256sum=b4ef42c38d00f2c81cf3e69646549b7f5dc8fb72de9402d7b391963dc0ac9162 \ + gomod://github.com/containerd/errdefs/pkg;version=v0.3.0;sha256sum=593bf56f1991517e493510815d8fc6d344b8550fbfb3de56812f015096aab24f \ + gomod://github.com/containerd/log;version=v0.1.0;sha256sum=2008faf206ec820e7fc3d40baba924936c21347dafad4a7ff122fa90e26e57d7 \ + gomod://github.com/containerd/platforms;version=v0.2.1;sha256sum=a83feefbb9ecb6d612cfe574a9c850bfa311804d56b034850ca41575e9cf44a2 \ + gomod://github.com/coocood/freecache;version=v1.2.7;sha256sum=74da7c30eb3dc76aabbf3be0e45ff54ccac1e9a171a7fb617c8ac43ce83d851d \ + gomod://github.com/coreos/go-semver;version=v0.3.1;sha256sum=e72820542b5913afe0a52e956e0b3834e9fbb080641fed183117f862fab74e8a \ + gomod://github.com/coreos/go-systemd/v22;version=v22.7.0;sha256sum=25c78b5dae5afa61291a8559328007cc77e60dd6747454af5c83423c26cfdfba \ + gomod://github.com/couchbase/go-couchbase;version=v0.1.1;sha256sum=e074bf65b87618335cac0ff8cb63a7dc7d0ab9aa8a17e2f43cb1c074479bb33f \ + gomod://github.com/couchbase/gomemcached;version=v0.1.3;sha256sum=e48cab83ff483dd1ad725330be214f126ea4be77b6332ba39985500e0e556390 \ + gomod://github.com/couchbase/goutils;version=v0.1.0;sha256sum=715758fe5b30bcedabd2aabf930326b507ddf487a0966b4e3984cf7d05e4e945 \ + gomod://github.com/cpuguy83/dockercfg;version=v0.3.2;sha256sum=8266bf8beb4299323bae0ee9ffbe2be1f3073ddbc1bc8694915d517f402cca1a \ + gomod://github.com/cpuguy83/go-md2man/v2;version=v2.0.7;sha256sum=9ad5f2cbc644c0bb648a9b182d6b70f92e7ac4dfab5cf0ef746bbeef944fda59 \ + gomod://github.com/creack/goselect;version=v0.1.3;sha256sum=822b19b2e93d0d539af2d4549a20e4d0e30f7bc36b2c8b1a2e1e9f086e292702 \ + gomod://github.com/datadope-io/go-zabbix/v2;version=v2.0.1;sha256sum=f8c011078da92d893b8febfdf5c7f697edc97429b8246df29e53077fc72fa687 \ + gomod://github.com/davecgh/go-spew;version=v1.1.2-0.20180830191138-d8f796af33cc;sha256sum=b4d0923b169b194f0016ec46f3df1ab0c68e27999743e43fe2de59ecb2484128 \ + gomod://github.com/devigned/tab;version=v0.1.1;sha256sum=528e21b578f28a998453551c51abfdeed154c981486d49a8ad7c149743ea450f \ + gomod://github.com/dgryski/go-rendezvous;version=v0.0.0-20200823014737-9f7001d12a5f;sha256sum=d222258b607d5fcacf09e84069607d8f18fba48b25ad191ec78d380d078e694f \ + gomod://github.com/digitalocean/go-libvirt;version=v0.0.0-20250417173424-a6a66ef779d6;sha256sum=85c80ad631e690556cef57111eedf2ca37ad4ec9f9c902f2be5d910dc33e5612 \ + gomod://github.com/dimchansky/utfbom;version=v1.1.1;sha256sum=0c1a11101602d5f57ac3e790c0b72e09ff87d8d535535f43fbee9e6a42327350 \ + gomod://github.com/distribution/reference;version=v0.6.0;sha256sum=08232852a7a908263599777daab50e4306bd877e2467df036206367496122bcc \ + gomod://github.com/djherbis/times;version=v1.6.0;sha256sum=21d69060967bc03ea3c39ff8c0b1a95511e96eccd3749a2daef1a02af1bc0a85 \ + gomod://github.com/docker/docker;version=v28.5.2+incompatible;sha256sum=eb2091e8336c55b1996489eccbc01c06b1b9fed028b5b38e0499b49c9fa0d468 \ + gomod://github.com/docker/go-connections;version=v0.7.0;sha256sum=44c583ae40f15bd8abfe95a8b243d121ffef79b4605e8c737e24d5853188746e \ + gomod://github.com/docker/go-units;version=v0.5.0;sha256sum=039d53ebe64af1aefa0be94ce42c621a17a3052c58ad15e5b3f357529beeaff6 \ + gomod://github.com/dustin/go-humanize;version=v1.0.1;sha256sum=319404ea84c8a4e2d3d83f30988b006e7dd04976de3e1a1a90484ad94679fa46 \ + gomod://github.com/dvsekhvalnov/jose2go;version=v1.7.0;sha256sum=99ca0fb985cea6c42221142f29f728abbac66ec0bdbc4345dbb587574e1ebd93 \ + gomod://github.com/dynatrace-oss/dynatrace-metric-utils-go;version=v0.5.0;sha256sum=9ba20355365db75f7ff71c5dda41ba73bbc12901c9d529febe0bb8c52c8908c3 \ + gomod://github.com/eapache/go-resiliency;version=v1.7.0;sha256sum=a244568c59d0f83f8a9a0a2efba62dc4be54aa5d191ec90875ee9b583fa69a20 \ + gomod://github.com/eapache/queue;version=v1.1.0;sha256sum=1dc1b4972e8505c4763c65424b19604c65c944911d16c18c5cbd35aae45626fb \ + gomod://github.com/eclipse/paho.golang;version=v0.23.0;sha256sum=08552356cf11dc13ee98a73825a3c3b66c92e1a4a15c24d5dce9c12dea4e7d28 \ + gomod://github.com/eclipse/paho.mqtt.golang;version=v1.5.1;sha256sum=dd4c27b9a61246c44fdca52ce7cb6d7bf16a904e12ed72929976c19a25b78a65 \ + gomod://github.com/elastic/go-sysinfo;version=v1.8.1;sha256sum=43b02479c96554cf32394aae236195572fbb8ef594841b9e99a116f9087f1446 \ + gomod://github.com/emiago/sipgo;version=v1.3.1;sha256sum=f5cc52be696e1de91f8644ca94d3e8f5777a88be515778383d6c692de9a9cc0c \ + gomod://github.com/emicklei/go-restful/v3;version=v3.13.0;sha256sum=06bd60484b324de0b8e4366d4ed326db2e1dc730459b46e19a5306a108439c77 \ + gomod://github.com/envoyproxy/go-control-plane/envoy;version=v1.37.0;sha256sum=dea96dd46aa4480f6f5dad6b52b9059d088d06a090968557dafa8cd633f629a2 \ + gomod://github.com/envoyproxy/protoc-gen-validate;version=v1.3.3;sha256sum=83a909ec95b94609da1f610a866e0553dd4ac3a7b485f7dc5c734692fa326754 \ + gomod://github.com/facebook/time;version=v0.0.0-20250903103710-a5911c32cdb9;sha256sum=e5a58e47df2c3bc7488c6692aef10ac4627d0eb51c96666582d8bea98fa24acf \ + gomod://github.com/fatih/color;version=v1.19.0;sha256sum=694b4265dc678e2a65b196371d5a6ec4eed3739f12a16021dcd2f0c1355d0ec6 \ + gomod://github.com/felixge/httpsnoop;version=v1.0.4;sha256sum=75aa471311265e9860df0e523400b4650ed0c1a33262786a421f07226792e494 \ + gomod://github.com/fxamacker/cbor/v2;version=v2.9.0;sha256sum=5b0ec6424bd522aeeeab30cbdcad6f40bf976a9a2ddf125ab27b97826140d97a \ + gomod://github.com/gabriel-vasile/mimetype;version=v1.4.13;sha256sum=03b46aaa7bd4403d65dc23fb9d7e9b61214bb429491c864ee638490a42d55013 \ + gomod://github.com/go-asn1-ber/asn1-ber;version=v1.5.8-0.20250403174932-29230038a667;sha256sum=8567953cf0fd956e3a1e52d2489dc6b3827a13201a3f1dcfd48c90c5139c9699 \ + gomod://github.com/go-chi/chi/v5;version=v5.2.5;sha256sum=f78c1525f8b3af815bcf3406c0aba1f272eff96413ff51874677bf8a314fcad8 \ + gomod://github.com/go-faster/city;version=v1.0.1;sha256sum=14383d1599340763c14141cc91feaf9789167118f342bed49704c65c18a99817 \ + gomod://github.com/go-faster/errors;version=v0.7.1;sha256sum=de12a734468634ef76f07788b5fe464d4fcb09f56cede6a3187720a256aa0ad4 \ + gomod://github.com/go-git/go-billy/v5;version=v5.6.0;sha256sum=9ff4e163bdc9fa957bdeb1fc86ef27fc06905da4df5f6d66a4e76775c08280c1 \ + gomod://github.com/go-jose/go-jose/v4;version=v4.1.4;sha256sum=06a37b6668012a2dd109a5f71f6ae15387dc808b35d3cf73f5e406e78a17b027 \ + gomod://github.com/go-ldap/ldap/v3;version=v3.4.13;sha256sum=d2fac2f2755855ecc2e85be6b772f0c2bf30980aec7edd21ad5622918038c9f0 \ + gomod://github.com/go-logfmt/logfmt;version=v0.6.1;sha256sum=20f61151ffe33e64602b3a0db4eaed9ef60a84398a4a495a7434ffb90635751b \ + gomod://github.com/go-logr/logr;version=v1.4.3;sha256sum=523d7a3587fe73f61ef41c8bc627f7d7f38de8104d46278154b307e60770ad70 \ + gomod://github.com/go-logr/stdr;version=v1.2.2;sha256sum=9dd6893bf700198485ae699640b49bc1efbc6c73b37cb5792a0476e1fd8f7fef \ + gomod://github.com/go-openapi/jsonpointer;version=v0.23.0;sha256sum=08f58a6c2e743afe4e974b29f35992c787edec01a4e53b8785a91f3f9c0c0b40 \ + gomod://github.com/go-openapi/jsonreference;version=v0.21.4;sha256sum=5370b17a70ce96abb1d70d31768ae10a877e4ee7a18c5846022bea13d1afa9f9 \ + gomod://github.com/go-openapi/swag;version=v0.26.0;sha256sum=d65c0ce5951c853e6a8f43ea89838a4e9bf94a68d934d5927ccd978a1d676054 \ + gomod://github.com/go-openapi/swag/cmdutils;version=v0.26.0;sha256sum=5ad3cc0909058c69417842d89141c9bf7cb9d49baf510191b96f728930962b80 \ + gomod://github.com/go-openapi/swag/conv;version=v0.26.0;sha256sum=3fb68a80a112a1f123088485805ccde07004c20b82f734442fb3c195f1942224 \ + gomod://github.com/go-openapi/swag/fileutils;version=v0.26.0;sha256sum=b039c457df548905fb4cee946d5f06652131d07f773b348d5fe567c3011a62dd \ + gomod://github.com/go-openapi/swag/jsonname;version=v0.26.0;sha256sum=aa241634718914bea03504d97a86ec7bd977b215c8b8064c82eca916708b22a8 \ + gomod://github.com/go-openapi/swag/jsonutils;version=v0.26.0;sha256sum=ec952de225db113ee6d35de9ecefbc0d7e7232b8bae162f360214a6e467ca130 \ + gomod://github.com/go-openapi/swag/loading;version=v0.26.0;sha256sum=ceee78caf9e98b0f2d6f0d9118a14f28d9fc508c18c081ccf34aadf8d249aa67 \ + gomod://github.com/go-openapi/swag/mangling;version=v0.26.0;sha256sum=c46f9972741097c558b687b64d15a0cb20a3ae65e7c1e139ecdd20c7729c282a \ + gomod://github.com/go-openapi/swag/netutils;version=v0.26.0;sha256sum=a081429760aa8cc42965739fd3abdaaec087d2b1d5a2914de8c000b547513175 \ + gomod://github.com/go-openapi/swag/stringutils;version=v0.26.0;sha256sum=e7dfe269a9da742dd4a41575637c7c2e4707fc611fcb9c164f15f2e1e81d83f0 \ + gomod://github.com/go-openapi/swag/typeutils;version=v0.26.0;sha256sum=38abcf128ba81c5c473270495275350c9b5c1ce63ae1a96408dcedbc7e5f0433 \ + gomod://github.com/go-openapi/swag/yamlutils;version=v0.26.0;sha256sum=03bad6a87a7d2aefcdc86f2c0f39703de1d23caf1619fd5193cfcf13b6285dfb \ + gomod://github.com/go-redis/redis/v7;version=v7.4.1;sha256sum=15b3ff6bc2454e2dd9c9ce92e1a3c05d7de35e4e6f9c47470357c35b21e5164a \ + gomod://github.com/go-redis/redis/v8;version=v8.11.5;sha256sum=7b373b229f2ed912bd2fa3c91787e9280ff0d40a36e9e5c2783e8db24d44e22c \ + gomod://github.com/go-resty/resty/v2;version=v2.17.2;sha256sum=424588a1577747a23273e5ef9f75fdb9178b8d2a42fa37f2e0ed90bb2b957cd8 \ + gomod://github.com/go-sql-driver/mysql;version=v1.10.0;sha256sum=dc93f5770556406e82bf750a980d2316f882a19d883a3689eadb820708c2b651 \ + gomod://github.com/go-stack/stack;version=v1.8.1;sha256sum=944a204de02272c5718a6819f1f4f6d433a0ef50ca9e737154fceae742694477 \ + gomod://github.com/go-stomp/stomp;version=v2.1.4+incompatible;sha256sum=821addb3fdb70b9e4a657e48e183977591ad0a9d175706cb4bc3237be81be900 \ + gomod://github.com/go-viper/mapstructure/v2;version=v2.5.0;sha256sum=326f8e00f648af4ae8e6e18c606325e4206a92d6ed42f486dc2f4da8e1897547 \ + gomod://github.com/gobwas/glob;version=v0.2.3;sha256sum=0cfe486cd63d45ed4cb5863ff1cbd14b15e4b9380dcbf80ff26991b4049f4fdf \ + gomod://github.com/gobwas/httphead;version=v0.1.0;sha256sum=a4646f1d12786fee639c489219e7c667b10f7dc19578a4e7222bd17c5d9bdf8a \ + gomod://github.com/gobwas/pool;version=v0.2.1;sha256sum=79b505a9f42b141affca1eedd2edc87ae922482d052e16e3b6e5e3c9dcec89e1 \ + gomod://github.com/gobwas/ws;version=v1.3.2;sha256sum=7c73d0e58711deabfe813254008bd959fe235dea6bdea3e08d86206e50c7a710 \ + gomod://github.com/goccy/go-json;version=v0.10.6;sha256sum=2296e77cc44facf3596ddd7a5866578a8450b59ad1583cbb70bfbfa77fe0dadc \ + gomod://github.com/godbus/dbus;version=v0.0.0-20190726142602-4481cbc300e2;sha256sum=e581c19036afcca2e656efcc4aa99a1348e2f9736177e206990a285d0a1c4c31 \ + gomod://github.com/godbus/dbus/v5;version=v5.1.0;sha256sum=03dfa8e71089a6f477310d15c4d3a036d82d028532881b50fee254358e782ad9 \ + gomod://github.com/gofrs/uuid;version=v4.4.0+incompatible;sha256sum=5679a06ff2120efb43764a2d1389baf32c8971c0e664741c4d184299c76ebd3d \ + gomod://github.com/gofrs/uuid/v5;version=v5.4.0;sha256sum=3ee3a75fdc02cfdcbf1a44feb0f89ea89aad0cfa38b7730f95e67afb42e06f6c \ + gomod://github.com/gogo/protobuf;version=v1.3.2;sha256sum=dd2b73f163c8183941626360196c8f844addd95423d341a0412e1b22d0104ff7 \ + gomod://github.com/golang/geo;version=v0.0.0-20190916061304-5b978397cfec;sha256sum=6f930b5f27f80c4eb143ef6896930f049529b5d3e7e61cbdb24e03651fe2ae29 \ + gomod://github.com/golang/groupcache;version=v0.0.0-20210331224755-41bb18bfe9da;sha256sum=b27034e8fc013627543e1ad098cfc65329f2896df3da5cf3266cc9166f93f3a5 \ + gomod://github.com/golang/protobuf;version=v1.5.4;sha256sum=9a2f43d3eac8ceda506ebbeb4f229254b87235ce90346692a0e233614182190b \ + gomod://github.com/golang/snappy;version=v1.0.0;sha256sum=d712fef567e361d17e879f80ea53ebfdf529185a6bc74a2aa1996133ddd0a930 \ + gomod://github.com/golang-jwt/jwt/v4;version=v4.5.2;sha256sum=ec5ee69a31fd478fc197fddce7c06dad1abe7543095a55c4ee6546ae79d99a0f \ + gomod://github.com/golang-jwt/jwt/v5;version=v5.3.1;sha256sum=5c9a74494e2bc746cee56558b5473252af5767f7ea4044caa9ea0fa2a056fec7 \ + gomod://github.com/golang-sql/civil;version=v0.0.0-20220223132316-b832511892a9;sha256sum=996885e1a4ab63cba0eb3f8663ec48d693507da71d5632840932d7a630fbc84d \ + gomod://github.com/golang-sql/sqlexp;version=v0.1.0;sha256sum=80215592aa894583e72096d7b585ee0635eb39c36667caeeb4a3c79da6c4f7af \ + gomod://github.com/google/cel-go;version=v0.28.0;sha256sum=06d6d2f193319b121f4c5d683bfddacd5ae376c1f02fc9565610fe49f061a8ac \ + gomod://github.com/google/flatbuffers;version=v25.12.19+incompatible;sha256sum=e029cc5ea5f0661de945a92a8eeaa8372e6af5d0aac4c87e9bbe883ad57afd96 \ + gomod://github.com/google/gnostic-models;version=v0.7.0;sha256sum=797a05cd73a30624ece79633c4db4631676adc1f30f07a0a7051ab39beca96c8 \ + gomod://github.com/google/gnxi;version=v0.0.0-20231026134436-d82d9936af15;sha256sum=dd27b7159145d9f89712fbfdcbbed98e109f3ebdb6a2ab63fc2b5f98e88a35d2 \ + gomod://github.com/google/go-cmp;version=v0.7.0;sha256sum=64a9ce046f2c320e3783fba0d1f4a15f8a18f0b009b67bf27f7630919db3f539 \ + gomod://github.com/google/go-github/v32;version=v32.1.0;sha256sum=1b9617b0d5dd657df83fc2d27e4f3b36d347ede50b8623008ed9a5010506b519 \ + gomod://github.com/google/go-querystring;version=v1.2.0;sha256sum=57b7ce2b82b33c68f59a224c6dd1305753e5ee3eecbefd09d43423a14f541e31 \ + gomod://github.com/google/s2a-go;version=v0.1.9;sha256sum=bf8f4b159d3fc201477822ed2514e4f05f58c764b78ffed73ec0accce5fb7f07 \ + gomod://github.com/google/uuid;version=v1.6.0;sha256sum=d0f02f377217f42702e259684e06441edbf5140dddcc34ba9bea56038b38a6ed \ + gomod://github.com/googleapis/enterprise-certificate-proxy;version=v0.3.15;sha256sum=46f0c9d792bb68316c31f33f246b38dd45e3805db89cad11232099e7cb861417 \ + gomod://github.com/googleapis/gax-go/v2;version=v2.22.0;sha256sum=800a18188bf1222e7ce7b4a31c22ab807136e6d194507aa8cd822ba9dff00696 \ + gomod://github.com/gopacket/gopacket;version=v1.5.0;sha256sum=22ca3f6964b8bb0f09e21b5f40d1e0ca45abd7f7a8dd8ab5341aa8902c5d469f \ + gomod://github.com/gopcua/opcua;version=v0.8.0;sha256sum=0c879a5a21c5fdfee5f7efc77f233c59783edc9d23b97915968e5d7c6ea07994 \ + gomod://github.com/gophercloud/gophercloud/v2;version=v2.12.0;sha256sum=c48cee8268b9d7334a6b892d269ef22b66ba18342174231dec2579d8d1a6f65b \ + gomod://github.com/gorcon/rcon;version=v1.4.0;sha256sum=141aafdeb327449f24d91b08b9b4a416079cdf0a6bcb816af18e08d3333657aa \ + gomod://github.com/gorilla/mux;version=v1.8.1;sha256sum=728243623caa67f64e4a0b6c59dde3f762918d9e729266167ba46d8df56c193a \ + gomod://github.com/gorilla/websocket;version=v1.5.4-0.20250319132907-e064f32e3674;sha256sum=81809e9741b37f386c8d28c9c6a23511f4a2465fd024a690a4c44a439e32e832 \ + gomod://github.com/gosnmp/gosnmp;version=v1.43.2;sha256sum=7da45ce5dcbaf386910565d78ac089f6ec435e0d0eed752c72abcdf0ba5a0241 \ + gomod://github.com/grafana/regexp;version=v0.0.0-20250905093917-f7b3be9d1853;sha256sum=79e15003a12157d71a1e851a680586b6a42bb8117005972c61673222df4b15cc \ + gomod://github.com/grid-x/modbus;version=v0.0.0-20240503115206-582f2ab60a18;sha256sum=97ab588d4c8b4bee5cd533431e1b5fc0907d8b81aec255e55338eadb23df7e9c \ + gomod://github.com/grid-x/serial;version=v0.0.0-20211107191517-583c7356b3aa;sha256sum=9f92d4e4a5c71260dd9f70a4cc6a1c5baf2dd5a6eea905844cebe6659db5e4b4 \ + gomod://github.com/grpc-ecosystem/grpc-gateway/v2;version=v2.28.0;sha256sum=a8cd8e77d733dbf48594cc74ebc41e7a9af65d4d760c3f8d6000e9ccc840dca1 \ + gomod://github.com/gsterjov/go-libsecret;version=v0.0.0-20161001094733-a6f4afe4910c;sha256sum=cffe0a452fd3f00e4d07730caeb254417a720d907294b5b4a3428322655fb130 \ + gomod://github.com/gwos/tcg/sdk;version=v0.0.0-20240830123415-f8a34bba6358;sha256sum=13e08e0761ab6e41312796bc3b81e3417a005b18127eab44c4962f29b7bb8265 \ + gomod://github.com/hailocab/go-hostpool;version=v0.0.0-20160125115350-e80d13ce29ed;sha256sum=faf2b985681cda77ab928976b620b790585e364b6aff351483227d474db85e9a \ + gomod://github.com/hashicorp/consul/api;version=v1.34.2;sha256sum=90c2b5f671613d4d1c90b81f3cf82754f1d4954ea8f7a1b9a7ce9c57bbb0bd9b \ + gomod://github.com/hashicorp/errwrap;version=v1.1.0;sha256sum=209ae99bc039443e28e4d6bb66517d1756d9468b7578d31f1b63a28103d8e18c \ + gomod://github.com/hashicorp/go-cleanhttp;version=v0.5.2;sha256sum=e9f3dcfcb33172ba499b4f8e888169252d7f1e072082182124a6e2053523f7df \ + gomod://github.com/hashicorp/go-hclog;version=v1.6.3;sha256sum=ebab3136e5327ad17606485f633c2d033c61eadb843b2f3629b6d65d6fbb1400 \ + gomod://github.com/hashicorp/go-immutable-radix;version=v1.3.1;sha256sum=47f3d79b57082d5db3f966547ad4de2a00544dfb362790fbf2cef1a161b4de3f \ + gomod://github.com/hashicorp/go-multierror;version=v1.1.1;sha256sum=972cd841ee51fdeac69c5a301e57f8ea27aebf15fddd7f621d5c240f28c3000c \ + gomod://github.com/hashicorp/go-retryablehttp;version=v0.7.8;sha256sum=9e2c175e4af37cdfeba28ed89250ad1fd691eda0fab167fafa9928222646b71e \ + gomod://github.com/hashicorp/go-rootcerts;version=v1.0.2;sha256sum=864a48e642e87a273fb5ef60bb3575bd74a7090510f93143163fa6700be31948 \ + gomod://github.com/hashicorp/go-secure-stdlib/parseutil;version=v0.2.0;sha256sum=715aecec5d925467704774d3ab4bd3c4eead5ddb525a4bceb06c6f1e697ddba8 \ + gomod://github.com/hashicorp/go-secure-stdlib/strutil;version=v0.1.2;sha256sum=8070c67bc97e15488b99b172ddb6631412dca0fcb8cea90e37fe55d95e1af00a \ + gomod://github.com/hashicorp/go-sockaddr;version=v1.0.7;sha256sum=53ea8d77b68056fe7f40a53338aa73ed6ddca9558fe1156804070a060f1a930f \ + gomod://github.com/hashicorp/go-uuid;version=v1.0.3;sha256sum=5e9dc2bb3785d69a65d287a4b3fa7e9f583a127e41c6a2fd095ac862fed71dad \ + gomod://github.com/hashicorp/go-version;version=v1.9.0;sha256sum=b6c05489bf11a28c81cf38119782284c859d6c2d193b811d3f0117592eb31fcb \ + gomod://github.com/hashicorp/golang-lru;version=v1.0.2;sha256sum=175d78ffe7391f3f6369cf58ddb87fc51016ba61f2de25bf4ea3962a0b4a0fac \ + gomod://github.com/hashicorp/golang-lru/v2;version=v2.0.7;sha256sum=2eb92ff13970bccd460efae14255bfc03bb51474da0137e477a60f95561acc30 \ + gomod://github.com/hashicorp/hcl;version=v1.0.1-vault-7;sha256sum=84fea514e70253c65e3caf90a8d9f366808bdfb4099914d1e6ab0d1fdba976b7 \ + gomod://github.com/hashicorp/packer-plugin-sdk;version=v0.3.2;sha256sum=c362b838a8fa75d3e9c33baaf62c9a7dc7b02e5e59e8095ce34d7fa918b3c673 \ + gomod://github.com/hashicorp/serf;version=v0.10.1;sha256sum=661b6ad5df497dcda0f581607b003e40646ef9f3ca09d12bdeec7cb3d16ad370 \ + gomod://github.com/hashicorp/vault/api;version=v1.23.0;sha256sum=475fa3034ee78afd44ea82a1098424b172672bba26b10a3d8dd636cdefaa077b \ + gomod://github.com/hashicorp/vault/api/auth/approle;version=v0.12.0;sha256sum=aafa2e0c12b49a86246228824aeec167c9378ae5ed8696809cfb781bf90ff022 \ + gomod://github.com/huandu/xstrings;version=v1.5.0;sha256sum=74bd0e897e5c35b1fd0e598cb8d9dfcebcb820b6edf3abf850d5404bfaaca6a2 \ + gomod://github.com/icholy/digest;version=v1.1.0;sha256sum=f89059785026931e5e6d3979aa36185555aa3d18c403c71e86806e18d677a2b6 \ + gomod://github.com/imdario/mergo;version=v0.3.16;sha256sum=536b0b87ec2b9f02d759a3a01604043b538e15e62924a29e34cfc2b16a1cf580 \ + gomod://github.com/influxdata/influxdb-observability/common;version=v0.5.12;sha256sum=482cb74b16dba8d8884c7d2a4899f3970fda3ebfecfa30878258c5051b663029 \ + gomod://github.com/influxdata/influxdb-observability/influx2otel;version=v0.5.12;sha256sum=1a2cc2a36bf03ea5feb4885b2f9bde34c435a89c8d48dbe2a7a2f6cddd2b0274 \ + gomod://github.com/influxdata/influxdb-observability/otel2influx;version=v0.5.12;sha256sum=dcc4acbac3eaeda30adcb88d5b1eeb0e01387a5da5bf8c1129531845eaa39b13 \ + gomod://github.com/influxdata/line-protocol/v2;version=v2.2.1;sha256sum=a3a0dc732f3c7e1dce136bfb04f39dc18e222a1b9817aa6f7307f45cf27e435f \ + gomod://github.com/influxdata/tail;version=v1.0.1-0.20241014115250-3e0015cb677a;sha256sum=caed51a99700e2481a27f20a1d2e0779f6e237dac053448ffec9a1af3fb3523a \ + gomod://github.com/influxdata/toml;version=v0.0.0-20251106153700-c381e153d076;sha256sum=033e1e3f775dc8535b97e8d90b3c5fa2b8a46b706b9bb2c703921c058b1179ce \ + gomod://github.com/jackc/pgio;version=v1.0.0;sha256sum=1a83c03d53f6a40339364cafcbbabb44238203c79ca0c9b98bf582d0df0e0468 \ + gomod://github.com/jackc/pgpassfile;version=v1.0.0;sha256sum=1cc79fb0b80f54b568afd3f4648dd1c349f746ad7c379df8d7f9e0eb1cac938b \ + gomod://github.com/jackc/pgservicefile;version=v0.0.0-20240606120523-5a60cdf6a761;sha256sum=c9e31c91aebf96eb246bd410d1849cc7666d955a1e20ca2eba1c30b4eb89335f \ + gomod://github.com/jackc/pgx/v5;version=v5.9.2;sha256sum=0e8e8456630e580729cd1b06bf402cc6b98b57ec3a867df0e89e6ff27aa361c9 \ + gomod://github.com/jackc/puddle/v2;version=v2.2.2;sha256sum=f1f0789098a0bcb5ff3c7024f9ee387a6748446e1bc6713b13a63d763a9fb11e \ + gomod://github.com/jaegertracing/jaeger;version=v1.47.0;sha256sum=dbb9e2c82210a59653202e9db37a3df44bc586be0d6a9130c3252abfc4e5ba1d \ + gomod://github.com/jcmturner/aescts/v2;version=v2.0.0;sha256sum=717a211ad4aac248cf33cadde73059c13f8e9462123a0ab2fed5c5e61f7739d7 \ + gomod://github.com/jcmturner/dnsutils/v2;version=v2.0.0;sha256sum=f9188186b672e547cfaef66107aa62d65054c5d4f10d4dcd1ff157d6bf8c275d \ + gomod://github.com/jcmturner/gofork;version=v1.7.6;sha256sum=b7e42a499d6be8dd07069c031f9291a5615aa0d59660c7e322cff585ce39e8a2 \ + gomod://github.com/jcmturner/goidentity/v6;version=v6.0.1;sha256sum=243e6fd6ea9f3094eea32c55febade6d8aaa1b563db655b0c5327940e4719beb \ + gomod://github.com/jcmturner/gokrb5/v8;version=v8.4.4;sha256sum=8e468a1161302cb12b6e3f16bf31cd3b093f57c14325e11b348df1472860e313 \ + gomod://github.com/jcmturner/rpc/v2;version=v2.0.3;sha256sum=90c595355e5e2c9dc1e1ae71a88491a04c34d8791180098da103217cbf5f5574 \ + gomod://github.com/jedib0t/go-pretty/v6;version=v6.7.10;sha256sum=6372540791598ce7eccba46b7aa76d4a9351f6036882a97cdbc37458c1b2ea62 \ + gomod://github.com/jeremywohl/flatten/v2;version=v2.0.0-20211013061545-07e4a09fb8e4;sha256sum=3efe886274d59812e82abc74cbec4a17ed4c548e2e0ca4f7043ebe2dbc186107 \ + gomod://github.com/jmespath/go-jmespath;version=v0.4.0;sha256sum=d1f77b6790d7c4321a74260f3675683d3ac06b0a614b5f83e870beae0a8b2867 \ + gomod://github.com/joeshaw/multierror;version=v0.0.0-20140124173710-69b34d4ec901;sha256sum=e31f735c5f42ac65aef51a70ba1a32b5ac34067a7ba0624192dd41e5ea03aa1e \ + gomod://github.com/josharian/intern;version=v1.0.0;sha256sum=5679bfd11c14adccdb45bd1a0f9cf4b445b95caeed6fb507ba96ecced11c248d \ + gomod://github.com/josharian/native;version=v1.1.0;sha256sum=6bf490b63ce1b724d1ab0aceb7655648b25b0ae6dc16f7fb1d89127836e71c42 \ + gomod://github.com/jpillora/backoff;version=v1.0.0;sha256sum=f856692c725143c49b9cceabfbca8bc93d3dbde84a0aaa53fb26ed3774c220cc \ + gomod://github.com/json-iterator/go;version=v1.1.12;sha256sum=d001ea57081afd0e378467c8f4a9b6a51259996bb8bb763f78107eaf12f99501 \ + gomod://github.com/jzelinskie/whirlpool;version=v0.0.0-20201016144138-0675e54bb004;sha256sum=171380cee0b81436609d30e101fab6b51cd291eb0f1dfb119e840b042b12959c \ + gomod://github.com/karrick/godirwalk;version=v1.16.2;sha256sum=4b03e8c1cd90d22a2c273a1efc9a2489ae4cffe91c9f399e60c2e145020b38d6 \ + gomod://github.com/kballard/go-shellquote;version=v0.0.0-20180428030007-95032a82bc51;sha256sum=ae4cb7b097dc4eb0c248dff00ed3bbf0f36984c4162ad1d615266084e58bd6cc \ + gomod://github.com/klauspost/compress;version=v1.18.6;sha256sum=61b417d2d3b6b7f5b5f4179f311fb156bd5bcea040353150c41111dc1777f11a \ + gomod://github.com/klauspost/pgzip;version=v1.2.6;sha256sum=8ac508e93b22dca1a731a3a4c921b57c5ed1daea7b3629a2cf85c3b7530dda84 \ + gomod://github.com/kolo/xmlrpc;version=v0.0.0-20220921171641-a4b6fa1dd06b;sha256sum=310742360a864798a1bfce6db8604263574c0be502670c8bfedeab8fcbe9d191 \ + gomod://github.com/kr/fs;version=v0.1.0;sha256sum=d376bd98e81aea34585fc3b04bab76363e9e87cde69383964e57e9779f2af81e \ + gomod://github.com/kylelemons/godebug;version=v1.1.0;sha256sum=dbbd0ce8c2f4932bb03704d73026b21af12bd68d5b8f4798dbf10a487a2b6d13 \ + gomod://github.com/leodido/go-syslog/v4;version=v4.5.0;sha256sum=f96754b2011efb54dc0f1bb6697491c444cae86e9dcdc0044bcb54c367e5fea1 \ + gomod://github.com/leodido/ragel-machinery;version=v0.0.0-20190525184631-5f46317e436b;sha256sum=3e809aec9786faf870f674db3da0ebf4da691ab430a31595d6cdd6c1ed6cc2c1 \ + gomod://github.com/likexian/gokit;version=v0.25.16;sha256sum=662725baf5731840544ec032e5cf120c073d3c14f0b2f6e608d495c48de9f9e2 \ + gomod://github.com/likexian/whois;version=v1.15.7;sha256sum=4f7eaf7b62d63bb1dea31cdf3cd2ea0203c77b00d687ff80e949fa1938457ed6 \ + gomod://github.com/likexian/whois-parser;version=v1.24.21;sha256sum=b7616a65bda4735b926954aac28494f9165f7d2a13b09370d9e0446f2be1c103 \ + gomod://github.com/linkedin/goavro/v2;version=v2.15.0;sha256sum=c87b93901172646f9a0732cb46bd14df1cfcba3e4c1b2e0f2071b1cc627556cd \ + gomod://github.com/logzio/azure-monitor-metrics-receiver;version=v1.1.0;sha256sum=9d9165b572c9d834e07a5431aeb21e71e713ab85a9606bcf948151f133e991b3 \ + gomod://github.com/magiconair/properties;version=v1.8.10;sha256sum=3c4ce4102dc0e38513eb31e56b14ff21ef2e7b9161b3f06478f9ff8280cff7bb \ + gomod://github.com/mailru/easyjson;version=v0.9.2;sha256sum=b9df0a16e05ca83bd12e36f11fb6d35622fffdda8d18b83ab7c030d11903af73 \ + gomod://github.com/mattn/go-colorable;version=v0.1.14;sha256sum=5e0e7925a070bb5bd11b4097e1a7b608167f0217ee83901b44c135f6e5e85c78 \ + gomod://github.com/mattn/go-isatty;version=v0.0.20;sha256sum=f2d5f89ca451577e17464b9bb596dc0d0ecececb5eaa63622c41b57cd0b7b8cc \ + gomod://github.com/mattn/go-runewidth;version=v0.0.21;sha256sum=f1c6f8106c49ff3077d8f2186fc23dcb222504f5f05d52f2b08a5417ead9d263 \ + gomod://github.com/mdlayher/apcupsd;version=v0.0.0-20220319200143-473c7b5f3c6a;sha256sum=d290df99d97b4550a8509b041a10fefe65d546fdcf426433a0f9a4b7c49cf105 \ + gomod://github.com/mdlayher/genetlink;version=v1.2.0;sha256sum=4052eb116f1f133eaf5d56ed048ef061e7bda98b314d296c267dbadd072af366 \ + gomod://github.com/mdlayher/netlink;version=v1.7.2;sha256sum=a21ccaea2a6fb7b946a96c61efc2fff33d717931c20c5bb3a2ec2ce528072dc0 \ + gomod://github.com/mdlayher/socket;version=v0.5.1;sha256sum=f0f07bdd9811f8571c7864cf5e0f06d85cfb3edbb254d6094a31e7f1d427e2a2 \ + gomod://github.com/mdlayher/vsock;version=v1.2.1;sha256sum=cd25f9f33aa4fb945502351caeeed6994e1f34824cc826ca2daa1b21c45bc0d1 \ + gomod://github.com/microsoft/ApplicationInsights-Go;version=v0.4.4;sha256sum=8448717c6fb076dc204ac793ac1ecf366ef1add4abb1d6041aec11256467a7c5 \ + gomod://github.com/microsoft/go-mssqldb;version=v1.10.0;sha256sum=ff2c54dd1ca2f81549ebae985db4ddd15322808daeacf2140ecb4e778a1ab9d3 \ + gomod://github.com/miekg/dns;version=v1.1.72;sha256sum=092608d919335ff22154862c59abe8b4d651be3ef0b75d22001a07c03106a3b6 \ + gomod://github.com/minio/highwayhash;version=v1.0.4;sha256sum=7161afca7e587e4e3b5f76f6b7b9422eb14b2246c13cc1e7d6a7ac374f5f219b \ + gomod://github.com/mitchellh/copystructure;version=v1.2.0;sha256sum=4a1ce1f3c66bf99883e55da50fe1b3122299b79ad1d11c5407abbd74ace12550 \ + gomod://github.com/mitchellh/go-homedir;version=v1.1.0;sha256sum=fffec361fc7e776bb71433560c285ee2982d2c140b8f5bfba0db6033c0ade184 \ + gomod://github.com/mitchellh/mapstructure;version=v1.5.1-0.20220423185008-bf980b35cac4;sha256sum=bd45a54eef2ff7407208d893933bb2d1a4906e00de10e25f439d40598fb1e945 \ + gomod://github.com/mitchellh/reflectwalk;version=v1.0.2;sha256sum=c96eed6b50f00b1acdc79224e8e55f66ef3e98e3f7c6373afa3e3b8c6ef440d1 \ + gomod://github.com/moby/docker-image-spec;version=v1.3.1;sha256sum=e3fe212be410465c0cae032baa7e2c7282b9bb878f081f00549333edc260c306 \ + gomod://github.com/moby/go-archive;version=v0.2.0;sha256sum=9fa1f9c9076a5d614e0fe1519878b49f0ae6221203d1b41c8e1710344783d345 \ + gomod://github.com/moby/ipvs;version=v1.1.0;sha256sum=067136da232ffa6663f52360159546dccefcbcfa58c9ab3856c10789f303be91 \ + gomod://github.com/moby/moby/api;version=v1.54.2;sha256sum=2382fecb42aa7bd89174ec21fc9a7daeeb12273037badd48292a1cd3b91c1bac \ + gomod://github.com/moby/moby/client;version=v0.4.1;sha256sum=d7d907ec96f9f363ef99d81b9eb14fde7f36ad2aeb302eddf641a5905b153cae \ + gomod://github.com/moby/patternmatcher;version=v0.6.1;sha256sum=63143eefbfab2697750be63bc4be899b2607538b3b1fb8e862ced521f7f9545f \ + gomod://github.com/moby/sys/sequential;version=v0.6.0;sha256sum=7870e47447a7e81a360d5d323bb9d52aaa951cbe70c267bea46b19ff1ed48bab \ + gomod://github.com/moby/sys/user;version=v0.4.0;sha256sum=4b96521752263905b26acd41c982be7bfb73d45243d070707e3cdd57f9fb3a91 \ + gomod://github.com/moby/sys/userns;version=v0.1.0;sha256sum=24c102bcc418dedc378fbcaa53b10251b35042f2e86bf088f773250064fe3080 \ + gomod://github.com/moby/term;version=v0.5.2;sha256sum=f8d6e5c53992c640512ee45a9b6147a765bebe3d8d50e3bfe1e4ec3e052cd688 \ + gomod://github.com/modern-go/concurrent;version=v0.0.0-20180306012644-bacd9c7ef1dd;sha256sum=91ef49599bec459869d94ff3dec128871ab66bd2dfa61041f1e1169f9b4a8073 \ + gomod://github.com/modern-go/reflect2;version=v1.0.3-0.20250322232337-35a7c28c31ee;sha256sum=49f3fb0f76b1b98b52b5e6e8eab2a48454eab33904b937625941c28138a7fea4 \ + gomod://github.com/montanaflynn/stats;version=v0.7.1;sha256sum=858b18e8ee484a2d466504b4d31bbae20e30e95d3f0f269190e9b4e27dc88283 \ + gomod://github.com/mtibben/percent;version=v0.2.1;sha256sum=21061f4a2b74cb0c65a1c6150e6a1ddbedcd3539a4ef5f0075d1a097f3224ee4 \ + gomod://github.com/multiplay/go-ts3;version=v1.2.0;sha256sum=0c408adf6ea5ba1b431e527f69c68034d96d28d80875d0b2c3a9c9a84e00c169 \ + gomod://github.com/munnerz/goautoneg;version=v0.0.0-20191010083416-a7dc8b61c822;sha256sum=3d7ce17916779890be02ea6b3dd6345c3c30c1df502ad9d8b5b9b310e636afd9 \ + gomod://github.com/mwitkow/go-conntrack;version=v0.0.0-20190716064945-2f068394615f;sha256sum=d6fc513490d5c73e3f64ede3cf18ba973a4f8ef4c39c9816cc6080e39c8c480a \ + gomod://github.com/naoina/go-stringutil;version=v0.1.0;sha256sum=4cfea6f0ebfecb5e6297f8a6eee0e9ef9fe254883eb75dd6179133995a219c58 \ + gomod://github.com/nats-io/jwt/v2;version=v2.8.1;sha256sum=65a7b6b4c7e9b20823d32361921d401bc7becbe3db3f18bfd0e394ab50510f67 \ + gomod://github.com/nats-io/nats-server/v2;version=v2.14.0;sha256sum=3be0f4e9e9836c2bf66965eb6ba1b7ca26020acff4f8101d17df5b7359843c54 \ + gomod://github.com/nats-io/nats.go;version=v1.51.0;sha256sum=893ed7ebc6953c05de29e56334676151ac33c4d6d7f3ba18378bfadba0239893 \ + gomod://github.com/nats-io/nkeys;version=v0.4.15;sha256sum=f8a75cd4d959035655f84c2264f9de9177a2cfa066ba803d58b2df3d5d562c76 \ + gomod://github.com/nats-io/nuid;version=v1.0.1;sha256sum=809d144fbd16f91651a433e28d2008d339e19dafc450c5995e2ed92f1c17c1f3 \ + gomod://github.com/ncw/swift/v2;version=v2.0.3;sha256sum=a9b1b4879747ed04ab5d76a00cd80cf5ccb0a7e32b7ba866a433286e4c62e16c \ + gomod://github.com/netsampler/goflow2/v2;version=v2.2.6;sha256sum=96ab07808f53746a8cddc1af245b55cd4c248cbd75503f6dcf66099da7a10b87 \ + gomod://github.com/newrelic/newrelic-telemetry-sdk-go;version=v0.8.1;sha256sum=a409f26c1e098824901c3a44590b6342bb3ff6480e3079de4407255909728d87 \ + gomod://github.com/nsqio/go-nsq;version=v1.1.0;sha256sum=0ee73c83fcf6fb9ebb2a7980c490b4ac3fec11463807c418064fc0a89fb5017d \ + gomod://github.com/nwaples/tacplus;version=v0.0.3;sha256sum=13314c20550b421a3c695f91971f93fbd735d31d55d5a486ccc03c452581a3e8 \ + gomod://github.com/oapi-codegen/runtime;version=v1.4.0;sha256sum=4f42636ff85a81ae45a9e21efc60d2e6633a5a05e7cf51da41734f5ad09a9ba2 \ + gomod://github.com/olivere/elastic;version=v6.2.37+incompatible;sha256sum=0c1d5f0c879889165a27fe3070929fa65e9cf671d35df362091f4009ea14c364 \ + gomod://github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil;version=v0.148.0;sha256sum=98bbdb3b2b69d6a82193872cdab4b6fcebb68fbb6e18f2baa9ecb8a164c887c4 \ + gomod://github.com/openconfig/gnmi;version=v0.14.1;sha256sum=68c1a63d7cba32e6fc4a704b4a80c606a6d57192e4008b136639688bbc6bbd5e \ + gomod://github.com/openconfig/goyang;version=v1.6.3;sha256sum=96273641eb513eb69840fce5113cf844cfeb92dab32bd98a65600bc36ff39beb \ + gomod://github.com/opencontainers/go-digest;version=v1.0.0;sha256sum=615efb31ff6cd71035b8aa38c3659d8b4da46f3cd92ac807cb50449adfe37c86 \ + gomod://github.com/opencontainers/image-spec;version=v1.1.1;sha256sum=3a32eeb459719172947c20be78b5b7293c6ea84f4039184e846f6b676bc19574 \ + gomod://github.com/opensearch-project/opensearch-go/v2;version=v2.3.0;sha256sum=890feb5b87733eb3c78ce901e4e5e43ee19d2eae0c3fc27918ddfce50ae11cf3 \ + gomod://github.com/opentracing/opentracing-go;version=v1.2.1-0.20220228012449-10b1cf09e00b;sha256sum=a3c4767ca6b5cb6d87b0a26443ee0bf2fa787e7e39d327935fe0cc632a44d1d8 \ + gomod://github.com/oxtoacart/bpool;version=v0.0.0-20190530202638-03653db5a59c;sha256sum=6816ec3a6f197cbee0ba6ddb9ec70958bc28870e59864b24e43da0c858079a1b \ + gomod://github.com/p4lang/p4runtime;version=v1.5.0;sha256sum=61f1f3968ca08c35d56e510b2e07bfbf7af5275f4b6b9eabc24de827fae629a5 \ + gomod://github.com/panjf2000/ants/v2;version=v2.11.3;sha256sum=ce1bdd5658ecc36a45fbc1f08378561572c2a88a974f19d31dd5ce4402fd6f12 \ + gomod://github.com/panjf2000/gnet/v2;version=v2.9.7;sha256sum=68202dc7d9e6458fa26ba65e656886cd7b6ea7f040dc3f498250d464617ee385 \ + gomod://github.com/paulmach/orb;version=v0.12.0;sha256sum=278fe3ebba70dcc6bfdaf25b54b65005fdc6810bc4d50d4a4b87bba48d8c7adb \ + gomod://github.com/pavlo-v-chernykh/keystore-go/v4;version=v4.5.0;sha256sum=0dfa036fe73a85a8a0c4cdbbf7bdbe31cabaac172565ca644c52ffff282b119e \ + gomod://github.com/pborman/ansi;version=v1.1.0;sha256sum=97aac1c42e57e19b4778e904c93f60974f78ce7adc72732105e26e55a4ce5dc5 \ + gomod://github.com/pcolladosoto/goslurm;version=v0.1.0;sha256sum=5b406a6cce291fed006aeecddef94813ea13ef7bd356766327fdd1e7623011de \ + gomod://github.com/peterbourgon/unixtransport;version=v0.0.7;sha256sum=9507ea015b59634c4f87641c67a87e227643179dfc10c0480e8a9a35c700130b \ + gomod://github.com/philhofer/fwd;version=v1.2.0;sha256sum=de507513c5985cd0eebc0eccd6b4955da5e2a31814323775b886f29cf9971e98 \ + gomod://github.com/pierrec/lz4/v4;version=v4.1.26;sha256sum=cf67f99d8d4ed84775a51de3167b70907e5436dd2f501f37deffac46c0a51ae1 \ + gomod://github.com/pion/dtls/v3;version=v3.1.2;sha256sum=0aaf56c19b59557295f68126bf14fec679cea7da237b232fbbdb06371300b6ef \ + gomod://github.com/pion/logging;version=v0.2.4;sha256sum=b904074dd76009e71b4e4e0e004a2c7862bff0a8690b4f47410c46b172b3830c \ + gomod://github.com/pion/transport/v2;version=v2.2.10;sha256sum=f1cd09e78b488a556c59df8793b66c4ab91340b5914c5537a3c116b29898d2b3 \ + gomod://github.com/pion/transport/v4;version=v4.0.1;sha256sum=0388cdbc1a1b101d1e726a221de442c4868f458b5be04950c6f0f712e3c63477 \ + gomod://github.com/pkg/browser;version=v0.0.0-20240102092130-5ac0b6a4141c;sha256sum=8524ae36d809564d1f218978593b5c565cf3ee8dccd035d66b336ad0c56e60d1 \ + gomod://github.com/pkg/errors;version=v0.9.1;sha256sum=d4c36b8bcd0616290a3913215e0f53b931bd6e00670596f2960df1b44af2bd07 \ + gomod://github.com/pkg/sftp;version=v1.13.10;sha256sum=390185d4b33cb550ebd27381b4aa80f245a9bda1ccb4dac65685bf94eeb81470 \ + gomod://github.com/pkg/xattr;version=v0.4.12;sha256sum=3657614c6f28f6298164935f48af2515835ae04190ed9f6954b5cdf89b1aee21 \ + gomod://github.com/pmezard/go-difflib;version=v1.0.1-0.20181226105442-5d4384ee4fb2;sha256sum=24ff45e356f638a53bd0c89fff961fbeaecfdb0dc5e482ceed0a2230e0e5f3b7 \ + gomod://github.com/prometheus/client_golang;version=v1.23.2;sha256sum=dfcc6c52ad09e3d0dca2e9f41de7f8d1c0dde7baae4b867353d112918a1511de \ + gomod://github.com/prometheus/client_model;version=v0.6.2;sha256sum=67017b19f220c6ab91ecfdd10a93824e2a8b09fcb6390054dbdc49df3354a9ca \ + gomod://github.com/prometheus/common;version=v0.67.5;sha256sum=9baf08bc138d7097af80f61572b32eeac40727d91e29ea447cb059d0ce57e1a6 \ + gomod://github.com/prometheus/procfs;version=v0.20.1;sha256sum=776376180a30e79e2d3744a6195b19897b1561b0cade53b730a0f4cfe20ca871 \ + gomod://github.com/prometheus/prometheus;version=v0.311.3;sha256sum=e2838c53e9f59896311917f5bbc8aa9a7db155cd7fc186e97237c9c2af35b39c \ + gomod://github.com/prometheus-community/pro-bing;version=v0.8.0;sha256sum=7a3e8af8d650300abfb4df9eeec435d6e5ee26cc67e8783dc24e87c3f815f602 \ + gomod://github.com/rabbitmq/amqp091-go;version=v1.11.0;sha256sum=58df606894faf9bb994c398f72c479a05dc1386859378108dbdb8005d4ff2aa2 \ + gomod://github.com/rclone/rclone;version=v1.69.3;sha256sum=f316bf0c29cdec57c285ee137f4f1149ec7cd601e6ecfac72476f08aceade21a \ + gomod://github.com/rcrowley/go-metrics;version=v0.0.0-20250401214520-65e299d6c5c9;sha256sum=a8c9e9792ad16f31ef8c32232de6243cc02147175661c9f64bc7b292f1c4d0cc \ + gomod://github.com/redis/go-redis/v9;version=v9.19.0;sha256sum=bec0fda4ccf70be68c9ec6b7a0b51343a6e811a9c058db4cde20615950b3d052 \ + gomod://github.com/remyoudompheng/bigfft;version=v0.0.0-20230129092748-24d4a6f8daec;sha256sum=9be16c32c384d55d0f7bd7b03f1ff1e9a4e4b91b000f0aa87a567a01b9b82398 \ + gomod://github.com/rfjakob/eme;version=v1.1.2;sha256sum=6187089d5d40720c5cfeb4814d735d4b23a038f7da6406f088b83907781f4b57 \ + gomod://github.com/riemann/riemann-go-client;version=v0.5.1-0.20211206220514-f58f10cdce16;sha256sum=d66d93d65a04b08ce3ac8e1d7a9cef095ea84ea09670c586626c8e4896df942c \ + gomod://github.com/robbiet480/go.nut;version=v0.0.0-20220219091450-bd8f121e1fa1;sha256sum=d73211a9699b151c0b734b80c987983bf1a5dd15a0dbb97c891c1d66c9338c95 \ + gomod://github.com/robinson/gos7;version=v0.0.0-20240315073918-1f14519e4846;sha256sum=5207bb959c03b27fe760142ef0267c6193c902f535bb33b99058426eaae75748 \ + gomod://github.com/russross/blackfriday/v2;version=v2.1.0;sha256sum=7852750d58a053ce38b01f2c203208817564f552ebf371b2b630081d7004c6ae \ + gomod://github.com/ryanuber/go-glob;version=v1.0.0;sha256sum=2084f36ead38a505489fdb46329502fb627f568224dcc22ef11ec173b61fc2cf \ + gomod://github.com/safchain/ethtool;version=v0.7.0;sha256sum=7a285eefd304a1b429db0c40e3a33308811e2e0a640b747703537ab94b34b0da \ + gomod://github.com/samber/lo;version=v1.52.0;sha256sum=92214cb141963129c5e656d29d459d6a88d505221a8c24b1138ead4ef071b4e9 \ + gomod://github.com/seancfoley/bintree;version=v1.3.1;sha256sum=e7156d4321a8c994b8e5af022c541bbd6a75c327e043e783cd0c5f009b7efe45 \ + gomod://github.com/seancfoley/ipaddress-go;version=v1.7.1;sha256sum=50ffa2038335910d2749655ed8797031b159d8015d12401179a937439081a47d \ + gomod://github.com/segmentio/asm;version=v1.2.1;sha256sum=04ee03ed0972329c3c8fa1cd57a30397be37b82f3e2ba2251d56ba9c6fbc1d99 \ + gomod://github.com/shirou/gopsutil/v4;version=v4.26.4;sha256sum=b30ad4bd325ac2b1d26fcb3ad4a77006a9f6de5a205400c4004fc3e7fa9cb717 \ + gomod://github.com/shopspring/decimal;version=v1.4.0;sha256sum=751d4cd3460984afc72973d2a0df56ed9b10499c5cd0508d7f2207245d9e3315 \ + gomod://github.com/showwin/speedtest-go;version=v1.7.10;sha256sum=ec5875a8778f26413e57f2f125cf6668a8ae53ea75ce5730d8a4bd857383e196 \ + gomod://github.com/signalfx/com_signalfx_metrics_protobuf;version=v0.0.3;sha256sum=0eb620f9cab96df3c1d03260de368bd60c5a16f212e0a3a075148090070a14ea \ + gomod://github.com/signalfx/gohistogram;version=v0.0.0-20160107210732-1ccfd2ff5083;sha256sum=7ed288f60743459d49b4f6f5a8885b674eb2dfb983d36798c270d4ba8703b667 \ + gomod://github.com/signalfx/golib/v3;version=v3.3.54;sha256sum=dd410b125306a3f1a6e1c303080d2a963d25d4ced1f93d83efd04482d98fa025 \ + gomod://github.com/signalfx/sapm-proto;version=v0.12.0;sha256sum=dd3790b6a153c076df4ceb98905bcace7e7bde9fe169d0f6291813c5ad536be2 \ + gomod://github.com/sijms/go-ora/v2;version=v2.9.0;sha256sum=8e770a4e9ec709681258c29b1a2622c7a8f03aab50c1a484c924d6625f3011a9 \ + gomod://github.com/sirupsen/logrus;version=v1.9.4;sha256sum=3847d00c5ee6948f1ff0d0120bc343c55ce852becb7720f8f08f53eecfe9e437 \ + gomod://github.com/sleepinggenius2/gosmi;version=v0.4.4;sha256sum=1623ab0abbe76d6d2a9879adbd48cf583a82bb6917dea70a3539826f7f6b047e \ + gomod://github.com/snowflakedb/gosnowflake;version=v1.19.1;sha256sum=ec99394df76b7cf123300ae59923b8c56cdd73cf0623354395982f6aea810e0e \ + gomod://github.com/spf13/cast;version=v1.10.0;sha256sum=7c7ba27f9979ada980c2a69f6b2fdf7b4ce1f2b766e245c0a4716f546ad7ddce \ + gomod://github.com/spf13/pflag;version=v1.0.10;sha256sum=a246b8c9d3daa87d6c634cdfee1bdf7fa53d5817eeef4fa0c6da43edd12de4ca \ + gomod://github.com/spiffe/go-spiffe/v2;version=v2.6.0;sha256sum=b90f378c70e2c985f61893ca20bf3e8258bb4f66920af759276d330513d0d7d6 \ + gomod://github.com/srebhan/cborquery;version=v1.0.4;sha256sum=4dd173b859a9f5c6791ba89440c4f7d772f70963a6219abe931d9fe46e604bab \ + gomod://github.com/srebhan/protobufquery;version=v1.0.4;sha256sum=7770621193126de5f213219454143393e16974e873a2e48477f251a0531bedfd \ + gomod://github.com/stretchr/objx;version=v0.5.3;sha256sum=cdc804051b06efceea75ee9b0b6349d2f92f17cd46c6193c4a8dfb0f51465a44 \ + gomod://github.com/stretchr/testify;version=v1.11.1;sha256sum=b7325b561ead5304b72b9f32aebc871ff49b3823667d530a49fd6c8f3adfc96e \ + gomod://github.com/tdrn-org/go-hue;version=v1.2.0;sha256sum=c6b6bcd80c0c8245d24112752dc66aa5b33e2d5869fda102e251d81a3bb1d595 \ + gomod://github.com/tdrn-org/go-nsdp;version=v0.5.1;sha256sum=3f83e67a75d9e8f01fe26701d66a5f55012b5f1e32b1f00ea4e96252be2c69bd \ + gomod://github.com/tdrn-org/go-tr064;version=v0.3.0;sha256sum=48b0e51d2f7df861eda4595dd02d94aed3afe373b63dee8b211d0307b177d43a \ + gomod://github.com/testcontainers/testcontainers-go;version=v0.42.0;sha256sum=6347a25e419cc97b6b7bd4b73f922f0334b62f9d92af0cf224db57bd9d0da78f \ + gomod://github.com/thomasklein94/packer-plugin-libvirt;version=v0.5.0;sha256sum=2bb780b073ac9ad307d4f5e9bf325cfb19d6dc42423c2d09b6f537a2d712c896 \ + gomod://github.com/tidwall/gjson;version=v1.18.0;sha256sum=ab8092b3e42f83f003466757c63ec819a45d1e83caa63c6c131cebbe760f1df2 \ + gomod://github.com/tidwall/match;version=v1.1.1;sha256sum=2ba41f7f27330d49e0e432cbf96bf90720a33e4a97be58fe53f63a7e66f04d37 \ + gomod://github.com/tidwall/pretty;version=v1.2.1;sha256sum=9327579bf9e610de753eeb7c35c8cf1e3f56e6e5623cbf65e47bc8076023d1ab \ + gomod://github.com/tidwall/tinylru;version=v1.2.1;sha256sum=bb9ac7eadcfe340188f71d59834ed3c5f227f512e0c0314beea58671559d6ba0 \ + gomod://github.com/tidwall/wal;version=v1.2.1;sha256sum=cc4f324b28d06eac574b045145af780617365c0a9fc510f020062be8cf5ff77e \ + gomod://github.com/tinylib/msgp;version=v1.6.4;sha256sum=bd9770f34c96b48454a1721bb5c595305eb7f13ede94b53527882bf7bf157a39 \ + gomod://github.com/tklauser/go-sysconf;version=v0.3.16;sha256sum=d4c896f77e5934f54d772b5f6a8f8043b8d34df189f6581bc2ba84d239a6b643 \ + gomod://github.com/tklauser/numcpus;version=v0.11.0;sha256sum=7a7527e1f68059a77189ae875c294e5c310925fbb8ba5a6c794edd2b7e687267 \ + gomod://github.com/twmb/murmur3;version=v1.1.7;sha256sum=471074aad12971eedd65ddd6aa55a2bdf8546e3c561af94ccec24621a323d664 \ + gomod://github.com/uber/jaeger-client-go;version=v2.30.0+incompatible;sha256sum=9af585cfb27d69829b8e3f421fedf409a9ea771fcb142f2354bdfbbac77068a8 \ + gomod://github.com/uber/jaeger-lib;version=v2.4.1+incompatible;sha256sum=b43fc0c89c3c54498ae6108453ca2af987e074680742dd79bdceda94685a7efb \ + gomod://github.com/urfave/cli;version=v1.22.17;sha256sum=eb2629ff4d93a527036f0ebb57cf67caa10e97fdd9181740f8877936528bf6a9 \ + gomod://github.com/urfave/cli/v2;version=v2.27.7;sha256sum=a9a4175ab5d550f093f716e8971a5c8539aa738675a210f6321cfb5905f0488a \ + gomod://github.com/vapourismo/knx-go;version=v0.0.0-20240915133544-a6ab43471c11;sha256sum=c69510b1d8e7890dd0e323355aa3f6af75d70eb45332d97f2d5193c13d0d8dae \ + gomod://github.com/vertica/vertica-sql-go;version=v1.3.6;sha256sum=27f73acab8312ecdfb493c7032b4242d71c1323be7bdf3f33217a2268b08027f \ + gomod://github.com/vishvananda/netlink;version=v1.3.1;sha256sum=213c83dcc66cbeca2b83eca59d08649fa5ea96f463a8c014e8d6b6d5e601887e \ + gomod://github.com/vishvananda/netns;version=v0.0.5;sha256sum=07804b88c922c2a6780efe392ffef9d126eac584384eb3eb17bcadd34cfa9422 \ + gomod://github.com/vjeantet/grok;version=v1.0.1;sha256sum=190923f262165458e65938402c5c5833655728a946338366302dcffd71a7f313 \ + gomod://github.com/vmware/govmomi;version=v0.53.1;sha256sum=ff9b9be3cd437e7c036b8be3a3b11342a496a34ea33fd7d7e2ed4373992a4d0c \ + gomod://github.com/wavefronthq/wavefront-sdk-go;version=v0.15.0;sha256sum=84867a03e3d711e6c43b5918d9cffc1c93c636c18f68d17c03597c9a5886422d \ + gomod://github.com/x448/float16;version=v0.8.4;sha256sum=73b24a41037ea999ab66851e3798a0973dbb1f214925915b01f0820f7b2f1500 \ + gomod://github.com/xanzy/ssh-agent;version=v0.3.3;sha256sum=19a86c2623b20cc98687bddd89e3f023db0ca51c8bc9e38b9ad9c56e5b7d110d \ + gomod://github.com/xdg/scram;version=v1.0.5;sha256sum=5072be9b0e099dcc742d10ab5eab8cc49ec5115c842f779c1da72673638a4699 \ + gomod://github.com/xdg/stringprep;version=v1.0.3;sha256sum=7cb9711fd7b3c1518e1fbd4e39be11737d7006a5e4a59f1ceb4ba9c205eb90fa \ + gomod://github.com/xdg-go/scram;version=v1.2.0;sha256sum=1b5efe41cbf50ddf6d60184fd094956a608cff510779c0c41ea557266ff36c30 \ + gomod://github.com/xdg-go/stringprep;version=v1.0.4;sha256sum=7e1d790cb949b3188b960c9fe1f68c0385553cd6afd4e78bc0d2854329f7022f \ + gomod://github.com/xrash/smetrics;version=v0.0.0-20250705151800-55b8f293f342;sha256sum=24bc24bca437229054b0bfe112fb6a11968ae9a89ff28cdc23233d5435b38c4d \ + gomod://github.com/youmark/pkcs8;version=v0.0.0-20240726163527-a2c0da244d78;sha256sum=cdcf5e96850f9f60bc96ab512e4bd06ee19dd2dbe855260c3589c6c79a1bcfb5 \ + gomod://github.com/yuin/gopher-lua;version=v0.0.0-20200816102855-ee81675732da;sha256sum=69afe0378bc97b75e1d9cacd79a21cc0b366fefa0f1b5d87965115e9591cb810 \ + gomod://github.com/zeebo/xxh3;version=v1.1.0;sha256sum=0cd36657902317f81f3d31b217ebaca6f98dfb665f1af611d1db0904a689bcd1 \ + gomod://github.com/zentures/cityhash;version=v0.0.0-20131128155616-cdd6a94144ab;sha256sum=51e9ed78855efc25cd4b0b68b5a65636438ab979c9cf9cc9218a548edea42442 \ + gomod://go.bug.st/serial;version=v1.6.4;sha256sum=4d529616edc9d0ae1213c7bdf76ff45b2c269561262d958f8113993fde38fd49 \ + gomod://go.mongodb.org/mongo-driver;version=v1.17.9;sha256sum=42f4a475c38067e0c7b8490414711298193990d347294307c3c12829f545fcc4 \ + gomod://go.opencensus.io;version=v0.24.0;sha256sum=203a767d7f8e7c1ebe5588220ad168d1e15b14ae70a636de7ca9a4a88a7e0d0c \ + gomod://go.opentelemetry.io/auto/sdk;version=v1.2.1;sha256sum=a08a16fc0a7041cdb875f47a260a56000632212c85f65a302a043c76380c8335 \ + gomod://go.opentelemetry.io/collector/consumer/consumererror;version=v0.135.0;sha256sum=8b27d6d41bc93b510b6d39fa10e20f8f87f9011f9c53ce090956189233b0b5be \ + gomod://go.opentelemetry.io/collector/featuregate;version=v1.57.0;sha256sum=290571424d71fb92e65eef26e07b4ee828bfd277e459159acfc950e3c97d8067 \ + gomod://go.opentelemetry.io/collector/pdata;version=v1.57.0;sha256sum=0ba183d7797304fe9afe0928695aac373e6af435266c820e8b6e17f7d469b738 \ + gomod://go.opentelemetry.io/collector/pdata/pprofile;version=v0.140.0;sha256sum=19f47f4011c846a426652bc8dd3d5e876e117bd040d0a1f028c6cdd43894eb53 \ + gomod://go.opentelemetry.io/collector/semconv;version=v0.128.0;sha256sum=0b03c5a57cacaa1f4242f91765ed8561e6b0f84c023b14f4bc005878363f926e \ + gomod://go.opentelemetry.io/contrib/detectors/gcp;version=v1.42.0;sha256sum=ea93f7b449820f737e0c540b15cad5777bc11fc0d7f67453e1dcb11271f808cd \ + gomod://go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc;version=v0.67.0;sha256sum=8d28360aab471b397d81ea1e5e738fd99df97c3ba04b485e7924cd716d6c7cd1 \ + gomod://go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp;version=v0.68.0;sha256sum=84a5f546bebf91ebebe431b04f13230e0bd189a0eefcc6652f523e4c29ae12ba \ + gomod://go.opentelemetry.io/otel;version=v1.43.0;sha256sum=177d24c79e756950c431aa87c1c613bb807cc7fe435260b72c5f675b01651921 \ + gomod://go.opentelemetry.io/otel/metric;version=v1.43.0;sha256sum=3efb5ad706fab815f4b2e8fc89c1656ec8d2403f07edd406c17c2310dd8a08a6 \ + gomod://go.opentelemetry.io/otel/sdk;version=v1.43.0;sha256sum=cf46abeb516a88a0eb33117103e39fb3161f0db91cd487a84748aae16938e8f2 \ + gomod://go.opentelemetry.io/otel/sdk/metric;version=v1.43.0;sha256sum=b02c5dded25925d2becf8ea69d446f2eb786a576ab4a7dd8014f3afbd861fc49 \ + gomod://go.opentelemetry.io/otel/trace;version=v1.43.0;sha256sum=34fdc70a75e90d68e36caa59b9e800a5de5266118393eaee4489dd0abe3cb62d \ + gomod://go.opentelemetry.io/proto/otlp;version=v1.10.0;sha256sum=199278343f9a66953023278601384dbc9f42896c2e0581bfbd65bd5f044a9a66 \ + gomod://go.opentelemetry.io/proto/otlp/collector/profiles/v1development;version=v0.3.0;sha256sum=693b24c9c316bdf6d1ca7a6e329832a6da40124117a8b799740d81bdee42e312 \ + gomod://go.opentelemetry.io/proto/otlp/profiles/v1development;version=v0.3.0;sha256sum=b7d5661cd8ebe454d48926d4442e67c3a88d61516cbd5d4400a34e8cb5ad9259 \ + gomod://go.starlark.net;version=v0.0.0-20260326113308-fadfc96def35;sha256sum=14ed3eb617071c624b8f702a7d750de556089ec32c1446a9ecd1440b641cbce6 \ + gomod://go.step.sm/crypto;version=v0.77.9;sha256sum=8cfe324ad750803ebe66ae6055a662dbf3591d38fed70fd33d09e1a2a21bc51b \ + gomod://go.uber.org/atomic;version=v1.11.0;sha256sum=8109325abe17488245878b07f3c35b10ba7d1aa3310f792968f5b9deba432e2c \ + gomod://go.uber.org/multierr;version=v1.11.0;sha256sum=2249b5d2fdce61f6ee661a679d8552599af084a761cbbc871da77641bddce0c3 \ + gomod://go.uber.org/zap;version=v1.27.1;sha256sum=38760227142d38369069374c005707bc6b3c270a75f34fa3f17c48c863143cdc \ + gomod://go.yaml.in/yaml/v2;version=v2.4.4;sha256sum=1b98a6a498cf255c5f2982d32c74633bc7969770957e98103ac1e14345aa4576 \ + gomod://go.yaml.in/yaml/v3;version=v3.0.4;sha256sum=0317dae56eaa9e9954467c8768fd6a89ba2005f1534e2c26fce5163ad8d2ef31 \ + gomod://golang.org/x/crypto;version=v0.50.0;sha256sum=aaf9503dd088d2727e08f213d23424ebc75a52ee609f084ec4c726f3590c0ea5 \ + gomod://golang.org/x/exp;version=v0.0.0-20260312153236-7ab1446f8b90;sha256sum=95da5ca63d61de1eea36153c11ca9a645c4c6344510be104fc7cf8f873850ac2 \ + gomod://golang.org/x/net;version=v0.53.0;sha256sum=3808b07d64ba58f58ca91737f0a165439f72b03a512ea901bad2aa1e168092d5 \ + gomod://golang.org/x/oauth2;version=v0.36.0;sha256sum=15bf65ff103e5dafc809d78cd037a1d1e88ccb8451824e851156002a13304504 \ + gomod://golang.org/x/sync;version=v0.20.0;sha256sum=7179d4d68800f6fdcadb9d4bbf11cbb5df9b40360c89305c203fe20723cbd375 \ + gomod://golang.org/x/sys;version=v0.43.0;sha256sum=cb8b073934cf7e579c9f80c4d12619d5f96fcf97af6f07fdc649e7acec0aaddf \ + gomod://golang.org/x/term;version=v0.42.0;sha256sum=c69cf2bf68d1d73e15a31c1c9a687316edef5c4ef9b6bb35aaedc08c6204f3c2 \ + gomod://golang.org/x/text;version=v0.36.0;sha256sum=15c60227cf084605a0256b8eacd9cfaf411109fe80c9e68b14a9367a5e42b23c \ + gomod://golang.org/x/time;version=v0.15.0;sha256sum=8cfb20e915fa5d6c3fd264304233f8d71a3385e48a37819239c532ad9da27f84 \ + gomod://golang.org/x/xerrors;version=v0.0.0-20240903120638-7835f813f4da;sha256sum=07ee9f680118861ee732ce0df4553b834383b87e0519fb9a0990c51d7abd6885 \ + gomod://golang.zx2c4.com/wireguard;version=v0.0.0-20211209221555-9c9e7e272434;sha256sum=2ac8db6f66d561a288eb4e69035e614c2a944e047b5a6809c91da2a44d7a4536 \ + gomod://golang.zx2c4.com/wireguard/wgctrl;version=v0.0.0-20211230205640-daad0b7ba671;sha256sum=3ce62069b5e6638d60d3106954978083cc3a2d1c36f78ef3e780d54b38b0a7d3 \ + gomod://gonum.org/v1/gonum;version=v0.17.0;sha256sum=dadeb3d260548de27375f7188bdfd5a175110120fd8ee8085a63b0dff2cae501 \ + gomod://google.golang.org/api;version=v0.277.0;sha256sum=f715b4117dfbe100cf7f81da6da21051002530a640d43f3d542b46a794a25d0b \ + gomod://google.golang.org/genproto;version=v0.0.0-20260319201613-d00831a3d3e7;sha256sum=a75d9f7ea0d1bba57acec769c848764c866c88f22fe8c0e9b295134d20e5400f \ + gomod://google.golang.org/genproto/googleapis/api;version=v0.0.0-20260401024825-9d38bb4040a9;sha256sum=88b3d97eaf60fbc3a67fb3bf0e190cf9a5dc9c8d2b6e3b9cbb80bceb004967bf \ + gomod://google.golang.org/genproto/googleapis/rpc;version=v0.0.0-20260427160629-7cedc36a6bc4;sha256sum=062ccd5b81600035cec7a92ad535495ad4b7d538e9f170067c139f71d9f5173f \ + gomod://google.golang.org/grpc;version=v1.81.0;sha256sum=988f30793f5df8e4238c51ecf98a7315e574f90c9e9b4152c0637cd45099a555 \ + gomod://google.golang.org/protobuf;version=v1.36.12-0.20260120151049-f2248ac996af;sha256sum=d8e53d0f95089a69bdcce74a3b0b096aed85069e05bbcfc9a82685cd05e0bd8c \ + gomod://gopkg.in/evanphx/json-patch.v4;version=v4.13.0;sha256sum=de94747c5023a2c83909845c76acc6b4bfe28b44994207394b5e057f3085625a \ + gomod://gopkg.in/fatih/pool.v2;version=v2.0.0;sha256sum=8b248beafd7f38c64fe0d9afd46318c64458a68f2463967e14ac3c374eb399d4 \ + gomod://gopkg.in/fsnotify.v1;version=v1.4.7;sha256sum=ce003d540f42b3c0a3dec385deb387b255b536b25ea4438baa65b89458b28f75 \ + gomod://gopkg.in/gorethink/gorethink.v3;version=v3.0.5;sha256sum=0e1e3fad8c729ade86635642bc15af8a8c8be1f46827cfe717945a578b91afad \ + gomod://gopkg.in/inf.v0;version=v0.9.1;sha256sum=08abac18c95cc43b725d4925f63309398d618beab68b4669659b61255e5374a0 \ + gomod://gopkg.in/ini.v1;version=v1.67.1;sha256sum=9af5f66337e725f2ec19d23eff4f72e1b14c67b4b0c80b0677a3a2c0944cf09c \ + gomod://gopkg.in/natefinch/lumberjack.v2;version=v2.2.1;sha256sum=e28804b050e7debf4f5b2dd8d241d804f5d592d0519b6e7a3dc9d4cce6f075b3 \ + gomod://gopkg.in/olivere/elastic.v5;version=v5.0.86;sha256sum=6c4bbef099037d273eb30b9a94b837c1aab169b578a8bb635f920945809a6757 \ + gomod://gopkg.in/tomb.v1;version=v1.0.0-20141024135613-dd632973f1e7;sha256sum=34898dc0e38ba7a792ab74a3e0fa113116313fd9142ffb444b011fd392762186 \ + gomod://gopkg.in/tomb.v2;version=v2.0.0-20161208151619-d5d1b5820637;sha256sum=15d93d96e1e8b2d8daf7b9e57a2a9193c0e676a2c6b63d9325bf34b53e93db00 \ + gomod://gopkg.in/yaml.v2;version=v2.4.0;sha256sum=ede49e27c4cca6cdd2ec719aed8ea4d363710cceb3d411e7a786fbdec0d391fd \ + gomod://gopkg.in/yaml.v3;version=v3.0.1;sha256sum=aab8fbc4e6300ea08e6afe1caea18a21c90c79f489f52c53e2f20431f1a9a015 \ + gomod://howett.net/plist;version=v0.0.0-20181124034731-591f970eefbb;sha256sum=58c94cd949be714c0ee320d1be0cff3116fc829c412b9e7b816b03fb3c85f463 \ + gomod://k8s.io/api;version=v0.36.0;sha256sum=6a0530bed0f2bf9ceaa28d89235e0ce689f7eca9ca9871224d3ff2f2fdaeb2e4 \ + gomod://k8s.io/apimachinery;version=v0.36.0;sha256sum=57c5ae00e762369314a04026436fdd10f8e575b5f9696e81cbd4c84153dffe94 \ + gomod://k8s.io/client-go;version=v0.36.0;sha256sum=5e55cd97859c4d6488f926133a63a7b7ec1e3732610e77bf5f5660fcbd06fd00 \ + gomod://k8s.io/klog/v2;version=v2.140.0;sha256sum=46fab8686139b04c42f1b44e84c5a162667fbf22628216d5061d95206625a886 \ + gomod://k8s.io/kube-openapi;version=v0.0.0-20260317180543-43fb72c5454a;sha256sum=49a6e8055e90d55f798310e57a8163422d0b5694c44e4eb61e1d24397d8b1ca4 \ + gomod://k8s.io/utils;version=v0.0.0-20260319190234-28399d86e0b5;sha256sum=5d87a7ffd5c0ba5381c1af420a421938a4bff87badf2d002c17013feee978a54 \ + gomod://layeh.com/radius;version=v0.0.0-20221205141417-e7fbddd11d68;sha256sum=ef4a9d5e85c7a30e02c0d1dd8092e76b4e3332cde69504e1216a91989c6a9b84 \ + gomod://modernc.org/libc;version=v1.72.0;sha256sum=dfef4296f4904c217132c8c7ad8b03b28656a5980843f5a350ba66f0a73d7528 \ + gomod://modernc.org/mathutil;version=v1.7.1;sha256sum=5be0da18eb557a1198bfe370e37022f2dbdb9cdc5d63130fc8e8330ab240bd2e \ + gomod://modernc.org/memory;version=v1.11.0;sha256sum=4930b81d10818a6d11497204fe06b2edc359136a7881586363caa694c8607d0c \ + gomod://modernc.org/sqlite;version=v1.50.0;sha256sum=15de842b4959aba719c642f03b839b0345b9926181766a9e330a052005895730 \ + gomod://sigs.k8s.io/json;version=v0.0.0-20250730193827-2d320260d730;sha256sum=7cec6eae3e4e4c9c1e0a009eef200740990fafbcb9cab081eb18ce32f6e7a7b9 \ + gomod://sigs.k8s.io/randfill;version=v1.0.0;sha256sum=31dbbfc44ce12f78f1b68d6bbeed8526aa73c53243353d44d50b2532c828f5f1 \ + gomod://sigs.k8s.io/structured-merge-diff/v6;version=v6.3.2;sha256sum=535b0fb3212d548fcaff4b475251658ec7b621e3918031dec63c275f043f8d3d \ + gomod://sigs.k8s.io/yaml;version=v1.6.0;sha256sum=cf88648a471581817b00a42ee8d24fd73eb0e3503998cf46d8e63787e11e5052 \ + gomod://software.sslmate.com/src/go-pkcs12;version=v0.7.1;sha256sum=46697244141879cc9d9ee728fdf4158d486da082e54b6117f0701c44b0ce9eb7 \ +" diff --git a/recipes-devtools/telegraf/telegraf-licenses.inc b/recipes-devtools/telegraf/telegraf-licenses.inc new file mode 100644 index 0000000..6927132 --- /dev/null +++ b/recipes-devtools/telegraf/telegraf-licenses.inc @@ -0,0 +1,568 @@ + +# This file has been generated by go-mod-update-modules.bbclass +# +# Do not modify it by hand, as the contents will be replaced when +# running the update-modules task. + +LICENSE += "& Apache-2.0 & BSD-2-Clause & BSD-3-Clause & EPL-2.0 & ISC & MIT & MIT-0 & MPL-2.0 & Unlicense" + +LIC_FILES_CHKSUM += "\ + file://pkg/mod/cel.dev/expr@v0.25.1/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go/auth/oauth2adapt@v0.2.8/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go/auth@v0.20.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go/bigquery@v1.77.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go/compute/metadata@v0.9.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go/iam@v1.7.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go/monitoring@v1.28.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go/pubsub/v2@v2.6.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go/storage@v1.62.1/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/cloud.google.com/go@v0.123.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/code.cloudfoundry.org/clock@v1.2.0/LICENSE;md5=2b42edef8fa55315f34f2370b4715ca9;spdx=Apache-2.0 \ + file://pkg/mod/collectd.org@v0.6.0/LICENSE;md5=1066c3ee0bb6b5d3474b33649d4b0ede;spdx=ISC \ + file://pkg/mod/dario.cat/mergo@v1.0.2/LICENSE;md5=ff13e03bb57bf9c52645f2f942afa28b;spdx=BSD-3-Clause \ + file://pkg/mod/filippo.io/edwards25519@v1.2.0/LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/!azure!a!d/microsoft-authentication-library-for-go@v1.7.1/LICENSE;md5=e74f78882cab57fd1cc4c5482b9a214a;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-amqp-common-go/v4@v4.2.0/LICENSE;md5=b98fddd052bb2f5ddbcdbd417ffb26a8;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-event-hubs-go/v3@v3.6.2/LICENSE;md5=b98fddd052bb2f5ddbcdbd417ffb26a8;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-kusto-go/azkustodata@v1.2.2/LICENSE;md5=36453fb77bf995e1a92d5dd7fb118eee;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-kusto-go/azkustoingest@v1.2.2/LICENSE;md5=36453fb77bf995e1a92d5dd7fb118eee;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/azcore@v1.21.1/LICENSE.txt;md5=a93cb0863fda8e7f177e09f6943951b4;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/azidentity@v1.13.1/LICENSE.txt;md5=a93cb0863fda8e7f177e09f6943951b4;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/data/aztables@v1.4.1/LICENSE.txt;md5=261d8686a7cf1ce9570cdc99746659f8;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/internal@v1.12.0/LICENSE.txt;md5=a93cb0863fda8e7f177e09f6943951b4;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/messaging/azeventhubs/v2@v2.0.2/LICENSE.txt;md5=e848d080178fb2d08b67acc5ba80b9fd;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor@v0.11.0/LICENSE.txt;md5=daac66e77ce222a3daabdb4e4f578416;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources@v1.2.0/LICENSE.txt;md5=daac66e77ce222a3daabdb4e4f578416;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/storage/azblob@v1.6.3/LICENSE.txt;md5=261d8686a7cf1ce9570cdc99746659f8;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/storage/azqueue@v1.0.1/LICENSE.txt;md5=261d8686a7cf1ce9570cdc99746659f8;spdx=MIT \ + file://pkg/mod/github.com/!azure/azure-sdk-for-go@v68.0.0+incompatible/LICENSE.txt;md5=4f7454c9bcbb0acee6d9a971001befe2;spdx=MIT \ + file://pkg/mod/github.com/!azure/go-amqp@v1.5.0/LICENSE;md5=e419fb05c99af03dfdbd3be8478cbc4e;spdx=MIT \ + file://pkg/mod/github.com/!azure/go-autorest/autorest/adal@v0.9.24/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-autorest/autorest/azure/auth@v0.5.13/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-autorest/autorest/azure/cli@v0.4.6/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-autorest/autorest/date@v0.3.0/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-autorest/autorest/to@v0.4.0/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-autorest/autorest/validation@v0.3.1/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-autorest/autorest@v0.11.30/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-autorest/logger@v0.2.1/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-autorest/tracing@v0.6.0/LICENSE;md5=a250e5ac3848f2acadb5adcb9555c18b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!azure/go-ntlmssp@v0.1.1/LICENSE;md5=7f7cc56311d298677f304d0ffce374d8;spdx=MIT \ + file://pkg/mod/github.com/!burnt!sushi/toml@v1.6.0/COPYING;md5=9e24c0e2a784c1d1fcabb279f4f107e0;spdx=MIT \ + file://pkg/mod/github.com/!click!house/ch-go@v0.71.0/LICENSE;md5=0dd6b2ffd26dac6cb29f61f1155157c1;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!click!house/clickhouse-go/v2@v2.46.0/LICENSE;md5=78bb56a6536ec39c5ff779cf8a405750;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!google!cloud!platform/opentelemetry-operations-go/detectors/gcp@v1.31.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!google!cloud!platform/opentelemetry-operations-go/exporter/metric@v0.55.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!google!cloud!platform/opentelemetry-operations-go/internal/resourcemapping@v0.55.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!i!b!m/nzgo/v12@v12.0.12/LICENSE.md;md5=d4f134d653a61aec28549bee8cbb97d7;spdx=MIT \ + file://pkg/mod/github.com/!i!b!m/sarama@v1.48.0/LICENSE.md;md5=05234e0c56234d44778615b08bc1a14b;spdx=MIT \ + file://pkg/mod/github.com/!masterminds/goutils@v1.1.1/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!masterminds/semver/v3@v3.5.0/LICENSE.txt;md5=4c1ffeeb02e3f8f4af042205e189b3f7;spdx=MIT \ + file://pkg/mod/github.com/!masterminds/semver@v1.5.0/LICENSE.txt;md5=4c1ffeeb02e3f8f4af042205e189b3f7;spdx=MIT \ + file://pkg/mod/github.com/!masterminds/sprig/v3@v3.3.0/LICENSE.txt;md5=4ed8d725bea5f035fcea1ab05a767f78;spdx=MIT \ + file://pkg/mod/github.com/!masterminds/sprig@v2.22.0+incompatible/LICENSE.txt;md5=652ef7590e03427663a9b9d1318a9fbb;spdx=MIT \ + file://pkg/mod/github.com/!max-!sum/base32768@v0.0.0-20230304063302-18e6ce5945fd/LICENSE;md5=53a7faa559b046b1571765e974438d2c;spdx=MIT \ + file://pkg/mod/github.com/!mellanox/rdmamap@v1.2.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/!s!a!p/go-hdb@v1.16.7/LICENSE.md;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/99designs/keyring@v1.2.2/LICENSE;md5=394fdd3ceec007d1970ab70f19a83d56;spdx=MIT \ + file://pkg/mod/github.com/abbot/go-http-auth@v0.4.0/LICENSE;md5=ff253ad767462c46be284da12dda33e8;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aerospike/aerospike-client-go/v5@v5.11.0/LICENSE;md5=70bce174688e42e26a1cb64c30300ccd;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aerospike/aerospike-client-go/v5@v5.11.0/pkg/bcrypt/LICENSE;md5=94d9bbe24b03be19e69b3e9e8e7521a1;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/alecthomas/participle@v0.4.1/COPYING;md5=5d5bf78db4b4e33b05aa47e51384f131;spdx=MIT \ + file://pkg/mod/github.com/alecthomas/units@v0.0.0-20240927000941-0f3dac36c52b/COPYING;md5=c5ef1b09608767a6284a2cffd3b9765f;spdx=MIT \ + file://pkg/mod/github.com/alitto/pond/v2@v2.7.1/LICENSE;md5=c8478b568b74ca788d1f4da870f94321;spdx=MIT \ + file://pkg/mod/github.com/alitto/pond@v1.9.2/LICENSE;md5=c8478b568b74ca788d1f4da870f94321;spdx=MIT \ + file://pkg/mod/github.com/aliyun/alibaba-cloud-sdk-go@v1.63.107/LICENSE;md5=815228b833e1826a08c7cef5b6f00363;spdx=Apache-2.0 \ + file://pkg/mod/github.com/amir/raidman@v0.0.0-20170415203553-1ccc43bfb9c9/UNLICENSE;md5=7246f848faa4e9c9fc0ea91122d6e680;spdx=Unlicense \ + file://pkg/mod/github.com/andybalholm/brotli@v1.2.1/LICENSE;md5=941ee9cd1609382f946352712a319b4b;spdx=MIT \ + file://pkg/mod/github.com/andybalholm/brotli@v1.2.1/flate/LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/antchfx/jsonquery@v1.3.7/LICENSE;md5=5debb370f50e1dfd24ff5144233a2ef6;spdx=MIT \ + file://pkg/mod/github.com/antchfx/xmlquery@v1.5.1/LICENSE;md5=5debb370f50e1dfd24ff5144233a2ef6;spdx=MIT \ + file://pkg/mod/github.com/antchfx/xpath@v1.3.6/LICENSE;md5=5debb370f50e1dfd24ff5144233a2ef6;spdx=MIT \ + file://pkg/mod/github.com/antithesishq/antithesis-sdk-go@v0.7.0-default-no-op/LICENSE;md5=d4acd312580e85f1c3581f3db0284c3f;spdx=MIT \ + file://pkg/mod/github.com/antlr4-go/antlr/v4@v4.13.1/LICENSE;md5=f399e127495f9783cfbe2b3b2802555f;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/apache/arrow/go/v15@v15.0.2/LICENSE.txt;md5=9046099156f93a7f0ac340571476a58b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/apache/arrow-go/v18@v18.6.0/LICENSE.txt;md5=6809686fee171a5b91c0fa6a6600ff14;spdx=Apache-2.0 \ + file://pkg/mod/github.com/apache/inlong/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-golang@v1.0.7/LICENSE;md5=9ebf09575297c1d970141b1562ed9f27;spdx=Apache-2.0 \ + file://pkg/mod/github.com/apache/iotdb-client-go@v1.3.7/LICENSE;md5=6455b01b6f20e76eda9400c5951c7d65;spdx=Apache-2.0 \ + file://pkg/mod/github.com/apache/thrift@v0.23.1-0.20260429145742-d2acd3c49e58/LICENSE;md5=bdfca4cb0874071cc3e42d2ae3b05a77;spdx=Apache-2.0 \ + file://pkg/mod/github.com/apapsch/go-jsonmerge/v2@v2.0.0/LICENSE;md5=d28a9354af0254dfae10c119378968c3;spdx=MIT \ + file://pkg/mod/github.com/aristanetworks/glog@v0.0.0-20191112221043-67e8567f59f3/LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aristanetworks/goarista@v0.0.0-20190325233358-a123909ec740/COPYING;md5=2ee41112a44fe7014dce33e26468ba93;spdx=Apache-2.0 \ + file://pkg/mod/github.com/armon/go-metrics@v0.4.1/LICENSE;md5=d2d77030c0183e3d1e66d26dc1f243be;spdx=MIT \ + file://pkg/mod/github.com/awnumar/memcall@v0.4.0/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/awnumar/memguard@v0.23.0/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-msk-iam-sasl-signer-go@v1.0.4/LICENSE;md5=34400b68072d710fecd0a2940a0d1658;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream@v1.7.10/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/config@v1.32.17/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/credentials@v1.19.16/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/feature/ec2/imds@v1.18.23/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/feature/s3/manager@v1.17.43/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/internal/configsources@v1.4.23/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2@v2.7.23/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/internal/v4a@v1.4.24/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/cloudwatch@v1.57.0/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs@v1.73.0/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/dynamodb@v1.57.3/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/ec2@v1.300.0/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding@v1.13.9/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/internal/checksum@v1.9.13/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery@v1.11.23/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url@v1.13.23/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/internal/s3shared@v1.19.21/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/kinesis@v1.43.7/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/s3@v1.97.3/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/signin@v1.0.11/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/sso@v1.30.17/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/ssooidc@v1.35.21/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/sts@v1.42.1/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2/service/timestreamwrite@v1.35.22/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2@v1.41.7/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/aws-sdk-go-v2@v1.41.7/internal/sync/singleflight/LICENSE;md5=bdc234595bc2fe370918f5de5077c8e9;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/aws/smithy-go@v1.25.1/LICENSE;md5=34400b68072d710fecd0a2940a0d1658;spdx=Apache-2.0 \ + file://pkg/mod/github.com/aws/smithy-go@v1.25.1/internal/sync/singleflight/LICENSE;md5=bdc234595bc2fe370918f5de5077c8e9;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/benbjohnson/clock@v1.3.5/LICENSE;md5=b812f1e4ef9067011cad556daf595138;spdx=MIT \ + file://pkg/mod/github.com/beorn7/perks@v1.0.1/LICENSE;md5=0d0738f37ee8dc0b5f88a32e83c60198;spdx=MIT \ + file://pkg/mod/github.com/bluenviron/gomavlib/v3@v3.3.1/LICENSE;md5=77fd2623bd5398430be5ce60489c2e81;spdx=MIT \ + file://pkg/mod/github.com/blues/jsonata-go@v1.5.4/LICENSE;md5=0b1aa20df6ff22219517c0ad0999a74a;spdx=MIT \ + file://pkg/mod/github.com/bmatcuk/doublestar/v3@v3.0.0/LICENSE;md5=2a0ed06d3f9d0a3be066dc72088ae2ed;spdx=MIT \ + file://pkg/mod/github.com/boschrexroth/ctrlx-datalayer-golang@v1.3.1/LICENSE;md5=760d49114871c0b7da53b5c6e786a7e8;spdx=MIT \ + file://pkg/mod/github.com/brutella/dnssd@v1.2.14/LICENSE;md5=b7911ce0072d96e47e370a75d8c5c49c;spdx=MIT \ + file://pkg/mod/github.com/bufbuild/protocompile@v0.14.1/LICENSE;md5=1b8a3933f8f169fc62a45f6e612a5830;spdx=Apache-2.0 \ + file://pkg/mod/github.com/bwmarrin/snowflake@v0.3.0/LICENSE;md5=e27885730715edf46a1813d26609fcf7;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/caio/go-tdigest/v4@v4.0.1/LICENSE;md5=d1fb2347fdcbf952e01cfa52413e237b;spdx=MIT \ + file://pkg/mod/github.com/caio/go-tdigest@v3.1.0+incompatible/LICENSE;md5=d1fb2347fdcbf952e01cfa52413e237b;spdx=MIT \ + file://pkg/mod/github.com/cenkalti/backoff/v4@v4.3.0/LICENSE;md5=1571d94433e3f3aa05267efd4dbea68b;spdx=MIT \ + file://pkg/mod/github.com/cenkalti/backoff@v2.2.1+incompatible/LICENSE;md5=1571d94433e3f3aa05267efd4dbea68b;spdx=MIT \ + file://pkg/mod/github.com/cespare/xxhash/v2@v2.3.0/LICENSE.txt;md5=802da049c92a99b4387d3f3d91b00fa9;spdx=MIT \ + file://pkg/mod/github.com/cisco-ie/nx-telemetry-proto@v0.0.0-20230117155933-f64c045c77df/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/clarify/clarify-go@v0.4.1/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/clipperhouse/uax29/v2@v2.7.0/LICENSE;md5=39b00daa69674119df37aadf8ab34aeb;spdx=MIT \ + file://pkg/mod/github.com/cloudevents/sdk-go/v2@v2.16.2/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/cncf/xds/go@v0.0.0-20260202195803-dba9d589def2/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/compose-spec/compose-go@v1.20.2/LICENSE;md5=9740d093a080530b5c5c6573df9af45a;spdx=Apache-2.0 \ + file://pkg/mod/github.com/containerd/errdefs/pkg@v0.3.0/LICENSE;md5=1269f40c0d099c21a871163984590d89;spdx=Apache-2.0 \ + file://pkg/mod/github.com/containerd/errdefs@v1.0.0/LICENSE;md5=1269f40c0d099c21a871163984590d89;spdx=Apache-2.0 \ + file://pkg/mod/github.com/containerd/log@v0.1.0/LICENSE;md5=1269f40c0d099c21a871163984590d89;spdx=Apache-2.0 \ + file://pkg/mod/github.com/containerd/platforms@v0.2.1/LICENSE;md5=1269f40c0d099c21a871163984590d89;spdx=Apache-2.0 \ + file://pkg/mod/github.com/coocood/freecache@v1.2.7/LICENSE;md5=def8db78544b928bab29799fdde1ae8a;spdx=MIT \ + file://pkg/mod/github.com/coreos/go-semver@v0.3.1/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/coreos/go-systemd/v22@v22.7.0/LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5;spdx=Apache-2.0 \ + file://pkg/mod/github.com/couchbase/go-couchbase@v0.1.1/LICENSE;md5=8c0ee51d47029f985fab1143191e0402;spdx=MIT \ + file://pkg/mod/github.com/couchbase/gomemcached@v0.1.3/LICENSE;md5=36b595bc1ba2cd69b35c21baf8127264;spdx=MIT \ + file://pkg/mod/github.com/couchbase/goutils@v0.1.0/LICENSE.md;md5=d2794c0df5b907fdace235a619d80314;spdx=Apache-2.0 \ + file://pkg/mod/github.com/cpuguy83/dockercfg@v0.3.2/LICENSE;md5=6b739eaeb06ba853132b267c6bbef8c0;spdx=MIT \ + file://pkg/mod/github.com/cpuguy83/go-md2man/v2@v2.0.7/LICENSE.md;md5=80794f9009df723bbc6fe19234c9f517;spdx=MIT \ + file://pkg/mod/github.com/creack/goselect@v0.1.3/LICENSE;md5=53145d9bb75251a18e111de5d23803e6;spdx=MIT \ + file://pkg/mod/github.com/datadope-io/go-zabbix/v2@v2.0.1/LICENSE;md5=ebee59a87bff79245db00d91aefadfa5;spdx=MIT \ + file://pkg/mod/github.com/davecgh/go-spew@v1.1.2-0.20180830191138-d8f796af33cc/LICENSE;md5=c06795ed54b2a35ebeeb543cd3a73e56;spdx=ISC \ + file://pkg/mod/github.com/devigned/tab@v0.1.1/LICENSE;md5=c4323a67076a1d5b05b3d1c446bcc00e;spdx=MIT \ + file://pkg/mod/github.com/dgryski/go-rendezvous@v0.0.0-20200823014737-9f7001d12a5f/LICENSE;md5=5a4f286c22866b9f86d7abc909ea8448;spdx=MIT \ + file://pkg/mod/github.com/digitalocean/go-libvirt@v0.0.0-20250417173424-a6a66ef779d6/LICENSE.md;md5=d8d1d59c60e60e8627fcd1c350a5c904;spdx=Apache-2.0 \ + file://pkg/mod/github.com/digitalocean/go-libvirt@v0.0.0-20250417173424-a6a66ef779d6/internal/go-xdr/LICENSE;md5=b48d4a6f448d246b1fe4e0600e79d0bf;spdx=ISC \ + file://pkg/mod/github.com/dimchansky/utfbom@v1.1.1/LICENSE;md5=d5b81a403268b5ea485b4a2579630c17;spdx=Apache-2.0 \ + file://pkg/mod/github.com/distribution/reference@v0.6.0/LICENSE;md5=d2794c0df5b907fdace235a619d80314;spdx=Apache-2.0 \ + file://pkg/mod/github.com/djherbis/times@v1.6.0/LICENSE;md5=3cafd141825e7a44b1c6a047b2320012;spdx=MIT \ + file://pkg/mod/github.com/docker/docker@v28.5.2+incompatible/LICENSE;md5=4859e97a9c7780e77972d989f0823f28;spdx=Apache-2.0 \ + file://pkg/mod/github.com/docker/go-connections@v0.7.0/LICENSE;md5=04424bc6f5a5be60691b9824d65c2ad8;spdx=Apache-2.0 \ + file://pkg/mod/github.com/docker/go-units@v0.5.0/LICENSE;md5=04424bc6f5a5be60691b9824d65c2ad8;spdx=Apache-2.0 \ + file://pkg/mod/github.com/dustin/go-humanize@v1.0.1/LICENSE;md5=8c6127b79304a5e0a5756d03c7a58766;spdx=MIT \ + file://pkg/mod/github.com/dvsekhvalnov/jose2go@v1.7.0/LICENSE;md5=257f0a15e23399219e3de6c0c3d52bcb;spdx=MIT \ + file://pkg/mod/github.com/dynatrace-oss/dynatrace-metric-utils-go@v0.5.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/eapache/go-resiliency@v1.7.0/LICENSE;md5=b5d5c42dfd88384315d2340222c139ab;spdx=MIT \ + file://pkg/mod/github.com/eapache/queue@v1.1.0/LICENSE;md5=1bfd4408d3de090ef6b908b0cc45a316;spdx=MIT \ + file://pkg/mod/github.com/eclipse/paho.golang@v0.23.0/LICENSE;md5=dcdb33474b60c38efd27356d8f2edec7;spdx=EPL-2.0 \ + file://pkg/mod/github.com/eclipse/paho.mqtt.golang@v1.5.1/LICENSE;md5=dcdb33474b60c38efd27356d8f2edec7;spdx=EPL-2.0 \ + file://pkg/mod/github.com/elastic/go-sysinfo@v1.8.1/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/emiago/sipgo@v1.3.1/LICENSE;md5=5396a2c851c2376528184bb71940d435;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/emicklei/go-restful/v3@v3.13.0/LICENSE;md5=2ebc1c12a0f4eae5394522e31961e1de;spdx=MIT \ + file://pkg/mod/github.com/envoyproxy/go-control-plane/envoy@v1.37.0/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/envoyproxy/protoc-gen-validate@v1.3.3/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/facebook/time@v0.0.0-20250903103710-a5911c32cdb9/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/fatih/color@v1.19.0/LICENSE.md;md5=316e6d590bdcde7993fb175662c0dd5a;spdx=MIT \ + file://pkg/mod/github.com/felixge/httpsnoop@v1.0.4/LICENSE.txt;md5=684da2bf3eed8fc8860e75ad84638225;spdx=MIT \ + file://pkg/mod/github.com/fxamacker/cbor/v2@v2.9.0/LICENSE;md5=827f5a2fa861382d35a3943adf9ebb86;spdx=MIT \ + file://pkg/mod/github.com/gabriel-vasile/mimetype@v1.4.13/LICENSE;md5=df3ca1fbe5632f81387306d9558a61c4;spdx=MIT \ + file://pkg/mod/github.com/go-asn1-ber/asn1-ber@v1.5.8-0.20250403174932-29230038a667/LICENSE;md5=db7dfd3c609df968396fa379c3851eb5;spdx=MIT \ + file://pkg/mod/github.com/go-chi/chi/v5@v5.2.5/LICENSE;md5=eef59fdf1c5117072cbf52b79c6ea691;spdx=MIT \ + file://pkg/mod/github.com/go-faster/city@v1.0.1/LICENSE;md5=aca4608bf10b920910b9dfa4a5344e2b;spdx=MIT \ + file://pkg/mod/github.com/go-faster/errors@v0.7.1/LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/go-git/go-billy/v5@v5.6.0/LICENSE;md5=7b6086dcb6977f0ca57a7c47167999e7;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-jose/go-jose/v4@v4.1.4/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-jose/go-jose/v4@v4.1.4/json/LICENSE;md5=591778525c869cdde0ab5a1bf283cd81;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/go-ldap/ldap/v3@v3.4.13/LICENSE;md5=c7a6808207397b21163fe9167c375c09;spdx=MIT \ + file://pkg/mod/github.com/go-logfmt/logfmt@v0.6.1/LICENSE;md5=98e39517c38127f969de33057067091e;spdx=MIT \ + file://pkg/mod/github.com/go-logr/logr@v1.4.3/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-logr/stdr@v1.2.2/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/jsonpointer@v0.23.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/jsonreference@v0.21.4/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/cmdutils@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/conv@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/fileutils@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/jsonname@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/jsonutils@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/loading@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/mangling@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/netutils@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/stringutils@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/typeutils@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag/yamlutils@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-openapi/swag@v0.26.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-redis/redis/v7@v7.4.1/LICENSE;md5=58103aa5ea1ee9b7a369c9c4a95ef9b5;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/go-redis/redis/v8@v8.11.5/LICENSE;md5=58103aa5ea1ee9b7a369c9c4a95ef9b5;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/go-resty/resty/v2@v2.17.2/LICENSE;md5=1fd20eb7ff613b50e8e31a0006518a76;spdx=MIT \ + file://pkg/mod/github.com/go-sql-driver/mysql@v1.10.0/LICENSE;md5=815ca599c9df247a0c7f619bab123dad;spdx=MPL-2.0 \ + file://pkg/mod/github.com/go-stack/stack@v1.8.1/LICENSE.md;md5=55d1e6f86c872bf9b8f648d1293cb2c3;spdx=MIT \ + file://pkg/mod/github.com/go-stomp/stomp@v2.1.4+incompatible/LICENSE.txt;md5=7cb8429e825fb3363278b675e44b6d7b;spdx=Apache-2.0 \ + file://pkg/mod/github.com/go-viper/mapstructure/v2@v2.5.0/LICENSE;md5=3f7765c3d4f58e1f84c4313cecf0f5bd;spdx=MIT \ + file://pkg/mod/github.com/gobwas/glob@v0.2.3/LICENSE;md5=0945febef83436030e30c73ea9980b42;spdx=MIT \ + file://pkg/mod/github.com/gobwas/httphead@v0.1.0/LICENSE;md5=6c645fd7998b851c6258e6feda6e38b1;spdx=MIT \ + file://pkg/mod/github.com/gobwas/pool@v0.2.1/LICENSE;md5=a031292df06f5159d11738249adc0b6f;spdx=MIT \ + file://pkg/mod/github.com/gobwas/ws@v1.3.2/LICENSE;md5=1d9d717a4f334cf460508e84abffe47a;spdx=MIT \ + file://pkg/mod/github.com/goccy/go-json@v0.10.6/LICENSE;md5=33a07164132d795872805bfc53f6097d;spdx=MIT \ + file://pkg/mod/github.com/godbus/dbus/v5@v5.1.0/LICENSE;md5=09042bd5c6c96a2b9e45ddf1bc517eed;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/godbus/dbus@v0.0.0-20190726142602-4481cbc300e2/LICENSE;md5=09042bd5c6c96a2b9e45ddf1bc517eed;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/gofrs/uuid/v5@v5.4.0/LICENSE;md5=ae4ba217c6e20c2d8f48f69966b9121b;spdx=MIT \ + file://pkg/mod/github.com/gofrs/uuid@v4.4.0+incompatible/LICENSE;md5=ae4ba217c6e20c2d8f48f69966b9121b;spdx=MIT \ + file://pkg/mod/github.com/gogo/protobuf@v1.3.2/LICENSE;md5=38be95f95200434dc208e2ee3dab5081;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/golang/geo@v0.0.0-20190916061304-5b978397cfec/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/golang/groupcache@v0.0.0-20210331224755-41bb18bfe9da/LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5;spdx=Apache-2.0 \ + file://pkg/mod/github.com/golang/protobuf@v1.5.4/LICENSE;md5=939cce1ec101726fa754e698ac871622;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/golang/snappy@v1.0.0/LICENSE;md5=b8b79c7d4cda128290b98c6a21f9aac6;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/golang-jwt/jwt/v4@v4.5.2/LICENSE;md5=a21b708d8b320c68979c44ac9dba9b0d;spdx=MIT \ + file://pkg/mod/github.com/golang-jwt/jwt/v5@v5.3.1/LICENSE;md5=a21b708d8b320c68979c44ac9dba9b0d;spdx=MIT \ + file://pkg/mod/github.com/golang-sql/civil@v0.0.0-20220223132316-b832511892a9/LICENSE;md5=175792518e4ac015ab6696d16c4f607e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/golang-sql/sqlexp@v0.1.0/LICENSE;md5=4ac66f7dea41d8d116cb7fb28aeff2ab;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/google/cel-go@v0.28.0/LICENSE;md5=9e40c7725e55fa8f61a69abf908e2c6f;spdx=Apache-2.0 \ + file://pkg/mod/github.com/google/flatbuffers@v25.12.19+incompatible/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/google/gnostic-models@v0.7.0/LICENSE;md5=b1e01b26bacfc2232046c90a330332b3;spdx=Apache-2.0 \ + file://pkg/mod/github.com/google/gnxi@v0.0.0-20231026134436-d82d9936af15/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/google/go-cmp@v0.7.0/LICENSE;md5=4ac66f7dea41d8d116cb7fb28aeff2ab;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/google/go-github/v32@v32.1.0/LICENSE;md5=44714fe40638e49453cfb438ddd301f1;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/google/go-querystring@v1.2.0/LICENSE;md5=29f156828ca5f2df0d1c12543a75f12a;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/google/s2a-go@v0.1.9/LICENSE.md;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/google/uuid@v1.6.0/LICENSE;md5=88073b6dd8ec00fe09da59e0b6dfded1;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/googleapis/enterprise-certificate-proxy@v0.3.15/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/googleapis/gax-go/v2@v2.22.0/LICENSE;md5=0dd48ae8103725bd7b401261520cdfbb;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/gopacket/gopacket@v1.5.0/LICENSE;md5=b32b347fe7ed4541e05033e8b0b29001;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/gopcua/opcua@v0.8.0/LICENSE;md5=96a71800835748e5ce63bb115c340151;spdx=MIT \ + file://pkg/mod/github.com/gophercloud/gophercloud/v2@v2.12.0/LICENSE;md5=97442d133cf61b7ad91e38f39c5d8389;spdx=Apache-2.0 \ + file://pkg/mod/github.com/gorcon/rcon@v1.4.0/LICENSE;md5=74bd33c968276ba228769ada38f8116d;spdx=MIT \ + file://pkg/mod/github.com/gorilla/mux@v1.8.1/LICENSE;md5=c30eee78985cf2584cded5f89ba3d787;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/gorilla/websocket@v1.5.4-0.20250319132907-e064f32e3674/LICENSE;md5=c007b54a1743d596f46b2748d9f8c044;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/gosnmp/gosnmp@v1.43.2/LICENSE;md5=0dd18b0da66d7495c1854498b25ad986;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/grafana/regexp@v0.0.0-20250905093917-f7b3be9d1853/LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/grid-x/modbus@v0.0.0-20240503115206-582f2ab60a18/LICENSE;md5=4f2d8e6bee7c0a27a06df40c6220e667;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/grid-x/serial@v0.0.0-20211107191517-583c7356b3aa/LICENSE;md5=e3ed29e54df09863b3c510034ff9c4a3;spdx=MIT \ + file://pkg/mod/github.com/grpc-ecosystem/grpc-gateway/v2@v2.28.0/LICENSE;md5=c510a2a01572b82d27f28fd4d02ca318;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/gsterjov/go-libsecret@v0.0.0-20161001094733-a6f4afe4910c/LICENSE;md5=02dea0e617020859f7cc3038d1a35f85;spdx=MIT \ + file://pkg/mod/github.com/gwos/tcg/sdk@v0.0.0-20240830123415-f8a34bba6358/LICENSE;md5=0dafb7e0782b3ae421ff802342084620;spdx=MIT \ + file://pkg/mod/github.com/hailocab/go-hostpool@v0.0.0-20160125115350-e80d13ce29ed/LICENSE;md5=6747d3f533dc3a43a1a26eaa57170557;spdx=MIT \ + file://pkg/mod/github.com/hashicorp/consul/api@v1.34.2/LICENSE;md5=2925e7910462fe55fcd3a652c4cf2a2d;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/errwrap@v1.1.0/LICENSE;md5=b278a92d2c1509760384428817710378;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-cleanhttp@v0.5.2/LICENSE;md5=65d26fcc2f35ea6a181ac777e42db1ea;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-hclog@v1.6.3/LICENSE;md5=08d72ffda4fb40269260bfa13423c5be;spdx=MIT \ + file://pkg/mod/github.com/hashicorp/go-immutable-radix@v1.3.1/LICENSE;md5=65d26fcc2f35ea6a181ac777e42db1ea;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-multierror@v1.1.1/LICENSE;md5=d44fdeb607e2d2614db9464dbedd4094;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-retryablehttp@v0.7.8/LICENSE;md5=bffc21c92b5f3adcbbb06f8e0067e786;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-rootcerts@v1.0.2/LICENSE;md5=65d26fcc2f35ea6a181ac777e42db1ea;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-secure-stdlib/parseutil@v0.2.0/LICENSE;md5=2925e7910462fe55fcd3a652c4cf2a2d;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-secure-stdlib/strutil@v0.1.2/LICENSE;md5=65d26fcc2f35ea6a181ac777e42db1ea;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-sockaddr@v1.0.7/LICENSE;md5=384a9beb4b0f73244fce13683da4c7da;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-uuid@v1.0.3/LICENSE;md5=1694f6ca1fdc81a15c1fd408542d47e6;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/go-version@v1.9.0/LICENSE;md5=cad2f12165769bbebe1d9235ea7dfbd6;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/golang-lru/v2@v2.0.7/LICENSE;md5=dc2f3ee49116a594755b22b853cc8b6b;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/golang-lru@v1.0.2/LICENSE;md5=dc2f3ee49116a594755b22b853cc8b6b;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/hcl@v1.0.1-vault-7/LICENSE;md5=b278a92d2c1509760384428817710378;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/packer-plugin-sdk@v0.3.2/LICENSE;md5=9741c346eef56131163e13b9db1241b3;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/serf@v0.10.1/LICENSE;md5=b278a92d2c1509760384428817710378;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/vault/api/auth/approle@v0.12.0/LICENSE;md5=45d265a0c4de9788288c6d1dc5055083;spdx=MPL-2.0 \ + file://pkg/mod/github.com/hashicorp/vault/api@v1.23.0/LICENSE;md5=45d265a0c4de9788288c6d1dc5055083;spdx=MPL-2.0 \ + file://pkg/mod/github.com/huandu/xstrings@v1.5.0/LICENSE;md5=0a9edd7ffc0f2c020fe849875cb6810d;spdx=MIT \ + file://pkg/mod/github.com/icholy/digest@v1.1.0/LICENSE;md5=854645e0f758d914ba32b4cda1817639;spdx=MIT \ + file://pkg/mod/github.com/imdario/mergo@v0.3.16/LICENSE;md5=ff13e03bb57bf9c52645f2f942afa28b;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/influxdata/influxdb-observability/common@v0.5.12/LICENSE;md5=a0819829d42245b666c993630868fcd7;spdx=MIT \ + file://pkg/mod/github.com/influxdata/influxdb-observability/influx2otel@v0.5.12/LICENSE;md5=a0819829d42245b666c993630868fcd7;spdx=MIT \ + file://pkg/mod/github.com/influxdata/influxdb-observability/otel2influx@v0.5.12/LICENSE;md5=a0819829d42245b666c993630868fcd7;spdx=MIT \ + file://pkg/mod/github.com/influxdata/line-protocol/v2@v2.2.1/LICENSE;md5=240fa5366110b23baeed752009395f92;spdx=MIT \ + file://pkg/mod/github.com/influxdata/tail@v1.0.1-0.20241014115250-3e0015cb677a/LICENSE.txt;md5=0bdce43b16cd5c587124d6f274632c87;spdx=MIT \ + file://pkg/mod/github.com/influxdata/toml@v0.0.0-20251106153700-c381e153d076/LICENSE;md5=9191b4cb03404322c952b5e2a69c0914;spdx=MIT \ + file://pkg/mod/github.com/jackc/pgio@v1.0.0/LICENSE;md5=ea2961e52eec5b1203f8147a49ef985f;spdx=MIT \ + file://pkg/mod/github.com/jackc/pgpassfile@v1.0.0/LICENSE;md5=ea2961e52eec5b1203f8147a49ef985f;spdx=MIT \ + file://pkg/mod/github.com/jackc/pgservicefile@v0.0.0-20240606120523-5a60cdf6a761/LICENSE;md5=209ee38a480b3726bf58105857868aa4;spdx=MIT \ + file://pkg/mod/github.com/jackc/pgx/v5@v5.9.2/LICENSE;md5=6d996fb721b0bbe83ef9c55fee3f0c97;spdx=MIT \ + file://pkg/mod/github.com/jackc/puddle/v2@v2.2.2/LICENSE;md5=bc1309f9a9a1700900dd861e88d22c5f;spdx=MIT \ + file://pkg/mod/github.com/jaegertracing/jaeger@v1.47.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/jcmturner/aescts/v2@v2.0.0/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/jcmturner/dnsutils/v2@v2.0.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/jcmturner/gofork@v1.7.6/LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/jcmturner/goidentity/v6@v6.0.1/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/jcmturner/gokrb5/v8@v8.4.4/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/jcmturner/rpc/v2@v2.0.3/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/jedib0t/go-pretty/v6@v6.7.10/LICENSE;md5=dfa583903393a7d3fef6168e278a58ba;spdx=MIT \ + file://pkg/mod/github.com/jeremywohl/flatten/v2@v2.0.0-20211013061545-07e4a09fb8e4/LICENSE;md5=86fe72b3502429c11eec941d5f54b0a8;spdx=MIT \ + file://pkg/mod/github.com/jmespath/go-jmespath@v0.4.0/LICENSE;md5=9abfa8353fce3f2cb28364e1e9016852;spdx=Apache-2.0 \ + file://pkg/mod/github.com/joeshaw/multierror@v0.0.0-20140124173710-69b34d4ec901/LICENSE;md5=275e8e18be56c628a8aedd6f03d558fd;spdx=MIT \ + file://pkg/mod/github.com/josharian/intern@v1.0.0/license.md;md5=6bc75378a26e0addbcdfa118e4d54574;spdx=MIT \ + file://pkg/mod/github.com/josharian/native@v1.1.0/license;md5=22904acb291752d818959e01847de4c5;spdx=MIT \ + file://pkg/mod/github.com/jpillora/backoff@v1.0.0/LICENSE;md5=642049c2ea167da3ea933b5eb0661e10;spdx=MIT \ + file://pkg/mod/github.com/json-iterator/go@v1.1.12/LICENSE;md5=0b69744b481d72d30dbf69f84a451cfd;spdx=MIT \ + file://pkg/mod/github.com/jzelinskie/whirlpool@v0.0.0-20201016144138-0675e54bb004/LICENSE;md5=56ba9a7139fb128d57668c048a3231dd;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/karrick/godirwalk@v1.16.2/LICENSE;md5=7bea66fc0a31c6329f9392034bee75d2;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/kballard/go-shellquote@v0.0.0-20180428030007-95032a82bc51/LICENSE;md5=9d95d1ad917c814c23909addb8692eeb;spdx=MIT \ + file://pkg/mod/github.com/klauspost/compress@v1.18.6/LICENSE;md5=d0fd9ebda39468b51ff4539c9fbb13a8;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/klauspost/compress@v1.18.6/internal/snapref/LICENSE;md5=b8b79c7d4cda128290b98c6a21f9aac6;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/klauspost/compress@v1.18.6/s2/LICENSE;md5=2460814a2b25a7277556c2d89de915d1;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/klauspost/compress@v1.18.6/snappy/LICENSE;md5=b8b79c7d4cda128290b98c6a21f9aac6;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/klauspost/compress@v1.18.6/snappy/xerial/LICENSE;md5=49edd5648b6349a1af65ea5a69db2753;spdx=MIT \ + file://pkg/mod/github.com/klauspost/compress@v1.18.6/zstd/internal/xxhash/LICENSE.txt;md5=802da049c92a99b4387d3f3d91b00fa9;spdx=MIT \ + file://pkg/mod/github.com/klauspost/pgzip@v1.2.6/GO_LICENSE;md5=591778525c869cdde0ab5a1bf283cd81;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/kolo/xmlrpc@v0.0.0-20220921171641-a4b6fa1dd06b/LICENSE;md5=1f1c20df475af4e157a22828f3b9eb61;spdx=MIT \ + file://pkg/mod/github.com/kr/fs@v0.1.0/LICENSE;md5=591778525c869cdde0ab5a1bf283cd81;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/kylelemons/godebug@v1.1.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/leodido/go-syslog/v4@v4.5.0/LICENSE;md5=ff7dcf54cb9242bf9664a2a9ed3a1dcd;spdx=MIT \ + file://pkg/mod/github.com/leodido/ragel-machinery@v0.0.0-20190525184631-5f46317e436b/LICENSE;md5=8f50db5538ec1148a9b3d14ed96c3418;spdx=MIT \ + file://pkg/mod/github.com/likexian/gokit@v0.25.16/LICENSE;md5=d53379b9dfa1d07d943d8741dc39ae1f;spdx=Apache-2.0 \ + file://pkg/mod/github.com/likexian/whois-parser@v1.24.21/LICENSE;md5=f3d4ee94647102ca0f4eca56554b12be;spdx=Apache-2.0 \ + file://pkg/mod/github.com/likexian/whois@v1.15.7/LICENSE;md5=f3d4ee94647102ca0f4eca56554b12be;spdx=Apache-2.0 \ + file://pkg/mod/github.com/linkedin/goavro/v2@v2.15.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/logzio/azure-monitor-metrics-receiver@v1.1.0/LICENSE;md5=1b4f8dad17d90c450a216d8476980614;spdx=MIT \ + file://pkg/mod/github.com/magiconair/properties@v1.8.10/LICENSE.md;md5=714beb7325ffa89d5a68d936a3bb04e5;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/mailru/easyjson@v0.9.2/LICENSE;md5=819e81c2ec13e1bbc47dc5e90bb4d88b;spdx=MIT \ + file://pkg/mod/github.com/mattn/go-colorable@v0.1.14/LICENSE;md5=24ce168f90aec2456a73de1839037245;spdx=MIT \ + file://pkg/mod/github.com/mattn/go-isatty@v0.0.20/LICENSE;md5=f509beadd5a11227c27b5d2ad6c9f2c6;spdx=MIT \ + file://pkg/mod/github.com/mattn/go-runewidth@v0.0.21/LICENSE;md5=24ce168f90aec2456a73de1839037245;spdx=MIT \ + file://pkg/mod/github.com/mdlayher/apcupsd@v0.0.0-20220319200143-473c7b5f3c6a/LICENSE.md;md5=e08504321a9b3e86ee07433c231b33f1;spdx=MIT \ + file://pkg/mod/github.com/mdlayher/genetlink@v1.2.0/LICENSE.md;md5=43f69ee19f3678213a04236e6efda03b;spdx=MIT \ + file://pkg/mod/github.com/mdlayher/netlink@v1.7.2/LICENSE.md;md5=e08504321a9b3e86ee07433c231b33f1;spdx=MIT \ + file://pkg/mod/github.com/mdlayher/socket@v0.5.1/LICENSE.md;md5=bdcb2fcb7aea8a34d189ef572a59ff88;spdx=MIT \ + file://pkg/mod/github.com/mdlayher/vsock@v1.2.1/LICENSE.md;md5=7162c90f2c1b982bc484c17f2d0686c5;spdx=MIT \ + file://pkg/mod/github.com/microsoft/!application!insights-!go@v0.4.4/LICENSE;md5=2199b3c49a5ea077a76258f64b56f051;spdx=MIT \ + file://pkg/mod/github.com/microsoft/go-mssqldb@v1.10.0/LICENSE.txt;md5=d3c9ea087d1f492bcd340739bcfe98a7;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/microsoft/go-mssqldb@v1.10.0/internal/github.com/swisscom/mssql-always-encrypted/LICENSE.txt;md5=257998dd4a2c0a46d3b8bfefe3ef0035;spdx=MIT \ + file://pkg/mod/github.com/miekg/dns@v1.1.72/COPYRIGHT;md5=2ba6b7bd91e16af46a856eca87db2504;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/minio/highwayhash@v1.0.4/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/mitchellh/copystructure@v1.2.0/LICENSE;md5=56da355a12d4821cda57b8f23ec34bc4;spdx=MIT \ + file://pkg/mod/github.com/mitchellh/go-homedir@v1.1.0/LICENSE;md5=3f7765c3d4f58e1f84c4313cecf0f5bd;spdx=MIT \ + file://pkg/mod/github.com/mitchellh/mapstructure@v1.5.1-0.20220423185008-bf980b35cac4/LICENSE;md5=3f7765c3d4f58e1f84c4313cecf0f5bd;spdx=MIT \ + file://pkg/mod/github.com/mitchellh/reflectwalk@v1.0.2/LICENSE;md5=3f7765c3d4f58e1f84c4313cecf0f5bd;spdx=MIT \ + file://pkg/mod/github.com/moby/docker-image-spec@v1.3.1/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/go-archive@v0.2.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/ipvs@v1.1.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/moby/api@v1.54.2/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/moby/client@v0.4.1/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/patternmatcher@v0.6.1/LICENSE;md5=4859e97a9c7780e77972d989f0823f28;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/sys/sequential@v0.6.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/sys/user@v0.4.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/sys/userns@v0.1.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/moby/term@v0.5.2/LICENSE;md5=4859e97a9c7780e77972d989f0823f28;spdx=Apache-2.0 \ + file://pkg/mod/github.com/modern-go/concurrent@v0.0.0-20180306012644-bacd9c7ef1dd/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/modern-go/reflect2@v1.0.3-0.20250322232337-35a7c28c31ee/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/montanaflynn/stats@v0.7.1/LICENSE;md5=7000aae64d94f7bcdcd54c86157863e7;spdx=MIT \ + file://pkg/mod/github.com/mtibben/percent@v0.2.1/LICENSE;md5=90cbaf20f193594e165e36cf32e06b01;spdx=MIT \ + file://pkg/mod/github.com/multiplay/go-ts3@v1.2.0/LICENSE;md5=8ffc8381de3578d99f2215d406eb7b84;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/munnerz/goautoneg@v0.0.0-20191010083416-a7dc8b61c822/LICENSE;md5=0c241922fc69330e2e5590de114f3bf5;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/mwitkow/go-conntrack@v0.0.0-20190716064945-2f068394615f/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/naoina/go-stringutil@v0.1.0/LICENSE;md5=fd48b703ec0214c2b9490e1db9d0d82b;spdx=MIT \ + file://pkg/mod/github.com/nats-io/jwt/v2@v2.8.1/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/nats-io/nats-server/v2@v2.14.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/nats-io/nats-server/v2@v2.14.0/internal/fastrand/LICENSE;md5=6f275fd868aa0247702f69e646c3b325;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/nats-io/nats.go@v1.51.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/nats-io/nkeys@v0.4.15/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/nats-io/nuid@v1.0.1/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/ncw/swift/v2@v2.0.3/COPYING;md5=bed161b82a1ecab65ff7ba3c3b960439;spdx=MIT \ + file://pkg/mod/github.com/netsampler/goflow2/v2@v2.2.6/LICENSE;md5=dc3d542cc7b925065523a8fb9e9d527c;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/newrelic/newrelic-telemetry-sdk-go@v0.8.1/LICENSE.md;md5=9a907650217ee1d6f2d2f15dde26200a;spdx=Apache-2.0 \ + file://pkg/mod/github.com/nsqio/go-nsq@v1.1.0/LICENSE;md5=838c366f69b72c5df05c96dff79b35f2;spdx=MIT \ + file://pkg/mod/github.com/nwaples/tacplus@v0.0.3/LICENSE;md5=1d430fabbb2bffc11055e081f4b0994a;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/oapi-codegen/runtime@v1.4.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/olivere/elastic@v6.2.37+incompatible/LICENSE;md5=8483e0fff54ad383eb8e6d8860f6b19c;spdx=MIT \ + file://pkg/mod/github.com/olivere/elastic@v6.2.37+incompatible/uritemplates/LICENSE;md5=2bd694c3821a2bfd9c61c94aed7df9d9;spdx=MIT \ + file://pkg/mod/github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil@v0.148.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/openconfig/gnmi@v0.14.1/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/openconfig/goyang@v1.6.3/Copyright;md5=117a75021599a6a627f538a5c4c26156;spdx=Apache-2.0 \ + file://pkg/mod/github.com/opencontainers/go-digest@v1.0.0/LICENSE;md5=2d6fc0e85c3f118af64c85a78d56d3cf;spdx=Apache-2.0 \ + file://pkg/mod/github.com/opencontainers/image-spec@v1.1.1/LICENSE;md5=27ef03aa2da6e424307f102e8b42621d;spdx=Apache-2.0 \ + file://pkg/mod/github.com/opensearch-project/opensearch-go/v2@v2.3.0/LICENSE.txt;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/opentracing/opentracing-go@v1.2.1-0.20220228012449-10b1cf09e00b/LICENSE;md5=f4e91fcd9abdeb3c904b834127d5cb20;spdx=Apache-2.0 \ + file://pkg/mod/github.com/oxtoacart/bpool@v0.0.0-20190530202638-03653db5a59c/LICENSE;md5=30b3d64fa90a25a2cf669e5c149b923d;spdx=Apache-2.0 \ + file://pkg/mod/github.com/p4lang/p4runtime@v1.5.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/panjf2000/ants/v2@v2.11.3/LICENSE;md5=6a4f7c52f1a52fc5da45e1529063dfe4;spdx=MIT \ + file://pkg/mod/github.com/panjf2000/gnet/v2@v2.9.7/LICENSE;md5=75a777573d0c159f62eff7e4637c64c5;spdx=Apache-2.0 \ + file://pkg/mod/github.com/paulmach/orb@v0.12.0/LICENSE.md;md5=500c877f62a7e75b5dad237f3e3d7904;spdx=MIT \ + file://pkg/mod/github.com/pavlo-v-chernykh/keystore-go/v4@v4.5.0/LICENSE;md5=f9a6b2a5cb8ffc16cde5e6a891309892;spdx=MIT \ + file://pkg/mod/github.com/pborman/ansi@v1.1.0/LICENSE;md5=d8f14631a6e5da377545cfaed3b67f55;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/pcolladosoto/goslurm@v0.1.0/LICENSE;md5=dc990cb2a301e3bb5207bcd708bbca62;spdx=MIT \ + file://pkg/mod/github.com/peterbourgon/unixtransport@v0.0.7/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/philhofer/fwd@v1.2.0/LICENSE.md;md5=cfd452e4c91aa5191e3af8f3e4b67a9a;spdx=MIT \ + file://pkg/mod/github.com/pierrec/lz4/v4@v4.1.26/LICENSE;md5=09ece85f3c312a63b522bfc6ebd44943;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/pion/dtls/v3@v3.1.2/LICENSE;md5=40025fa374081d90392894225402c098;spdx=MIT \ + file://pkg/mod/github.com/pion/logging@v0.2.4/LICENSE;md5=12de8687854578f9caf6a5b6a4775c25;spdx=MIT \ + file://pkg/mod/github.com/pion/transport/v2@v2.2.10/LICENSE;md5=12de8687854578f9caf6a5b6a4775c25;spdx=MIT \ + file://pkg/mod/github.com/pion/transport/v4@v4.0.1/LICENSE;md5=12de8687854578f9caf6a5b6a4775c25;spdx=MIT \ + file://pkg/mod/github.com/pkg/browser@v0.0.0-20240102092130-5ac0b6a4141c/LICENSE;md5=2c6b03e6a9b13bd75b50a8dbeed074da;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/pkg/errors@v0.9.1/LICENSE;md5=6fe682a02df52c6653f33bd0f7126b5a;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/pkg/sftp@v1.13.10/LICENSE;md5=452fc5cc5a9127a0e828d73423d45035;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/pkg/xattr@v0.4.12/LICENSE;md5=4efd8bdbab9cff00dcd75f2c3ee4e190;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/pmezard/go-difflib@v1.0.1-0.20181226105442-5d4384ee4fb2/LICENSE;md5=e9a2ebb8de779a07500ddecca806145e;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/prometheus/client_golang@v1.23.2/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/prometheus/client_golang@v1.23.2/internal/github.com/golang/gddo/LICENSE;md5=4c728948788b1a02f33ae4e906546eef;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/prometheus/client_model@v0.6.2/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/prometheus/common@v0.67.5/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/prometheus/procfs@v0.20.1/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/prometheus/prometheus@v0.311.3/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/prometheus-community/pro-bing@v0.8.0/LICENSE;md5=7e610e4056c257ae34c746253ada9cfe;spdx=MIT \ + file://pkg/mod/github.com/rabbitmq/amqp091-go@v1.11.0/LICENSE;md5=a21a066a96199e1d9d1d6c27fa0f655b;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/rclone/rclone@v1.69.3/COPYING;md5=bed161b82a1ecab65ff7ba3c3b960439;spdx=MIT \ + file://pkg/mod/github.com/rcrowley/go-metrics@v0.0.0-20250401214520-65e299d6c5c9/LICENSE;md5=1bdf5d819f50f141366dabce3be1460f;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/redis/go-redis/v9@v9.19.0/LICENSE;md5=017cec6623be1ac901a1235a38221458;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/remyoudompheng/bigfft@v0.0.0-20230129092748-24d4a6f8daec/LICENSE;md5=591778525c869cdde0ab5a1bf283cd81;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/rfjakob/eme@v1.1.2/LICENSE;md5=6fee026f0b48abb4d7cd72e25032503c;spdx=MIT \ + file://pkg/mod/github.com/riemann/riemann-go-client@v0.5.1-0.20211206220514-f58f10cdce16/LICENSE;md5=e84fd5f5afef3f3d5a8ab1788643f019;spdx=MIT \ + file://pkg/mod/github.com/robbiet480/go.nut@v0.0.0-20220219091450-bd8f121e1fa1/LICENSE;md5=81117da5ae1673594c767c82badd5ba6;spdx=MIT \ + file://pkg/mod/github.com/robinson/gos7@v0.0.0-20240315073918-1f14519e4846/LICENSE;md5=617a50fad37d002a452934970a6a8a97;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/russross/blackfriday/v2@v2.1.0/LICENSE.txt;md5=ecf8a8a60560c35a862a4a545f2db1b3;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/ryanuber/go-glob@v1.0.0/LICENSE;md5=d2c81b3028eb947731a58fb068c7dff4;spdx=MIT \ + file://pkg/mod/github.com/safchain/ethtool@v0.7.0/LICENSE;md5=8e1a430c9c6b9fa0c191191e83efa169;spdx=Apache-2.0 \ + file://pkg/mod/github.com/samber/lo@v1.52.0/LICENSE;md5=1cce9fea1bd9690afd75f9941813586f;spdx=MIT \ + file://pkg/mod/github.com/seancfoley/bintree@v1.3.1/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/seancfoley/ipaddress-go@v1.7.1/ipaddr/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/segmentio/asm@v1.2.1/LICENSE;md5=82b9bc51e4bf77f3833c91e3a0db21b4;spdx=MIT-0 \ + file://pkg/mod/github.com/shirou/gopsutil/v4@v4.26.4/LICENSE;md5=ae6de3dee02712a1e55b280671be53bf;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/shopspring/decimal@v1.4.0/LICENSE;md5=d21d25475326cf7f1b36eef8c9789801;spdx=MIT \ + file://pkg/mod/github.com/showwin/speedtest-go@v1.7.10/LICENSE;md5=164f703309080a67961fd53d54978fe1;spdx=MIT \ + file://pkg/mod/github.com/signalfx/com_signalfx_metrics_protobuf@v0.0.3/LICENSE;md5=2ee41112a44fe7014dce33e26468ba93;spdx=Apache-2.0 \ + file://pkg/mod/github.com/signalfx/gohistogram@v0.0.0-20160107210732-1ccfd2ff5083/LICENSE;md5=13880cf5821e7668762c89bb8a6045d3;spdx=MIT \ + file://pkg/mod/github.com/signalfx/golib/v3@v3.3.54/LICENSE;md5=2ee41112a44fe7014dce33e26468ba93;spdx=Apache-2.0 \ + file://pkg/mod/github.com/signalfx/golib/v3@v3.3.54/log/LICENSE_gokit;md5=aa2a9dc436df7ea8bd6092f04066362e;spdx=MIT \ + file://pkg/mod/github.com/signalfx/sapm-proto@v0.12.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/sijms/go-ora/v2@v2.9.0/LICENSE;md5=fe47b6ebe5cca16f29280bfc08e8a19d;spdx=MIT \ + file://pkg/mod/github.com/sirupsen/logrus@v1.9.4/LICENSE;md5=8dadfef729c08ec4e631c4f6fc5d43a0;spdx=MIT \ + file://pkg/mod/github.com/sleepinggenius2/gosmi@v0.4.4/LICENSE;md5=efa33eb09890384bd2a69093c9970992;spdx=MIT \ + file://pkg/mod/github.com/snowflakedb/gosnowflake@v1.19.1/LICENSE;md5=0062ac1e15583179da8ee10c036c7d75;spdx=Apache-2.0 \ + file://pkg/mod/github.com/spf13/cast@v1.10.0/LICENSE;md5=67fac7567cbf6ba946e5576d590b1ed4;spdx=MIT \ + file://pkg/mod/github.com/spf13/pflag@v1.0.10/LICENSE;md5=1e8b7dc8b906737639131047a590f21d;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/spiffe/go-spiffe/v2@v2.6.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/srebhan/cborquery@v1.0.4/LICENSE;md5=cfd4f8d66c928861a751400ae5e6ecc1;spdx=MIT \ + file://pkg/mod/github.com/srebhan/protobufquery@v1.0.4/LICENSE;md5=5debb370f50e1dfd24ff5144233a2ef6;spdx=MIT \ + file://pkg/mod/github.com/stretchr/objx@v0.5.3/LICENSE;md5=d023fd31d3ca39ec61eec65a91732735;spdx=MIT \ + file://pkg/mod/github.com/stretchr/testify@v1.11.1/LICENSE;md5=188f01994659f3c0d310612333d2a26f;spdx=MIT \ + file://pkg/mod/github.com/tdrn-org/go-hue@v1.2.0/LICENSE;md5=904240214c334056c71cfa4cb275e3d9;spdx=Apache-2.0 \ + file://pkg/mod/github.com/tdrn-org/go-nsdp@v0.5.1/LICENSE;md5=c375a1f14d28ab97197cc2ac65f85ab4;spdx=MIT \ + file://pkg/mod/github.com/tdrn-org/go-tr064@v0.3.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/testcontainers/testcontainers-go@v0.42.0/LICENSE;md5=d9e08bffe3addb9ed5c51a6ac3d8da00;spdx=MIT \ + file://pkg/mod/github.com/thomasklein94/packer-plugin-libvirt@v0.5.0/LICENSE;md5=9741c346eef56131163e13b9db1241b3;spdx=MPL-2.0 \ + file://pkg/mod/github.com/tidwall/gjson@v1.18.0/LICENSE;md5=f1ccda76a282fada49760e27335f1c28;spdx=MIT \ + file://pkg/mod/github.com/tidwall/match@v1.1.1/LICENSE;md5=f1ccda76a282fada49760e27335f1c28;spdx=MIT \ + file://pkg/mod/github.com/tidwall/pretty@v1.2.1/LICENSE;md5=898bc94f87439245e8cf1c5797098e90;spdx=MIT \ + file://pkg/mod/github.com/tidwall/tinylru@v1.2.1/LICENSE;md5=838cc7771d465335adff8f6bbc8c5de4;spdx=MIT \ + file://pkg/mod/github.com/tidwall/wal@v1.2.1/LICENSE;md5=3fdacdeb19f731e1e837f2c446dfa59a;spdx=MIT \ + file://pkg/mod/github.com/tinylib/msgp@v1.6.4/LICENSE;md5=37acb030ba070680be4a9fcb57f2735a;spdx=MIT \ + file://pkg/mod/github.com/tklauser/go-sysconf@v0.3.16/LICENSE;md5=d4eb2084b3083d2c275ec52ef4ba9ac1;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/tklauser/numcpus@v0.11.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/twmb/murmur3@v1.1.7/LICENSE;md5=30899bc7061301c842b697aaa4bb0ecc;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/uber/jaeger-client-go@v2.30.0+incompatible/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/uber/jaeger-lib@v2.4.1+incompatible/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/github.com/urfave/cli/v2@v2.27.7/LICENSE;md5=51992c80b05795f59c22028d39f9b74c;spdx=MIT \ + file://pkg/mod/github.com/vapourismo/knx-go@v0.0.0-20240915133544-a6ab43471c11/LICENSE;md5=6e1947c7293ce31192944fd29e0b7c0a;spdx=MIT \ + file://pkg/mod/github.com/vertica/vertica-sql-go@v1.3.6/LICENSE;md5=6cb89d35ae674679aa1eca6be9186b6c;spdx=Apache-2.0 \ + file://pkg/mod/github.com/vishvananda/netlink@v1.3.1/LICENSE;md5=2ade771c7d7211af507864e8dd520529;spdx=Apache-2.0 \ + file://pkg/mod/github.com/vishvananda/netns@v0.0.5/LICENSE;md5=2ade771c7d7211af507864e8dd520529;spdx=Apache-2.0 \ + file://pkg/mod/github.com/vjeantet/grok@v1.0.1/LICENSE;md5=d2794c0df5b907fdace235a619d80314;spdx=Apache-2.0 \ + file://pkg/mod/github.com/vmware/govmomi@v0.53.1/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/github.com/vmware/govmomi@v0.53.1/vim25/json/LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/vmware/govmomi@v0.53.1/vim25/xml/LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707;spdx=BSD-3-Clause \ + file://pkg/mod/github.com/wavefronthq/wavefront-sdk-go@v0.15.0/LICENSE;md5=604fc8caa3bb282dddfa58084a0b4d3e;spdx=Apache-2.0 \ + file://pkg/mod/github.com/x448/float16@v0.8.4/LICENSE;md5=de8f8e025d57fe7ee0b67f30d571323b;spdx=MIT \ + file://pkg/mod/github.com/xanzy/ssh-agent@v0.3.3/LICENSE;md5=fa818a259cbed7ce8bc2a22d35a464fc;spdx=Apache-2.0 \ + file://pkg/mod/github.com/xdg/scram@v1.0.5/LICENSE;md5=34400b68072d710fecd0a2940a0d1658;spdx=Apache-2.0 \ + file://pkg/mod/github.com/xdg/stringprep@v1.0.3/LICENSE;md5=34400b68072d710fecd0a2940a0d1658;spdx=Apache-2.0 \ + file://pkg/mod/github.com/xdg-go/scram@v1.2.0/LICENSE;md5=34400b68072d710fecd0a2940a0d1658;spdx=Apache-2.0 \ + file://pkg/mod/github.com/xdg-go/stringprep@v1.0.4/LICENSE;md5=34400b68072d710fecd0a2940a0d1658;spdx=Apache-2.0 \ + file://pkg/mod/github.com/xrash/smetrics@v0.0.0-20250705151800-55b8f293f342/LICENSE;md5=68418a2b5d025376b21bcbd2d9289f22;spdx=MIT \ + file://pkg/mod/github.com/youmark/pkcs8@v0.0.0-20240726163527-a2c0da244d78/LICENSE;md5=7e949f736d1222f15e83233702459f41;spdx=MIT \ + file://pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20200816102855-ee81675732da/LICENSE;md5=5ea59bf62229a35ae7b2c7208524163e;spdx=MIT \ + file://pkg/mod/github.com/zeebo/xxh3@v1.1.0/LICENSE;md5=aaba05447288333a478938c7e45c0cb2;spdx=BSD-2-Clause \ + file://pkg/mod/github.com/zentures/cityhash@v0.0.0-20131128155616-cdd6a94144ab/LICENSE;md5=d7fb7f2d2e8eb664ec1d9c39efd94375;spdx=MIT \ + file://pkg/mod/go.bug.st/serial@v1.6.4/LICENSE;md5=6067cc6529e21146d9c556ee2f680c27;spdx=BSD-3-Clause \ + file://pkg/mod/go.mongodb.org/mongo-driver@v1.17.9/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/go.opencensus.io@v0.24.0/LICENSE;md5=175792518e4ac015ab6696d16c4f607e;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/auto/sdk@v1.2.1/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/collector/consumer/consumererror@v0.135.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/collector/featuregate@v1.57.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/collector/pdata/pprofile@v0.140.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/collector/pdata@v1.57.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/collector/semconv@v0.128.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/contrib/detectors/gcp@v1.42.0/LICENSE;md5=24dad3abbe7a8f390afc8ab967bfefa7;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc@v0.67.0/LICENSE;md5=24dad3abbe7a8f390afc8ab967bfefa7;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp@v0.68.0/LICENSE;md5=24dad3abbe7a8f390afc8ab967bfefa7;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/otel/metric@v1.43.0/LICENSE;md5=24dad3abbe7a8f390afc8ab967bfefa7;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/otel/sdk/metric@v1.43.0/LICENSE;md5=24dad3abbe7a8f390afc8ab967bfefa7;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/otel/sdk@v1.43.0/LICENSE;md5=24dad3abbe7a8f390afc8ab967bfefa7;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/otel/trace@v1.43.0/LICENSE;md5=24dad3abbe7a8f390afc8ab967bfefa7;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/otel@v1.43.0/LICENSE;md5=24dad3abbe7a8f390afc8ab967bfefa7;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/proto/otlp/collector/profiles/v1development@v0.3.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/proto/otlp/profiles/v1development@v0.3.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/go.opentelemetry.io/proto/otlp@v1.10.0/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/go.starlark.net@v0.0.0-20260326113308-fadfc96def35/LICENSE;md5=30237ff6085f287d7c65ec084235a89e;spdx=BSD-3-Clause \ + file://pkg/mod/go.step.sm/crypto@v0.77.9/LICENSE;md5=86d3f3a95c324c9479bd8986968f4327;spdx=Apache-2.0 \ + file://pkg/mod/go.step.sm/crypto@v0.77.9/internal/bcrypt_pbkdf/LICENSE;md5=8a4d31d85177e024ae8df92c9bc2c9d3;spdx=BSD-2-Clause \ + file://pkg/mod/go.step.sm/crypto@v0.77.9/internal/utils/utfbom/LICENSE;md5=d5b81a403268b5ea485b4a2579630c17;spdx=Apache-2.0 \ + file://pkg/mod/go.uber.org/atomic@v1.11.0/LICENSE.txt;md5=1caee86519456feda989f8a838102b50;spdx=MIT \ + file://pkg/mod/go.uber.org/multierr@v1.11.0/LICENSE.txt;md5=721ac51ede11efb667ff53a866be23c4;spdx=MIT \ + file://pkg/mod/go.uber.org/zap@v1.27.1/LICENSE;md5=a48e22dd4170c1eb095a423a50302852;spdx=MIT \ + file://pkg/mod/go.yaml.in/yaml/v2@v2.4.4/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/go.yaml.in/yaml/v3@v3.0.4/LICENSE;md5=3c91c17266710e16afdbb2b6d15c761c;spdx=Apache-2.0 \ + file://pkg/mod/golang.org/x/crypto@v0.50.0/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/exp@v0.0.0-20260312153236-7ab1446f8b90/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/net@v0.53.0/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/oauth2@v0.36.0/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/sync@v0.20.0/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/sys@v0.43.0/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/term@v0.42.0/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/text@v0.36.0/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/time@v0.15.0/LICENSE;md5=7998cb338f82d15c0eff93b7004d272a;spdx=BSD-3-Clause \ + file://pkg/mod/golang.org/x/xerrors@v0.0.0-20240903120638-7835f813f4da/LICENSE;md5=e828fb91fe88d9e5d620842cf8bd81b0;spdx=BSD-3-Clause \ + file://pkg/mod/golang.zx2c4.com/wireguard/wgctrl@v0.0.0-20211230205640-daad0b7ba671/LICENSE.md;md5=93de5bfb88bfb29d424dfe9de3a009a7;spdx=MIT \ + file://pkg/mod/gonum.org/v1/gonum@v0.17.0/LICENSE;md5=fabff3dab4b5a6c3e29611c973dc3df9;spdx=BSD-3-Clause \ + file://pkg/mod/google.golang.org/api@v0.277.0/LICENSE;md5=a651bb3d8b1c412632e28823bb432b40;spdx=BSD-3-Clause \ + file://pkg/mod/google.golang.org/api@v0.277.0/internal/third_party/uritemplates/LICENSE;md5=4ee4feb2b545c2231749e5c54ace343e;spdx=BSD-3-Clause \ + file://pkg/mod/google.golang.org/genproto/googleapis/api@v0.0.0-20260401024825-9d38bb4040a9/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260427160629-7cedc36a6bc4/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/google.golang.org/genproto@v0.0.0-20260319201613-d00831a3d3e7/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/google.golang.org/grpc@v1.81.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/google.golang.org/protobuf@v1.36.12-0.20260120151049-f2248ac996af/LICENSE;md5=02d4002e9171d41a8fad93aa7faf3956;spdx=BSD-3-Clause \ + file://pkg/mod/gopkg.in/evanphx/json-patch.v4@v4.13.0/LICENSE;md5=96ae735ca1b4dcdb6b26f4ca4b8ba645;spdx=BSD-3-Clause \ + file://pkg/mod/gopkg.in/fatih/pool.v2@v2.0.0/LICENSE;md5=316e6d590bdcde7993fb175662c0dd5a;spdx=MIT \ + file://pkg/mod/gopkg.in/fsnotify.v1@v1.4.7/LICENSE;md5=c38914c9a7ab03bb2b96d4baaee10769;spdx=BSD-3-Clause \ + file://pkg/mod/gopkg.in/gorethink/gorethink.v3@v3.0.5/LICENSE;md5=bb2a2f2b7222607afeac4f5a31aca701;spdx=Apache-2.0 \ + file://pkg/mod/gopkg.in/inf.v0@v0.9.1/LICENSE;md5=13cea479df204c85485b5db6eb1bc9d5;spdx=BSD-3-Clause \ + file://pkg/mod/gopkg.in/ini.v1@v1.67.1/LICENSE;md5=4e2a8d8f9935d6a766a5879a77ddc24d;spdx=Apache-2.0 \ + file://pkg/mod/gopkg.in/natefinch/lumberjack.v2@v2.2.1/LICENSE;md5=574cdb55b81249478f5af5f789e9e29f;spdx=MIT \ + file://pkg/mod/gopkg.in/olivere/elastic.v5@v5.0.86/LICENSE;md5=8483e0fff54ad383eb8e6d8860f6b19c;spdx=MIT \ + file://pkg/mod/gopkg.in/olivere/elastic.v5@v5.0.86/uritemplates/LICENSE;md5=2bd694c3821a2bfd9c61c94aed7df9d9;spdx=MIT \ + file://pkg/mod/gopkg.in/tomb.v1@v1.0.0-20141024135613-dd632973f1e7/LICENSE;md5=95d4102f39f26da9b66fee5d05ac597b;spdx=BSD-3-Clause \ + file://pkg/mod/gopkg.in/tomb.v2@v2.0.0-20161208151619-d5d1b5820637/LICENSE;md5=95d4102f39f26da9b66fee5d05ac597b;spdx=BSD-3-Clause \ + file://pkg/mod/gopkg.in/yaml.v2@v2.4.0/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/gopkg.in/yaml.v3@v3.0.1/LICENSE;md5=3c91c17266710e16afdbb2b6d15c761c;spdx=Apache-2.0 \ + file://pkg/mod/howett.net/plist@v0.0.0-20181124034731-591f970eefbb/LICENSE;md5=a20b5c468e726e81fc47c73f16622671;spdx=BSD-3-Clause \ + file://pkg/mod/k8s.io/api@v0.36.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/k8s.io/apimachinery@v0.36.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/k8s.io/apimachinery@v0.36.0/third_party/forked/golang/LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707;spdx=BSD-3-Clause \ + file://pkg/mod/k8s.io/client-go@v0.36.0/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/k8s.io/klog/v2@v2.140.0/LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5;spdx=Apache-2.0 \ + file://pkg/mod/k8s.io/kube-openapi@v0.0.0-20260317180543-43fb72c5454a/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/k8s.io/kube-openapi@v0.0.0-20260317180543-43fb72c5454a/pkg/internal/third_party/go-json-experiment/json/LICENSE;md5=9d210c7471ce08e3db5261f33bf8fce6;spdx=BSD-3-Clause \ + file://pkg/mod/k8s.io/kube-openapi@v0.0.0-20260317180543-43fb72c5454a/pkg/validation/spec/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/k8s.io/utils@v0.0.0-20260319190234-28399d86e0b5/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57;spdx=Apache-2.0 \ + file://pkg/mod/k8s.io/utils@v0.0.0-20260319190234-28399d86e0b5/internal/third_party/forked/golang/LICENSE;md5=591778525c869cdde0ab5a1bf283cd81;spdx=BSD-3-Clause \ + file://pkg/mod/layeh.com/radius@v0.0.0-20221205141417-e7fbddd11d68/LICENSE;md5=815ca599c9df247a0c7f619bab123dad;spdx=MPL-2.0 \ + file://pkg/mod/modernc.org/libc@v1.72.0/LICENSE;md5=e8aca590db3d9304f507bcd5fe4de5a0;spdx=BSD-3-Clause \ + file://pkg/mod/modernc.org/mathutil@v1.7.1/LICENSE;md5=2604a98416f52ae5aaceb3630431020c;spdx=BSD-3-Clause \ + file://pkg/mod/modernc.org/memory@v1.11.0/LICENSE;md5=c4dac399c2cb8794cc72e762c9f07263;spdx=BSD-3-Clause \ + file://pkg/mod/modernc.org/sqlite@v1.50.0/LICENSE;md5=3cd92e5f84bae63802a058f3ff54fbe7;spdx=BSD-3-Clause \ + file://pkg/mod/sigs.k8s.io/json@v0.0.0-20250730193827-2d320260d730/LICENSE;md5=545d3f23616dee7495323aeb0b098df3;spdx=Apache-2.0 \ + file://pkg/mod/sigs.k8s.io/randfill@v1.0.0/LICENSE;md5=8f245a894b7d4f5880176fafd88faad8;spdx=Apache-2.0 \ + file://pkg/mod/sigs.k8s.io/structured-merge-diff/v6@v6.3.2/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e;spdx=Apache-2.0 \ + file://pkg/mod/sigs.k8s.io/yaml@v1.6.0/LICENSE;md5=b5d30dd5bc47d1b56b678ac06dead1c7;spdx=Apache-2.0 \ + file://pkg/mod/software.sslmate.com/src/go-pkcs12@v0.7.1/LICENSE;md5=259f3802525423b1a33efb1b85f64e18;spdx=BSD-3-Clause \ +" diff --git a/recipes-devtools/telegraf/telegraf_1.38.4.bb b/recipes-devtools/telegraf/telegraf_1.38.4.bb index bf9e7c5..f8733c6 100644 --- a/recipes-devtools/telegraf/telegraf_1.38.4.bb +++ b/recipes-devtools/telegraf/telegraf_1.38.4.bb @@ -6,26 +6,31 @@ SECTION = "console/network" CVE_PRODUCT = "telegraf" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=fe53cff8eef1afa881ea0e6325071ecd" +require ${BPN}-licenses.inc SRC_URI = "git://github.com/influxdata/telegraf;protocol=https;branch=release-1.38;destsuffix=${BP}/src/${GO_IMPORT} \ file://telegraf.conf \ " +require ${BPN}-go-mods.inc SRCREV = "c79b06d58e912124624d029a88bbe182254f0ff4" S = "${UNPACKDIR}/${BP}" -inherit go-mod systemd +inherit go-mod go-mod-update-modules systemd # Avoid dynamic linking as it causes segfault GO_LINKSHARED = "" +# The binary is large enough that the PLT-to-GOT displacement overflows the +# 28-bit short ARM PLT entry, tripping a BFD_ASSERT in binutils (elf32-arm.c). +# Use 16-byte long PLT entries, which reach the full address space. +GO_EXTLDFLAGS:append:arm = " -Wl,--long-plt" + GO_IMPORT = "github.com/influxdata/telegraf" GO_INSTALL = "github.com/influxdata/telegraf/cmd/telegraf" SYSTEMD_SERVICE:${PN} = "${PN}.service" -do_compile[network] = "1" - do_install:append() { # FIXME: This has mixed architecture files and causes errors during # packaging diff --git a/recipes-staging/linuxconsole/linuxconsole_1.8.1.bb b/recipes-staging/linuxconsole/linuxconsole_1.8.1.bb index 44ebd28..0e0654e 100644 --- a/recipes-staging/linuxconsole/linuxconsole_1.8.1.bb +++ b/recipes-staging/linuxconsole/linuxconsole_1.8.1.bb @@ -62,6 +62,7 @@ PACKAGES += "inputattach joystick" # We won't package any file here as we are following the same packaging schema # Debian does and we are splitting it in 'inputattach' and 'joystick' packages. +# nooelint: oelint.var.filesoverride intentionally empties the main package (see above) FILES:${PN} = "" FILES:inputattach += "\ diff --git a/recipes-staging/wifi-connect/wifi-connect-4.11.84-crates.inc b/recipes-staging/wifi-connect/wifi-connect-4.11.84-crates.inc index 6577074..e795f92 100644 --- a/recipes-staging/wifi-connect/wifi-connect-4.11.84-crates.inc +++ b/recipes-staging/wifi-connect/wifi-connect-4.11.84-crates.inc @@ -1,6 +1,7 @@ # Autogenerated from wifi-connect v4.11.84 Cargo.lock # from Cargo.lock +# nooelint: oelint.vars.srcuridomains SRC_URI += "\ crate://crates.io/aho-corasick/0.6.10 \ crate://crates.io/ansi_term/0.12.1 \