How to find out the dependency paths?
Posted
by
???
on Super User
See other posts from Super User
or by ???
Published on 2010-12-25T04:33:54Z
Indexed on
2010/12/25
4:55 UTC
Read the original article
Hit count: 196
debian
|package-management
For example, there are packages and their dependencies:
a -> b (a require b)
b -> c & d
x -> a
y -> x
z -> x
z -> x & y
Now, give c
and z
, there are two dependency paths:
z -> x -> a -> b -> c
z -> y -> x -> a -> b -> c
The question is how to find out the dependency paths between two specific Debian packages?
P.S. The idea behind is to draw the dependency graph for a given set of packages, include the intermediate ones missing in the chain.
© Super User or respective owner