summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflz <flz@FreeBSD.org>2007-03-30 16:56:38 +0000
committerflz <flz@FreeBSD.org>2007-03-30 16:56:38 +0000
commit73687f6a0e3f01bb498edb2338ba1c6c23a921cd (patch)
treebec7a0598d82e3f164ff7246ffe8c83174c835b6
parent026d857fb3f0ca849ee51c82deb649d920013530 (diff)
downloadFreeBSD-src-73687f6a0e3f01bb498edb2338ba1c6c23a921cd.zip
FreeBSD-src-73687f6a0e3f01bb498edb2338ba1c6c23a921cd.tar.gz
Add stub files to keep track of the mentor/mentee relationships.
Have a look at committers-ports.dot for a start. Simple command to generate the graph is: $ dot -T png -o file.png file.dot Dot can be installed via graphics/graphviz. Discussed on: -developers
-rw-r--r--share/misc/Makefile3
-rw-r--r--share/misc/committers-doc.dot15
-rw-r--r--share/misc/committers-ports.dot27
-rw-r--r--share/misc/committers-src.dot20
4 files changed, 64 insertions, 1 deletions
diff --git a/share/misc/Makefile b/share/misc/Makefile
index 975fe76..52cbcc7 100644
--- a/share/misc/Makefile
+++ b/share/misc/Makefile
@@ -1,7 +1,8 @@
# From: @(#)Makefile 8.1 (Berkeley) 6/8/93
# $FreeBSD$
-FILES= ascii birthtoken bsd-family-tree eqnchar flowers init.ee \
+FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot \
+ committers-src.dot eqnchar flowers init.ee \
iso3166 iso639 latin1 man.template mdoc.template operator pci_vendors \
scsi_modes usb_hid_usages
NO_OBJ=
diff --git a/share/misc/committers-doc.dot b/share/misc/committers-doc.dot
new file mode 100644
index 0000000..1ec067f
--- /dev/null
+++ b/share/misc/committers-doc.dot
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+digraph doc {
+
+node [color=grey62, style=filled, bgcolor=black];
+
+# Alumni go here.
+
+node [color=lightblue2, style=filled, bgcolor=black];
+
+# Current doc committers go here. Try to keep things sorted.
+
+# Here are the mentor/mentee relationships.
+
+}
diff --git a/share/misc/committers-ports.dot b/share/misc/committers-ports.dot
new file mode 100644
index 0000000..438655b
--- /dev/null
+++ b/share/misc/committers-ports.dot
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+digraph ports {
+
+node [color=grey62, style=filled, bgcolor=black];
+
+# Alumni go here.
+
+node [color=lightblue2, style=filled, bgcolor=black];
+
+# Current ports committers go here. Try to keep things sorted.
+
+flz [label="Florent Thoumie\nflz@FreeBSD.org\n2005/03/01"]
+garga [label="Renato Botelho\ngarga@FreeBSD.org\n2005/07/11"]
+johans [label="Johan Selst\njohans@FreeBSD.org\n2006/04/01"]
+laszlof [label="Frank Laszlo\nlaszlof@FreeBSD.org\n2006/11/07"]
+pav [label="Pav Lucistnik\npav@FreeBSD.org\n2003/11/12"]
+
+# Here are the mentor/mentee relationships.
+
+flz -> garga
+flz -> johans
+flz -> laszlof
+
+pav -> flz
+
+}
diff --git a/share/misc/committers-src.dot b/share/misc/committers-src.dot
new file mode 100644
index 0000000..1482697
--- /dev/null
+++ b/share/misc/committers-src.dot
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+digraph src {
+
+node [color=grey62, style=filled, bgcolor=black];
+
+# Alumni go here.
+
+node [color=lightblue2, style=filled, bgcolor=black];
+
+# Current src committers go here. Try to keep things sorted.
+
+cperciva [label="Colin Percival\ncperciva@FreeBSD.org\n2004/01/20"]
+flz [label="Florent Thoumie\nflz@FreeBSD.org\n2006/03/30"]
+
+# Here are the mentor/mentee relationships.
+
+cperciva -> flz
+
+}
OpenPOWER on IntegriCloud