summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2016-10-01 10:04:56 -0300
committerDavid Bremner <david@tethera.net>2016-10-01 10:04:56 -0300
commit57043b7cdff30ce756a463a769a82389a6218c61 (patch)
treee096ddfc361722f6314d6a692c2b9c65e738c4cc
parent8d31d31789ccf1b803216a1eb42dfeabb39522ad (diff)
initial version of ecosystem graph
-rw-r--r--ecosystem.dot.mdwn87
-rw-r--r--ecosystem.mdwn11
-rw-r--r--ecosystem.pngbin0 -> 59593 bytes
3 files changed, 98 insertions, 0 deletions
diff --git a/ecosystem.dot.mdwn b/ecosystem.dot.mdwn
new file mode 100644
index 0000000..0fd28f1
--- /dev/null
+++ b/ecosystem.dot.mdwn
@@ -0,0 +1,87 @@
+
+digraph ecosystem {
+ size = "4,3"
+ margin=0
+ graph [fontsize=20,dpi=200]
+ node [fontsize=20]
+ edge [fontsize=20]
+
+ gmime
+ xapian
+ notmuch_cli [shape=record,style=filled, color=yellow,label="notmuch CLI"]
+ libnotmuch [style=filled,color=yellow]
+
+ subgraph cluster_clients {
+ style=filled;
+ color=green;
+ label="Mail user agents";
+ node [shape=record, style=filled, color=white];
+ notmuch_emacs [label="notmuch-emacs",color=yellow]
+ alot
+ bower
+ astroid
+ notmuch_web [label="notmuch-web"]
+ noservice
+ neomutt [label="neomutt"]
+ notmuch_vim [label="notmuch-vim", color=lightyellow]
+ notmuch_mutt [label="notmuch-mutt", color=lightyellow]
+ }
+
+
+ subgraph cluster_tools {
+ style=filled;
+ color=SlateBlue;
+ label="tools";
+ node [shape=record, style=filled, color=white];
+ afew
+ nmbug [color=yellow]
+ nmbug_status [color=yellow]
+ }
+
+ subgraph cluster_bindings {
+ label="Bindings"
+ style=filled;
+ color=YellowGreen;
+ node [shape=record, style=filled, color=white];
+ ruby_notmuch [label="ruby", color=yellow]
+ python_notmuch [label="python", color=yellow]
+ notmuch_go [label="go"]
+ }
+
+ neomutt -> libnotmuch
+ astroid -> libnotmuch
+ alot->python_notmuch
+ notmuch_emacs->notmuch_cli
+ notmuch_mutt->notmuch_cli
+ notmuch_vim->ruby_notmuch
+ bower -> notmuch_cli
+
+ noservice->notmuch_cli
+ nmbug->notmuch_cli
+ nmbug_status-> python_notmuch
+
+ python_notmuch->libnotmuch
+ ruby_notmuch->libnotmuch
+ notmuch_go ->libnotmuch
+
+ notmuch_web->notmuch_cli
+ notmuch_cli->libnotmuch
+
+ afew->python_notmuch
+
+ libnotmuch->xapian
+ libnotmuch->gmime
+ {
+ edge [style="invisible",arrowhead="none"]
+ notmuch_emacs->astroid
+ notmuch_emacs->neomutt
+ notmuch_emacs->notmuch_vim
+ notmuch_emacs->alot
+ notmuch_emacs->bower
+ bower->notmuch_vim
+ bower->astroid
+ notmuch_web->noservice
+ }
+
+}
+
diff --git a/ecosystem.mdwn b/ecosystem.mdwn
new file mode 100644
index 0000000..8ac358f
--- /dev/null
+++ b/ecosystem.mdwn
@@ -0,0 +1,11 @@
+
+[[ecosystem.png]]
+
+
+### Notes
+
+Figure produced via
+
+ dot -Tpng -o ecosystem.png ecosystem.dot.mdwn
+
+The silly file naming is to (hopefully) placate ikiwiki.
diff --git a/ecosystem.png b/ecosystem.png
new file mode 100644
index 0000000..41e86eb
--- /dev/null
+++ b/ecosystem.png
Binary files differ