Skip to content
Snippets Groups Projects
Unverified Commit b76963ab authored by Oliver Smith's avatar Oliver Smith
Browse files

pmb: build: add debug log about missing deps (MR 2388)

Have messages like the following in "pmbootstrap log" to better
understand why resolving packages fails. The bug with -dev pkgs not
being recognized will be fixed in a follow-up patch.

> systemd: missing dependency linux-pam-dev, trying to queue other packages first
> linux-pam: missing dependency systemd-dev, trying to queue other packages first
> dbus: missing dependency systemd-dev, trying to queue other packages first
parent 22865fdf
No related branches found
No related tags found
1 merge request!2388Properly build outdated dependencies for packages
......@@ -278,6 +278,10 @@ def prioritise_build_queue(disarray: list[BuildQueueItem]) -> list[BuildQueueIte
logging.warning(
"WARNING: cyclical build dependency: can't build {item['name']}, no binary package for {dep}"
)
else:
logging.debug(
f"{item['name']}: missing dependency {dep}, trying to queue other packages first"
)
if missing_deps:
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment