mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
support/graph-depends: allow excluding virtual packages
Like for --stop-on, make --exclude recognise the keyword 'virtual', to stop on virtual packages (as explained in the help...). Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
f9a016a93b
commit
5bcfaaaf4e
@ -333,6 +333,10 @@ def print_pkg_deps(depth, pkg):
|
|||||||
if fnmatch(d,p):
|
if fnmatch(d,p):
|
||||||
add = False
|
add = False
|
||||||
break
|
break
|
||||||
|
if dict_version.get(d) == "virtual" \
|
||||||
|
and "virtual" in exclude_list:
|
||||||
|
add = False
|
||||||
|
break
|
||||||
if add:
|
if add:
|
||||||
print("%s -> %s" % (pkg_node_name(pkg), pkg_node_name(d)))
|
print("%s -> %s" % (pkg_node_name(pkg), pkg_node_name(d)))
|
||||||
print_pkg_deps(depth+1, d)
|
print_pkg_deps(depth+1, d)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user