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):