Just a headsup on what's going on with the CVS. We've got several of the developers added (fxkuehl, daenzer, keithw, idr, jonsmirl, akin, anholt). At this point I'm just waiting to get a new snapshot of the repository to move it in. Unfortunately, the cvs.sourceforge.net website is down, so I've submitted a support request and hopefully it'll be fixed soon.
In the meantime, remaining developers should send me their ssh keys and preferred username. Also, what do we want to do with the old CVS on sf.net once we move over? Should we do something to prevent commits from going into the old tree?
Here's a little script that will fix an existing DRI tree to use the new CVS server. It seems to work okay, but it's hard to tell 100% since the SF and FreeDesktop repositories are out of sync.
#!/bin/sh
tmp=/tmp/fix_CVS.$$ find . -type d -a -name CVS |\ while read d do cat $d/Root \ | sed 's/cvs.dri.sourceforge.net:\/cvshome/dri.freedesktop.org\/cvs/' \ > $tmp mv $tmp $d/Root done