From be1ce3b9dd3ce169bb6baad695fa3e5168f5955a Mon Sep 17 00:00:00 2001 From: Akrit Kumar Behera <84931167+akritkbehera@users.noreply.github.com> Date: Mon, 25 May 2026 12:07:58 +0200 Subject: [PATCH] Update provenance_info to include sources and patches --- bits_helpers/build.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bits_helpers/build.py b/bits_helpers/build.py index f2c2a40..9505fdf 100644 --- a/bits_helpers/build.py +++ b/bits_helpers/build.py @@ -670,10 +670,13 @@ def spec_info(spec): return { "name": spec["package"], "tag": spec.get("tag"), - "source": spec.get("source"), + "sources": spec.get("sources") or [spec.get("source")], + "patches": spec.get("patches") or [], "version": spec["version"], "revision": spec["revision"], "hash": spec["hash"], + "variables": spec.get("variables", {}), + "family": spec.get("pkg_family", "") } def dependency_list(key):