From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,WEIRD_PORT autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,6df3ec0dff30c185 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!j32g2000yqc.googlegroups.com!not-for-mail From: Ludovic Brenta Newsgroups: comp.lang.ada Subject: Re: Open source Ada OS? Date: Wed, 26 Jan 2011 05:06:46 -0800 (PST) Organization: http://groups.google.com Message-ID: References: <4d3f3be3$0$22088$742ec2ed@news.sonic.net> NNTP-Posting-Host: 153.98.68.197 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1296047207 3915 127.0.0.1 (26 Jan 2011 13:06:47 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 26 Jan 2011 13:06:47 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: j32g2000yqc.googlegroups.com; posting-host=153.98.68.197; posting-account=pcLQNgkAAAD9TrXkhkIgiY6-MDtJjIlC User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 (.NET CLR 3.5.30729),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:16713 Date: 2011-01-26T05:06:46-08:00 List-Id: Yannick Duch=EAne wrote on comp.lang.ada: > Le Wed, 26 Jan 2011 09:36:57 +0100, Ludovic Brenta =A0 > a =E9crit: >> you can backport bug fixes. You cannot do these things with "just" a tar= ball. > > That's more diff (or like) than CVS which helps here. Wrong. If you do a diff between two releases of GCC (say, 4.4.3 and 4.4.4) the result is literally hundreds of thousands of lines long (even between minor, bug-fix-only releases), so unusable for a human. In contrast, if you browse the version control log, you get a summary, with explanations and bug numbers, of the changes; then you can narrow your "diff" to the commits that you are interested in. CVS would not even help do that because CVS, being rubbish, has per- file histories as opposed to per-project history. What you say might be true in a few particular cases with severe restrictions such as SLOC count < 10_000 and developer_count < 5. In the general case, a proper version control system is, quite simply, vital. Note: I do not even bother to create tarballs of the software that I publish; my version control system does that for me automatically, see http://www.ada-france.org:8081. -- Ludovic Brenta.