On Tue, May 6, 2008 at 11:33 AM, John Baldwin <[EMAIL PROTECTED]> wrote: > On Wednesday 19 March 2008 10:47:03 am David E. O'Brien wrote: > > obrien 2008-03-19 14:47:03 UTC > > > > FreeBSD src repository > > > > src/contrib/cvs - Imported sources > > Update of /home/ncvs/src/contrib/cvs > > In directory repoman.freebsd.org:/tmp/cvs-serv25516 > > > > Log Message: > > Import of 1.11 branch snapshot - using the 10-March-2008 code base. > > > > Status: > > > > Vendor Tag: CVSHOME > > Release Tags: v1_11_20080310 > > Please consider reverting this. There have been lots of reports of CVS > breakage after these changes. The latest I ran into today is that 'cvs > update -C' doesn't work anymore.
Ahh! I thought I was going crazy when I ran into this yesterday.. The other big problem of course is that if a file is set to 'o' expansion mode (preserve keywords, eg: cvs admin -ko or cvs import -ko), then 'cvs update -A' always repeats the checkout, over and over again. I went through the repository and removed the 'expand @o@' modes that had been bogusly set in the past as a mitigation, but it still needs to be fixed. [EMAIL PROTECTED]:38am]/tmp/cvs/co/dir-118> echo foo > foo.txt [EMAIL PROTECTED]:39am]/tmp/cvs/co/dir-119> cvs add -ko foo.txt cvs add: scheduling file `foo.txt' for addition cvs add: use 'cvs commit' to add this file permanently [EMAIL PROTECTED]:39am]/tmp/cvs/co/dir-120> cvs commit -m 'add with -ko' cvs commit: Examining . RCS file: /tmp/cvs/repo/dir/foo.txt,v done Checking in foo.txt; /tmp/cvs/repo/dir/foo.txt,v <-- foo.txt initial revision: 1.1 done [EMAIL PROTECTED]:39am]/tmp/cvs/co/dir-121> cvs up -A cvs update: Updating . U foo.txt [EMAIL PROTECTED]:39am]/tmp/cvs/co/dir-122> cvs up -A cvs update: Updating . U foo.txt [EMAIL PROTECTED]:39am]/tmp/cvs/co/dir-123> This is a pretty drastic regression. -- Peter Wemm - [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] "All of this is for nothing if we don't go to the stars" - JMS/B5 "If Java had true garbage collection, most programs would delete themselves upon execution." -- Robert Sewell _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
