I went to cvs update and got errors from the checkout script. Savannah has restructured CVS:
http://savannah.gnu.org/forum/forum.php?forum_id=4168 They say to do the following to convert a working copy: find -path '.*/CVS/Root' -print0 | xargs -0 perl -i -p -e 's/:ext:anoncvs\@(cvs\.)?s/:pserver:[EMAIL PROTECTED]/' Without GNU find (e.g. on NetBSD): find . -name Root -print0 | xargs -0 perl -i -p -e 's/:ext:anoncvs\@(cvs\.)?s/:pserver:[EMAIL PROTECTED]/' worked for me, but is slightly dangerous. They renamed /cvsroot to /sources, so I also did: find . -name Root -print0 | xargs -0 perl -i -p -e 's/cvsroot/sources/' Also, checkout needs changing for the non-developer case. I also removed the cvs login, since it insists on a password at every update which is inconvenient. Probably the developer CVSROOT should change as well. Index: checkout =================================================================== RCS file: /sources/gnuradio/gr-build/checkout,v retrieving revision 1.12 diff -u -r1.12 checkout --- checkout 20 Nov 2005 07:01:13 -0000 1.12 +++ checkout 12 Dec 2005 21:46:52 -0000 @@ -39,7 +39,7 @@ cvs_d_option = { - 'savannah' : { 'anon' : ':ext:[EMAIL PROTECTED]:/cvsroot/gnuradio', + 'savannah' : { 'anon' : ':pserver:[EMAIL PROTECTED]:/sources/gnuradio', 'devel' : '[EMAIL PROTECTED]:/cvsroot/gnuradio' }, 'sourceforge' : { 'anon' : ':pserver:[EMAIL PROTECTED]:/cvsroot/opensdr', 'devel' : '[EMAIL PROTECTED]:/cvsroot/opensdr' } @@ -70,7 +70,7 @@ if in_list (module, exclude_list): continue d_option = cvs_d_option[repository]['anon'] - login_required = re.match (':pserver:', d_option) + login_required = 0 and re.match (':pserver:', d_option) if login_required: sys.stderr.write ("Press Enter at the Password prompt.\n") cmd = "cvs -d%s login" % (d_option,) -- Greg Troxel <[EMAIL PROTECTED]> _______________________________________________ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio