diff options
-rw-r--r-- | share/misc/Makefile | 3 | ||||
-rw-r--r-- | share/misc/committers-doc.dot | 15 | ||||
-rw-r--r-- | share/misc/committers-ports.dot | 27 | ||||
-rw-r--r-- | share/misc/committers-src.dot | 20 |
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 + +} |