xbps/doc/xbps_pkgdb_dictionary.dot

36 lines
1.5 KiB
Plaintext

digraph pkgdb_dictionary {
graph [rankdir=LR,rank=same,ranksep=".10"];
edge [arrowhead="vee",arrowsize="0.2",fontname="DejaVuSansCondensed",fontsize="9"];
node [height=".1",shape=box,fontname="DejaVuSansCondensed",fontsize="9"];
pkgdb_plist -> main;
pkgdb_plist [style=filled,fillcolor="darksalmon",label="pkgdb-0.21.plist"];
main [label="Main dictionary"];
main -> pkgdict [label="dictionary"];
main -> pkgdict2 [label="dictionary"];
pkgdict [style=filled,label="Package[0]"];
pkgdict2 [style=filled,label="Package[N+1]"];
pkgdict2 -> pkgdict2_objs [label="objects"];
pkgdict2_objs [style=filled,label="..."];
pkgdict -> pkgname [label="string"];
pkgdict -> version [label="string"];
pkgdict -> pkgver [label="string"];
pkgdict -> state [label="string"];
state -> state_inst [label="value"];
state -> state_hfuned [label="value"];
state -> state_unpack [label="value"];
state -> state_hfrmed [label="value"];
state_inst [style=filled,fillcolor="yellowgreen",label="installed"];
state_hfuned [style=filled,fillcolor="yellowgreen",label="half-unpacked"];
state_unpack [style=filled,fillcolor="yellowgreen",label="unpacked"];
state_hfrmed [style=filled,fillcolor="yellowgreen",label="half-removed"];
pkgdict -> automatic [label="bool"];
automatic [label="automatic-install"];
pkgdict -> short_desc [label="string"]
pkgdict -> rundepends [label="array"];
rundepends [style=filled];
rundepends -> rundep1 [label="string"];
rundepends -> rundep2 [style=filled,label="string"];
rundep1 [label="blah>=2.0"];
rundep2 [style=filled,label="..."];
}