From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Giorgos Keramidas Newsgroups: gmane.emacs.devel Subject: Re: What a modern collaboration toolkit looks like Date: Thu, 3 Jan 2008 03:21:33 +0200 Message-ID: <20080103012133.GE13318@kobe.laptop> References: <20071231130712.GB8641@thyrsus.com> <20080101171120.GC3830@muc.de> <20080101.190535.32709273.wl@gnu.org> <87sl1gnh3o.fsf@red-bean.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1199323421 28979 80.91.229.12 (3 Jan 2008 01:23:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 3 Jan 2008 01:23:41 +0000 (UTC) Cc: Oscar Fuentes , emacs-devel@gnu.org To: Karl Fogel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jan 03 02:24:01 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JAEoQ-0006gH-AA for ged-emacs-devel@m.gmane.org; Thu, 03 Jan 2008 02:23:58 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAEo4-0000rE-82 for ged-emacs-devel@m.gmane.org; Wed, 02 Jan 2008 20:23:36 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAEmA-0008Mc-Tw for emacs-devel@gnu.org; Wed, 02 Jan 2008 20:21:39 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAEm9-0008Lq-Qj for emacs-devel@gnu.org; Wed, 02 Jan 2008 20:21:38 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAEm9-0008Le-Ht for emacs-devel@gnu.org; Wed, 02 Jan 2008 20:21:37 -0500 Original-Received: from mx-out.forthnet.gr ([193.92.150.104] helo=mx-out-01.forthnet.gr) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JAEm8-0005Cs-VJ for emacs-devel@gnu.org; Wed, 02 Jan 2008 20:21:37 -0500 Original-Received: from mx-av-04.forthnet.gr (mx-av.forthnet.gr [193.92.150.27]) by mx-out-01.forthnet.gr (8.13.8/8.13.8) with ESMTP id m031LZ3s004040; Thu, 3 Jan 2008 03:21:35 +0200 Original-Received: from MX-IN-05.forthnet.gr (mx-in-05.forthnet.gr [193.92.150.32]) by mx-av-04.forthnet.gr (8.14.1/8.14.1) with ESMTP id m031LZkH014452; Thu, 3 Jan 2008 03:21:35 +0200 Original-Received: from kobe.laptop (ppp5-162.adsl.forthnet.gr [62.1.228.162]) by MX-IN-05.forthnet.gr (8.14.2/8.14.2) with ESMTP id m031LYBr021986; Thu, 3 Jan 2008 03:21:35 +0200 Authentication-Results: MX-IN-05.forthnet.gr smtp.mail=keramida@ceid.upatras.gr; spf=neutral Authentication-Results: MX-IN-05.forthnet.gr header.from=keramida@ceid.upatras.gr; sender-id=neutral Original-Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.2/8.14.2) with ESMTP id m031LYvV014622; Thu, 3 Jan 2008 03:21:34 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Original-Received: (from keramida@localhost) by kobe.laptop (8.14.2/8.14.2/Submit) id m031LXpC014621; Thu, 3 Jan 2008 03:21:33 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Content-Disposition: inline In-Reply-To: <87sl1gnh3o.fsf@red-bean.com> X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:85960 Archived-At: On 2008-01-02 11:48, Karl Fogel wrote: > I tried to do a test conversion of the Emacs CVS repository, but don't > see a way to get a full repository tarball from Savannah. If someone > can hand me one, I'll do a test conversion and report back. I use the following script to rsync the repository now and then: #!/bin/sh # # Mirror the CVS repository of Emacs. Information about rsync and # the rsync incantation to mirror the repo, obtained from: # # Ken Raeburn, raeburn at raeburn.org # Message-Id: # on emacs-devel # rsync --delete --force --recursive \ --links --safe-links --hard-links --times \ --compress --progress -vv --stats \ cvs.savannah.gnu.org::sources/emacs/ /home/emacs/ Many belated thanks to Ken Raeburn, who initially pointed me at this method of obtaining a local CVS repository :)