From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13600 invoked from network); 15 Mar 2009 16:57:50 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 15 Mar 2009 16:57:50 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 23331 invoked from network); 15 Mar 2009 16:54:52 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 15 Mar 2009 16:54:52 -0000 Received: (qmail 6923 invoked by alias); 15 Mar 2009 16:54:47 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26741 Received: (qmail 6903 invoked from network); 15 Mar 2009 16:54:47 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 15 Mar 2009 16:54:47 -0000 Received: from randymail-a10.g.dreamhost.com (caiajhbdcbef.dreamhost.com [208.97.132.145]) by bifrost.dotsrc.org (Postfix) with ESMTP id 9C4BA80307FB for ; Sun, 15 Mar 2009 17:54:41 +0100 (CET) Received: from blorf.net (dsl-74-220-65-6.cruzio.com [74.220.65.6]) by randymail-a10.g.dreamhost.com (Postfix) with ESMTP id 1D2F5D088C for ; Sun, 15 Mar 2009 09:54:40 -0700 (PDT) Date: Sun, 15 Mar 2009 09:54:37 -0700 From: Wayne Davison To: zsh-workers@sunsite.dk Subject: Re: Git mirror at SF + link to "repos" script Message-ID: <20090315165437.GA19800@blorf.net> References: <20090314192359.GA17014@blorf.net> <20090314215123.GO16375@fsst.voodoo.lan> <20090315055916.GA13623@scru.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090315055916.GA13623@scru.org> User-Agent: Mutt/1.5.15+20070412 (2007-04-11) X-Virus-Scanned: ClamAV 0.92.1/9110/Sun Mar 15 06:06:44 2009 on bifrost X-Virus-Status: Clean On Sun, Mar 15, 2009 at 05:59:16AM +0000, Clint Adams wrote: > I'm excited about doing this too, but the git repo doesn't seem to > quite match up with CVS HEAD: The two errors you cited are both cvsps errors triggered by the same bug: in each case, the commits went like this: (1) a ChangeLog commit with a particular log message, (2) a commit to another file with the same log message, (3) a second commit to the same extra file (within the default fuzz factor of 5 minutes) that has the same log message as the other 2 commits. This caused the reverse-scan of the cvs log data to associate the newer revision with the ChangeLog commit (giving it the patchset time of the ChangeLog change), and then create a new patchset entry for the 2nd, earlier entry, but one that is later in time than the patchset of the first revision. Ouch. The easiest "fix" is to specify a smaller fuzz factor size, but I'm also looking at fixing the source code to notice that is is miss-ordering the entries in the file, since that is never the right thing to do. When I get done, I'll create a new git mirror from the cvs repo. ..wayne..