add apk-dot(8)

cute-signatures
Drew DeVault 2020-01-07 20:47:37 -05:00 committed by Timo Teräs
parent cd2bf9ff36
commit 830d96b3ee
2 changed files with 30 additions and 0 deletions

View File

@ -8,6 +8,7 @@ docs: $(obj)/apk.8 \
$(obj)/apk-add.8 \
$(obj)/apk-cache.8 \
$(obj)/apk-del.8 \
$(obj)/apk-dot.8 \
$(obj)/apk-fix.8 \
$(obj)/apk-info.8 \
$(obj)/apk-list.8 \

29
doc/apk-dot.8.scd Normal file
View File

@ -0,0 +1,29 @@
apk-dot(8)
# NAME
apk dot - generate graphviz graphs
# SYNOPSIS
*apk dot* [<_options_>...] [_pkgmask_...]
# DESCRIPTION
*apk dot* generates graphviz dependency graphs for packages matching the masks
specified, or for every known package if unspecified (this will generate a
large and unwieldy graph).
# OPTIONS
*--errors*
Graph only relationships considered erroneous, e.g. cycles and missing
packages.
*--installed*
Consider only installed packages.
# AUTHORS
Natanael Copa <ncopa@alpinelinux.org>++
Timo Teräs <_timo.teras@iki.fi_>