From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3265 invoked by alias); 4 Aug 2004 21:27:35 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 3258 invoked from network); 4 Aug 2004 21:27:34 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 4 Aug 2004 21:27:34 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i74LRTe3024324 for ; Wed, 4 Aug 2004 17:27:29 -0400 Received: from localhost.redhat.com (porkchop.devel.redhat.com [172.16.58.2]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i74LRIa16110; Wed, 4 Aug 2004 17:27:18 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 867192B9D; Wed, 4 Aug 2004 17:27:12 -0400 (EDT) Message-ID: <411154B0.3080106@gnu.org> Date: Wed, 04 Aug 2004 21:27:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-GB; rv:1.4.1) Gecko/20040801 MIME-Version: 1.0 To: Steven Johnson Cc: gdb@sources.redhat.com Subject: Re: dot five-o series versions - GDB 6.2.50 References: <41110F1A.3080706@gnu.org> <41115110.3060004@neurizon.net> In-Reply-To: <41115110.3060004@neurizon.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-08/txt/msg00046.txt.bz2 > The only comment I habe is you wouldnt want any more than 4 point releases, before it got confusing. > > Because as a number .5 = .50, and .6 is greater than .50 > > So either the rule should be no more than 4 M.N.* Releases. or when you get to .4, you start going to .41, .42, .43 etc > or just number from .01 ie 6.3.01 otherwise the sequence isnt numeric, its a list of numbers and wont sort properly (using standard ascii or numberic sorts). cagney@nettle$ cat x 6.2 6.2.1 6.2.90 6.2.2 6.2.50 6.2.3 6.2.51 6.2.4 6.2.52 6.2.5 6.2.91 6.2.6 6.2.54 6.2.7 6.2.93 6.2.8 6.2.53 6.2.9 6.2.92 6.2.10 cagney@nettle$ sort -t. -k1,1n -k2,2n -k3,3n x 6.2 6.2.1 6.2.2 6.2.3 6.2.4 6.2.5 6.2.6 6.2.7 6.2.8 6.2.9 6.2.10 6.2.50 6.2.51 6.2.52 6.2.53 6.2.54 6.2.90 6.2.91 6.2.92 6.2.93 ("n" likes to consume "." which breaks the simpler -k1,3n) > So basically does .1 mean .01 and if so why not call it .01? I'm not sure I understand the problem, dot is a field separator rather than decimal place. Andrew