From owner-freebsd-stable@FreeBSD.ORG Mon Jan 28 04:10:58 2013 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3D7D0B95 for ; Mon, 28 Jan 2013 04:10:58 +0000 (UTC) (envelope-from stephen@missouri.edu) Received: from wilberforce.math.missouri.edu (wilberforce.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 2F4E681A for ; Mon, 28 Jan 2013 04:10:56 +0000 (UTC) Received: from [127.0.0.1] (wilberforce.math.missouri.edu [128.206.184.213]) by wilberforce.math.missouri.edu (8.14.6/8.14.6) with ESMTP id r0S3sjk8047114; Sun, 27 Jan 2013 21:54:45 -0600 (CST) (envelope-from stephen@missouri.edu) Message-ID: <5105F684.501@missouri.edu> Date: Sun, 27 Jan 2013 21:54:44 -0600 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130106 Thunderbird/17.0.2 MIME-Version: 1.0 To: "Isaac (.ike) Levy" Subject: Re: svn - but smaller? References: <20130123144050.GG51786@e-Gitt.NET> <20130124111332.GA29105@server.rulingia.com> <1359343502-3377760.86081485.fr0S3OcBl026861@rs149.luxsci.com> In-Reply-To: <1359343502-3377760.86081485.fr0S3OcBl026861@rs149.luxsci.com> X-Enigmail-Version: 1.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org, Peter Jeremy X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2013 04:10:58 -0000 On 01/27/2013 09:24 PM, Isaac (.ike) Levy wrote: > Hi Peter, > > On Jan 24, 2013, at 6:13 AM, Peter Jeremy wrote: > >> On 2013-Jan-23 15:40:50 +0100, Oliver Brandmueller wrote: >>> in ancient times there was cvsup. cvsup was a PITA if you wanted (or >>> needed) to install it via ports, the only reasonable way was to use >>> pkg_add for that if you didn't want to pollute your system with >>> otherwise unneeded software. >> >> There was also ctm(1). ctm is small, BSD-licensed and has been part >> of FreeBSD forever (almost). Thanks to stephen@, ctm deltas for >> various src trees, as well as the entire SVN repo are still available. >> c[v]sup can do things than aren't possible with ctm but I would expect >> that most people who currently use c[v]sup could readily migrate to >> using ctm. >> >> See http://www.freebsd.org/doc/handbook/ctm.html for details. >> >> Note that mirroring the actual SVN repo via ctm requires some patches. >> There is a README and patches in ftp://ftp.freebsd.org/pub/FreeBSD/CTM/svn-cur/ >> >> -- >> Peter Jeremy > > Thank you for adding the ctm bits in the page, I'm deeply intrigued by possibly solving this problem with bits *already* in base?!! > > https://wiki.freebsd.org/action/diff/UsersFetchingSource?action=diff&rev1=6&rev2=7 > > However, even after reading the handbook page, I just don't quite understand how to use it on a modern system. (The handbook page isn't too helpful, nor is the man page- perhaps I'm looking at it backwards) Could you help clarify: > > - does CTM go away with the CVS servers? > - do CTM-compatable patch/delta files exist on project repos? > - what is the cleanest path to using CTM? (e.g. is the patch you mention required) > > -- > Say I have a bare 9.1 install, no ports, haven't downloaded any base/src or ports yet. > How do I go about using ctm(1) to fetch REL or STABLE to /usr/src, command by command? First, you don't need any patches to get started. Suppose you want to keep up with 9.x-stable. Then you look at the ftp site ftp://ftp.freebsd.org/pub/FreeBSD/CTM/src-9/, look at the latest xEmpty file, and fetch it. Then create an empty directory /usr/src, and then do cd /usr/src && ctm the-xEmpty-file-you-downloaded. No need to decompress the file first. Then fetch from the same web site all the files whose number is greater than the xEmpty file you downloaded and do cd /usr/src && ctm the-rest-of-the-files* Now in /usr/src, you will have a reasonably up to date version of 9.x-stable. You can keep it up to date by getting more files, either from the ftp site, or by email, and doing again cd /usr/src && ctm the-rest-of-the-files* It will automatically ignore the files already applied. Similar instructions for all the other stable/currents and ports. Main thing to remember - start with an empty directory. Also making local changes is not permitted. If ctm tries to modify a file whose md5 checksum has changed, it will quit with an error message. (But it won't leave your system in an unusable state - if you put that file back to its original state, then ctm will work again.) Now, if you want something not offered by ctm (e.g. 8.2-release), then you need to use svn. You can get svn via ctm. But you (1) need to apply the patch, (2) install the svn port, and (3) install the xz port if your FreeBSD is really old.