Lines Matching full:dependency
12 # the dependency graph to 'depth' levels.
17 # configuration. For example, many packages have a dependency on
33 MODE_FULL = 1 # draw full dependency graph for all selected packages
34 MODE_PKG = 2 # draw dependency graph for a given package
60 # Retrieves from the cache whether pkg2 is a transitive dependency
62 # Note: raises a KeyError exception if the dependency is not known.
67 # This function return True if pkg is a dependency (direct or
94 # these dependency chain: A->{B,C} and B->{C}, the A->{C} dependency is
95 # already covered by B->{C}, so C is a transitive dependency of A, via B.
97 # - for each dependency d[i] of the package pkg
98 # - if d[i] is a dependency of any of the other dependencies d[j]
117 # to trim when generating the dependency graph.
121 # This function removes the dependency on some 'mandatory' package, like the
133 # This function will check that there is no loop in the dependency chain
134 # As a side effect, it builds up the dependency cache.
148 logging.warning("which is a dependency of: %s" % (_p))
160 # This functions trims down the dependency list of all packages.
161 # It applies in sequence all the dependency-elimination methods.
203 # Print the dependency graph of a package
243 help="Only do the dependency checks (circular deps...)")
249 help="Limit the dependency graph to DEPTH levels; 0 means no limit.")