| 1 | = 2008-10-09 = |
| 2 | |
| 3 | * debtree - 工具可以畫出目前系統 package dependency 的狀態 |
| 4 | * [http://alioth.debian.org/~fjp/debtree/ 官方網站] |
| 5 | {{{ |
| 6 | $ wget http://alioth.debian.org/~fjp/debtree/debtree_0.7.2_all.deb |
| 7 | $ sudo apt-get install dctrl-tools |
| 8 | $ sudo dpkg -i debtree_0.7.2_all.deb |
| 9 | $ debtree lftp |
| 10 | }}} |
| 11 | * 把產生出來的結果貼到 Trac 上就可以看到套件關係相依圖了. |
| 12 | {{{ |
| 13 | #!graphviz |
| 14 | digraph "lftp" { |
| 15 | rankdir=LR; |
| 16 | node [shape=box]; |
| 17 | "lftp" -> "libexpat1" [color=blue,label="(>= 1.95.8)"]; |
| 18 | "lftp" -> "libgcrypt11" [color=blue,label="(>= 1.2.2)"]; |
| 19 | "libgcrypt11" -> "libgpg-error0" [color=blue,label="(>= 1.4)"]; |
| 20 | "lftp" -> "libgnutls13" [color=blue,label="(>= 1.4.0-0)"]; |
| 21 | "libgnutls13" -> "libgcrypt11" [color=blue,label="(>= 1.2.2)"]; |
| 22 | "libgnutls13" -> "libgpg-error0" [color=blue,label="(>= 1.4)"]; |
| 23 | "libgnutls13" -> "liblzo1" [color=blue]; |
| 24 | "libgnutls13" -> "libopencdk8" [color=blue,label="(>= 0.5.8)"]; |
| 25 | "libopencdk8" -> "libgcrypt11" [color=blue,label="(>= 1.2.2)"]; |
| 26 | "libopencdk8" -> "libgpg-error0" [color=blue,label="(>= 1.4)"]; |
| 27 | "libopencdk8" -> "libopencdk8.11" [color=red]; |
| 28 | "libgnutls13" -> "libtasn1-3" [color=blue,label="(>= 0.3.4)"]; |
| 29 | "libgnutls13" -> "gnutls0" [color=red]; |
| 30 | "libgnutls13" -> "gnutls0.4" [color=red]; |
| 31 | "lftp" -> "libgpg-error0" [color=blue,label="(>= 1.4)"]; |
| 32 | "lftp" -> "libncurses5" [color=blue,label="(>= 5.4-5)"]; |
| 33 | "libncurses5" -> "libgpm2"; |
| 34 | "libgpm2" [style=filled,fillcolor=oldlace]; |
| 35 | "lftp" -> "libreadline5" [color=blue,label="(>= 5.1)"]; |
| 36 | "libreadline5" -> "readline-common" [color=blue]; |
| 37 | "readline-common" -> "libreadline-common" [color=red]; |
| 38 | "libreadline5" -> "libncurses5" [color=blue,label="(>= 5.4-5)"]; |
| 39 | "lftp" -> "libtasn1-3" [color=blue,label="(>= 0.3.4)"]; |
| 40 | "lftp" -> "netbase" [color=blue]; |
| 41 | "netbase" -> "ifupdown" [color=blue,label="(>= 0.6.4-4.9)"]; |
| 42 | "ifupdown" -> "net-tools" [color=blue]; |
| 43 | "ifupdown" -> "lsb-base" [color=blue]; |
| 44 | "lsb-base" -> "sed" [color=blue]; |
| 45 | "lsb-base" -> "ncurses-bin" [color=blue]; |
| 46 | "ncurses-bin" -> "libncurses5" [color=purple,style=bold,label="(>= 5.6+20071006-3)"]; |
| 47 | "ncurses-bin" -> "ncurses" [color=red]; |
| 48 | "ncurses-bin" -> "tput" [color=red]; |
| 49 | "netbase" -> "lsb-base" [color=blue,label="(>= 3.0-6)"]; |
| 50 | "libopencdk8.11" [style=filled,fillcolor=oldlace]; |
| 51 | "gnutls0" [style=filled,fillcolor=oldlace]; |
| 52 | "gnutls0.4" [style=filled,fillcolor=oldlace]; |
| 53 | "libreadline-common" [style=filled,fillcolor=oldlace]; |
| 54 | "ncurses" [style=filled,fillcolor=oldlace]; |
| 55 | "tput" -> "ncurses-bin" [dir=back,arrowtail=inv,color=green]; |
| 56 | "tput" [shape=octagon]; |
| 57 | } |
| 58 | }}} |