From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4222 invoked by alias); 3 Feb 2006 22:58:05 -0000 Received: (qmail 4213 invoked by uid 22791); 3 Feb 2006 22:58:03 -0000 X-Spam-Check-By: sourceware.org Received: from e31.co.us.ibm.com (HELO e31.co.us.ibm.com) (32.97.110.149) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 03 Feb 2006 22:58:01 +0000 Received: from westrelay02.boulder.ibm.com (westrelay02.boulder.ibm.com [9.17.195.11]) by e31.co.us.ibm.com (8.12.11/8.12.11) with ESMTP id k13Mvtl3012950 for ; Fri, 3 Feb 2006 17:57:55 -0500 Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by westrelay02.boulder.ibm.com (8.12.10/NCO/VERS6.8) with ESMTP id k13MtvcY209516 for ; Fri, 3 Feb 2006 15:55:57 -0700 Received: from d03av02.boulder.ibm.com (loopback [127.0.0.1]) by d03av02.boulder.ibm.com (8.12.11/8.13.3) with ESMTP id k13MvtN4002652 for ; Fri, 3 Feb 2006 15:57:55 -0700 Received: from dufur.beaverton.ibm.com (dufur.beaverton.ibm.com [9.47.22.20]) by d03av02.boulder.ibm.com (8.12.11/8.12.11) with ESMTP id k13Mvsbk002630; Fri, 3 Feb 2006 15:57:55 -0700 Subject: Re: using rsync to create local repository From: PAUL GILLIAM Reply-To: pgilliam@us.ibm.com To: Daniel Jacobowitz Cc: gdb-patches@sources.redhat.com In-Reply-To: <20060201234306.GD14187@nevyn.them.org> References: <1138301788.1423.54.camel@dufur.beaverton.ibm.com> <20060126190733.GA13020@nevyn.them.org> <1138308820.1423.59.camel@dufur.beaverton.ibm.com> <20060126205524.GA17357@nevyn.them.org> <1138318142.1423.70.camel@dufur.beaverton.ibm.com> <20060201234306.GD14187@nevyn.them.org> Content-Type: multipart/mixed; boundary="=-7vnTsFqXGAKHf8slK4zd" Date: Fri, 03 Feb 2006 22:58:00 -0000 Message-Id: <1139007553.1423.133.camel@dufur.beaverton.ibm.com> Mime-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-02/txt/msg00050.txt.bz2 --=-7vnTsFqXGAKHf8slK4zd Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 2276 On Wed, 2006-02-01 at 18:43 -0500, Daniel Jacobowitz wrote: > On Thu, Jan 26, 2006 at 03:29:02PM -0800, PAUL GILLIAM wrote: > > +Under rare circumstances, it is desirable to maintain a local copy of > > +the complete CVS repository. Anonymous rsync access has > > +been is available for that purpose. Here is how to get a copy of the > > +repository, or to synchronize an existing one: > > "has been is"; probably just want "is". I guess I couldn't make up my mind 8-) > > > + > > +
> > +rsync --archive --delete --compress rsync://sources.redhat.com/src-cvs src-cvs 
> > That's not the command you were using, is it? There were some > --exclude options; without them you can't check out of the resulting > tree and you waste a lot of bandwidth. > Damn! You're right. I don't know what I was thinking. Here is the actual command I used: rsync -az --delete --exclude '#cvs.*' --exclude 'CVSROOT/config' \ --exclude \ 'CVSROOT/history' --exclude 'CVSROOT/updatelog' \ rsync://sources.redhat.com/gdb-cvs gdb-cvs I cribbed these from Janis Johnson as used for GCC. Do we need these same excludes? > > + > > +You can get rsync or learn more about it from its home page: > > + rsync.samba.org > Extra space before rsync.samba.org. There's supposed to be an = after > href. > OK, attached is the new patch: OK to commit? I have also attached a patch to MAINTAINERS in light of the following e-mail exchange: > Me: Are you the Jim Kingdon that was involved in GDB a few years ago? > If so, should this file be updated to include your new e-mail address? > It looks like the one in the MAINTAINERS file is 5 years out of date. > > Jim Kingdon: Yes, it is out of date. I was in touch with someone (I > forget who) was updating MAINTAINERS more generally, so I think he's > taking care of it. But yes, that sgi address won't work. > > Me: It sounds like you are still interested in being the main Web Page > maintainer for GDB. Is that true? > > Jim Kingdon: No. I haven't edited a GDB web page in many years, and > don't expect to in the future. As you can see from the patch, I am volunteering to take Jim's place. (With as little on-the-job training from you as possible 8-) --=-7vnTsFqXGAKHf8slK4zd Content-Disposition: attachment; filename=rsync.patch Content-Type: text/x-patch; name=rsync.patch; charset=utf-8 Content-Transfer-Encoding: 7bit Content-length: 1248 Index: index.html =================================================================== RCS file: /cvs/gdb/htdocs/current/index.html,v retrieving revision 1.35 diff -a -u -r1.35 index.html --- index.html 2 Nov 2005 21:58:50 -0000 1.35 +++ index.html 3 Feb 2006 22:25:30 -0000 @@ -148,6 +148,22 @@

+

  • CVS via rsync (rarely used):

    + +Under rare circumstances, it is desirable to maintain a local copy of +the complete CVS repository. Anonymous rsync access is +available for that purpose. Here is how to get a copy of the +repository, or to synchronize an existing one: + +

    + rsync -az --delete --exclude '#cvs.*' --exclude 'CVSROOT/config' --exclude 'CVSROOT/history' --exclude 'CVSROOT/updatelog' rsync://sources.redhat.com/gdb-cvs gdb-cvs
    +
    + +You can get rsync or learn more about it from its home page: +rsync.samba.org + +

    +

  • FTP:

    A daily snapshot of the current development sources (Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.

    -

    Last modified 2005-10-25.

    +

    Last modified 2006-02-03.

    --=-7vnTsFqXGAKHf8slK4zd Content-Disposition: attachment; filename=maintainers.patch Content-Type: text/x-patch; name=maintainers.patch; charset=utf-8 Content-Transfer-Encoding: 7bit Content-length: 712 2006-02-03 Paul Gilliam * MAINTAINERS: Take Jim Kingdon's place as lead web pages maintainer. Index: MAINTAINERS =================================================================== RCS file: /cvs/src/src/gdb/MAINTAINERS,v retrieving revision 1.336 diff -a -u -r1.336 MAINTAINERS --- MAINTAINERS 20 Jan 2006 22:31:07 -0000 1.336 +++ MAINTAINERS 3 Feb 2006 22:49:05 -0000 @@ -426,8 +426,8 @@ gdb/gdbserver Daniel Jacobowitz dan@debian.org -Web pages. Jim Kingdon jkingdon@engr.sgi.com ++ - (anyone can edit; kingdon is just lead maintainer) +Web pages. Paul Gilliam pgilliam@us.ibm.com + (anyone can edit; gilliam is just lead maintainer) Makefile.in, configure* ALL --=-7vnTsFqXGAKHf8slK4zd--