blob: 2edb3fb330238c503737fc0419f1219d94d96fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/usr/bin/dot
# interrelationships between binary packages produced by gnupg2 source
# package, if we were to move to the simplified package structure:
# it would be good to graph the external dependencies as well.
digraph gnupg2 {
# odd-duck packages:
node [shape=box];
gpgv_udeb [label="gpgv-udeb"];
gpgv_static [label="gpgv-static"];
gpgv_win32 [label="gpgv-win32"];
# meta-packages, transitional packages:
node [shape=diamond];
gnupg_agent [label="gnupg-agent"];
gnupg2;
gpgv2;
gpgsm;
dirmngr;
node [shape=ellipse];
gnupg_l10n [label="gnupg-l10n"];
# depends:
edge [color=black];
scdaemon -> gnupg;
gnupg2 -> gnupg;
gnupg_agent -> gnupg;
gpgsm -> gnupg;
dirmngr -> gnupg;
gpgv2 -> gpgv;
# recommends:
edge [color=red];
gnupg -> gnupg_l10n;
gnupg -> gpgv;
# suggests:
edge [color=blue];
gpgv -> gnupg;
}
|