From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JC2sD-00010d-DV for mharc-grub-devel@gnu.org; Mon, 07 Jan 2008 20:03:21 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JC2sB-0000zV-Bj for grub-devel@gnu.org; Mon, 07 Jan 2008 20:03:19 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JC2s9-0000zE-U5 for grub-devel@gnu.org; Mon, 07 Jan 2008 20:03:19 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JC2s9-0000zB-Ro for grub-devel@gnu.org; Mon, 07 Jan 2008 20:03:17 -0500 Received: from c60.cesmail.net ([216.154.195.49]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.60) (envelope-from ) id 1JC2s9-0000Pz-3L for grub-devel@gnu.org; Mon, 07 Jan 2008 20:03:17 -0500 Received: from unknown (HELO relay.cesmail.net) ([192.168.1.81]) by c60.cesmail.net with ESMTP; 07 Jan 2008 20:03:16 -0500 Received: from [192.168.1.21] (static-72-92-88-10.phlapa.fios.verizon.net [72.92.88.10]) by relay.cesmail.net (Postfix) with ESMTP id 74280618FE1; Mon, 7 Jan 2008 20:03:15 -0500 (EST) From: Pavel Roskin To: The development of GRUB 2 In-Reply-To: <1199744773.7308.86.camel@localhost.localdomain> References: <1199735509.7308.68.camel@localhost.localdomain> <20080107220004.GA23660@thorin> <1199743610.7308.77.camel@localhost.localdomain> <20080107221348.GC23660@thorin> <1199744773.7308.86.camel@localhost.localdomain> Content-Type: text/plain Date: Mon, 07 Jan 2008 20:03:14 -0500 Message-Id: <1199754194.7072.11.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.12.2 (2.12.2-2.fc8) Content-Transfer-Encoding: 7bit X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. Cc: "Centurion Computer Technology \(2005\) Ltd" Subject: Re: Debian Packaging X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jan 2008 01:03:19 -0000 On Tue, 2008-01-08 at 11:26 +1300, Centurion Computer Technology (2005) Ltd wrote: > Hopefully Pavel can enlighten us on how this relates to CVS. I thought > everything was/had moved to git. I assume that if youa dd it to CVS > then it will be magically replicated in the git repository There is no magic here. I just run a simple script from time to time (it's not even a cron job). I cannot promise that it will happen forever. I suggest that you don't rely on the git repository as it is now. I don't want to be in the position that others depend on me running something every day or on my machine being up and running. If you really need a git repository, I suggest that you make your own mirror or take over the mirroring process on repo.or.cz and make it automatic. You'll need a user account on repo.or.cz for the later. Just in case, that's the script I'm using: #!/bin/sh GRUB2_GIT_DIR=/home/proski/src/grub2-git GRUB2_CVS_AUTHORS=/home/proski/local/grub-cvs-authors GRUB2_CVS_ROOT=:pserver:anoncvs@cvs.savannah.gnu.org:/cvsroot/grub GRUB2_GIT_REPO=git+ssh://repo.or.cz/srv/git/grub2.git cd "$GRUB2_GIT_DIR" git-cvsimport -d "$GRUB2_CVS_ROOT" -C "$GRUB2_GIT_DIR" -k -u -A \ "$GRUB2_CVS_AUTHORS" -a grub2 git-update-server-info git-gc --prune git-push --all "$GRUB2_GIT_REPO" -- Regards, Pavel Roskin