70 lines
3.1 KiB
Plaintext
70 lines
3.1 KiB
Plaintext
digraph pkg_props_dictionary {
|
|
graph [rankdir=LR,ranksep="0.7"];
|
|
edge [arrowhead="vee",arrowsize="0.2",fontname="DejaVuSansCondensed",fontsize="8"];
|
|
node [height=".1",shape=box,fontname="DejaVuSansCondensed",fontsize="8"];
|
|
props_plist -> main;
|
|
props_plist [style=filled,fillcolor="darksalmon",label="props.plist"];
|
|
main [label="Package dictionary"];
|
|
main -> homepage [label="string"];
|
|
homepage -> homepage_value;
|
|
homepage_value [style=filled,fillcolor="yellowgreen",label="http://code.google.com/p/xbps"];
|
|
main -> license [label="string"];
|
|
license -> license_value;
|
|
license_value [style=filled,fillcolor="yellowgreen",label="BSD"];
|
|
main -> pkgver [label="string"];
|
|
pkgver -> pkgver_value;
|
|
pkgver_value [style=filled,fillcolor="yellowgreen",label="xbps-0.5.2.2"];
|
|
main -> preserve [style=filled,label="bool"];
|
|
preserve [style=filled];
|
|
main -> run_depends [label="array"];
|
|
run_depends [style=filled];
|
|
run_depends -> rundep1_string [label="string"];
|
|
run_depends -> rundep2_string [label="string"];
|
|
rundep1_string [style=filled,fillcolor="yellowgreen",label="foo>=1.2"];
|
|
rundep2_string [style=filled,label="..."];
|
|
main -> architecture [label="string"];
|
|
architecture -> arch_value;
|
|
arch_value [style=filled,fillcolor="yellowgreen",label="x86_64"];
|
|
main -> instsize [label="integer"];
|
|
instsize -> instsize_value;
|
|
instsize_value [style=filled,fillcolor="yellowgreen",label="389120"];
|
|
instsize [label="installed_size"];
|
|
main -> builddate [label="string"];
|
|
builddate [label="build_date"];
|
|
builddate -> builddate_value;
|
|
builddate_value [style=filled,fillcolor="yellowgreen",label="Friday 27 May, 2011, 06:58:13 UTC"];
|
|
main -> short_desc [label="string"]
|
|
short_desc -> shortdesc_val;
|
|
shortdesc_val [style=filled,fillcolor="yellowgreen",label="The XBPS package system utilities"];
|
|
main -> long_desc [label="string"];
|
|
long_desc -> longdesc_val;
|
|
longdesc_val [style=filled,fillcolor="yellowgreen",label="..."];
|
|
main -> maintainer [label="string"];
|
|
maintainer -> maintainer_val;
|
|
maintainer_val [style=filled,fillcolor="yellowgreen",label="baobab@blobb.org"];
|
|
main -> replaces [label="array"];
|
|
replaces [style=filled];
|
|
replaces -> replace1_string [label="string"];
|
|
replaces -> replace2_string [label="string"];
|
|
replace1_string [style=filled,fillcolor="yellowgreen",label="blah<=2.0"];
|
|
replace2_string [style=filled,label="..."];
|
|
main -> conf_files [label="array"];
|
|
conf_files [style=filled];
|
|
conf_files -> cffile1 [style=filled,label="string"];
|
|
conf_files -> cffile2 [style=filled,label="string"];
|
|
cffile1 [style=filled,fillcolor="yellowgreen",label="/etc/foo.conf"];
|
|
cffile2 [style=filled,label="..."];
|
|
main -> conflicts [label="array"];
|
|
conflicts [style=filled];
|
|
conflicts -> conflict1 [style=filled,label="string"];
|
|
conflicts -> conflict2 [style=filled,label="string"];
|
|
conflict1 [style=filled,fillcolor="yellowgreen",label="foo<2.0"];
|
|
conflict2 [style=filled,label="..."];
|
|
main -> provides [label="array"];
|
|
provides [style=filled];
|
|
provides -> provides1 [style=filled,label="string"];
|
|
provides -> provides2 [style=filled,label="string"];
|
|
provides1 [style=filled,fillcolor="yellowgreen",label="boom-0"];
|
|
provides2 [style=filled,label="..."];
|
|
}
|