Commit ede3e5fe authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Thomas Petazzoni
Browse files

support/graph-depends: don't show toolchain dependency for all packages



Al packages depend on 'toolchain'. Currently, 'graph-depends' graphs this
dependency. The resulting graph is thus cluttered with less-than-useful
information.

Instead, do not graph the 'toolchain' dependency for any package, save
for the fake 'all' package. The graph is now a bit more readable.

Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent bb068823
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -162,13 +162,16 @@ def has_redundant_deps(deps, pkg):
def remove_redundant_deps(deps):
    newdeps = []
    for dep in deps:
        if dep[0] != "all":
        if dep[0] == "all" and dep[1] == "toolchain":
            newdeps.append(dep)
            continue
        if dep[0] != "all" and dep[1] != "toolchain":
            newdeps.append(dep)
            continue
        if not has_redundant_deps(deps, dep[1]):
            newdeps.append(dep)
            continue
        sys.stderr.write("Removing redundant dep all -> %s\n" % dep[1])
        sys.stderr.write("Removing redundant dep %s -> %s\n" % (dep[0],dep[1]))
    return newdeps

TARGET_EXCEPTIONS = [