From unknown Sun Jun 22 03:47:12 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#5991 <5991@debbugs.gnu.org> To: bug#5991 <5991@debbugs.gnu.org> Subject: Status: [bug#5958 PATCH] docs: document translation of obsolete sort syntax Reply-To: bug#5991 <5991@debbugs.gnu.org> Date: Sun, 22 Jun 2025 10:47:12 +0000 retitle 5991 [bug#5958 PATCH] docs: document translation of obsolete sort s= yntax reassign 5991 coreutils submitter 5991 Eric Blake severity 5991 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 18:33:28 2010 Received: (at submit) by debbugs.gnu.org; 20 Apr 2010 22:33:28 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4M0V-0002y3-P6 for submit@debbugs.gnu.org; Tue, 20 Apr 2010 18:33:28 -0400 Received: from mail.gnu.org ([199.232.76.166] helo=mx10.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4M0T-0002xx-Mj for submit@debbugs.gnu.org; Tue, 20 Apr 2010 18:33:27 -0400 Received: from lists.gnu.org ([199.232.76.165]:40912) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1O4M0P-0006yI-96 for submit@debbugs.gnu.org; Tue, 20 Apr 2010 18:33:21 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O4M0O-0003i4-BL for bug-coreutils@gnu.org; Tue, 20 Apr 2010 18:33:20 -0400 Received: from [140.186.70.92] (port=43471 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O4M0M-0003fM-Jn for bug-coreutils@gnu.org; Tue, 20 Apr 2010 18:33:19 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.0 (2010-01-18) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=unavailable version=3.3.0 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O4M0K-0001Fi-Cz for bug-coreutils@gnu.org; Tue, 20 Apr 2010 18:33:17 -0400 Received: from qmta09.westchester.pa.mail.comcast.net ([76.96.62.96]:56677) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4M0K-0001Fb-8W for bug-coreutils@gnu.org; Tue, 20 Apr 2010 18:33:16 -0400 Received: from omta16.westchester.pa.mail.comcast.net ([76.96.62.88]) by qmta09.westchester.pa.mail.comcast.net with comcast id 7usD1e00C1uE5Es59yZGTJ; Tue, 20 Apr 2010 22:33:16 +0000 Received: from localhost.localdomain ([98.202.176.54]) by omta16.westchester.pa.mail.comcast.net with comcast id 7yf51e00A1Anwcq3cyf8K1; Tue, 20 Apr 2010 22:39:09 +0000 From: Eric Blake To: bug-coreutils@gnu.org Subject: [bug#5958 PATCH] docs: document translation of obsolete sort syntax Date: Tue, 20 Apr 2010 16:33:16 -0600 Message-Id: <1271802796-7437-1-git-send-email-eblake@redhat.com> X-Mailer: git-send-email 1.6.6.1 In-Reply-To: <4BCE2664.7060101@draigBrady.com> References: <4BCE2664.7060101@draigBrady.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.0 (-----) * doc/coreutils.texi (sort invocation): Mention the conversion. --- How about this followup, copying the comment from Pádraig's patch into our documentation? doc/coreutils.texi | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 7561f2a..ed620f3 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -4126,6 +4126,11 @@ sort invocation @vindex POSIXLY_CORRECT On older systems, @command{sort} supports an obsolete origin-zero syntax @samp{+@var{pos1} [-@var{pos2}]} for specifying sort keys. +The sequence @samp{sort +@var{a}.@var{x} -@var{b}.@var{y}} +translates to @samp{sort -k@var{a+1}.@var{x+1},@var{b}} if @var{y} +is @samp{0} or absent, otherwise it translates to @samp{sort +-k@var{a+1}.@var{x+1},@var{b+1}.@var{y}}. + This obsolete behavior can be enabled or disabled with the @env{_POSIX2_VERSION} environment variable (@pxref{Standards conformance}); it can also be enabled when @env{POSIXLY_CORRECT} is -- 1.6.6.1 From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 20 20:00:00 2010 Received: (at control) by debbugs.gnu.org; 21 Apr 2010 00:00:00 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4NMF-00048o-1y for submit@debbugs.gnu.org; Tue, 20 Apr 2010 19:59:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4NMC-00048d-OL for control@debbugs.gnu.org; Tue, 20 Apr 2010 19:59:58 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o3KNxamP014126 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 20 Apr 2010 19:59:48 -0400 Received: from [10.3.238.47] (vpn-238-47.phx2.redhat.com [10.3.238.47]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o3KN2WET017397 for ; Tue, 20 Apr 2010 19:02:33 -0400 Message-ID: <4BCE328D.4070001@redhat.com> Date: Tue, 20 Apr 2010 17:02:37 -0600 From: Eric Blake Organization: Red Hat User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100330 Fedora/3.0.4-1.fc12 Lightning/1.0b1 Thunderbird/3.0.4 MIME-Version: 1.0 To: control@debbugs.gnu.org Subject: merge X-Enigmail-Version: 1.0.1 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigF99F11687E30055D28B607C6" X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 X-Spam-Score: -10.2 (----------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -10.3 (----------) This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigF99F11687E30055D28B607C6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable forcemerge 5958 5991 --=20 Eric Blake eblake@redhat.com +1-801-349-2682 Libvirt virtualization library http://libvirt.org --------------enigF99F11687E30055D28B607C6 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Public key at http://people.redhat.com/eblake/eblake.gpg Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/ iQEcBAEBCAAGBQJLzjKNAAoJEKeha0olJ0NqQ4wH+gM1mgMBjHxGE0zGMndVn8pF i+4B/2ruI4ODnZmb+WIGdcXI7uT9JqAweWdi1YflHC8ROlLWrm4kztcMHrskTxyC /UypNdQl07pNQYwQHUUkGAuOd0DUV7tUzvrZ5cGz0Qa7Nz3JlyRGma8FBdHZI0Wj EWNfaZ0ex9O4cWJa4aWPQSwNwVDwsbaIAEV/FWgpOkNFPWcyba72JLGPjdieaeY5 MeCYrRLglkLrtXJwrZwd4metPfCYM2WACfKEkFT+7ggDHwADcLY8gKpEDazlO1Ea ezEzR/fAmZwNeEb5wBd0fyM7IOSAkh9hvXNrMXZ4SY6v+gJ0El0eYDXJGF4a6LQ= =SN+K -----END PGP SIGNATURE----- --------------enigF99F11687E30055D28B607C6-- From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 21 04:37:24 2010 Received: (at 5991) by debbugs.gnu.org; 21 Apr 2010 08:37:24 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4VQy-00082b-DD for submit@debbugs.gnu.org; Wed, 21 Apr 2010 04:37:24 -0400 Received: from mail1.slb.deg.dub.stisp.net ([84.203.253.98]) by debbugs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1O4VQw-00082W-II for 5991@debbugs.gnu.org; Wed, 21 Apr 2010 04:37:23 -0400 Received: (qmail 3820 invoked from network); 21 Apr 2010 08:37:18 -0000 Received: from unknown (HELO ?192.168.2.25?) (84.203.137.218) by mail1.slb.deg.dub.stisp.net with SMTP; 21 Apr 2010 08:37:18 -0000 Message-ID: <4BCEB8FB.9060702@draigBrady.com> Date: Wed, 21 Apr 2010 09:36:11 +0100 From: =?ISO-8859-1?Q?P=E1draig_Brady?= User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.8) Gecko/20100227 Thunderbird/3.0.3 MIME-Version: 1.0 To: Eric Blake Subject: Re: bug#5991: [bug#5958 PATCH] docs: document translation of obsolete sort syntax References: <4BCE2664.7060101@draigBrady.com> <1271802796-7437-1-git-send-email-eblake@redhat.com> In-Reply-To: <1271802796-7437-1-git-send-email-eblake@redhat.com> X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: 5991 Cc: 5991@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.0 (---) On 20/04/10 23:33, Eric Blake wrote: > * doc/coreutils.texi (sort invocation): Mention the conversion. > --- > > How about this followup, copying the comment from Pádraig's patch into > our documentation? > > doc/coreutils.texi | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/doc/coreutils.texi b/doc/coreutils.texi > index 7561f2a..ed620f3 100644 > --- a/doc/coreutils.texi > +++ b/doc/coreutils.texi > @@ -4126,6 +4126,11 @@ sort invocation > @vindex POSIXLY_CORRECT > On older systems, @command{sort} supports an obsolete origin-zero > syntax @samp{+@var{pos1} [-@var{pos2}]} for specifying sort keys. > +The sequence @samp{sort +@var{a}.@var{x} -@var{b}.@var{y}} > +translates to @samp{sort -k@var{a+1}.@var{x+1},@var{b}} if @var{y} > +is @samp{0} or absent, otherwise it translates to @samp{sort > +-k@var{a+1}.@var{x+1},@var{b+1}.@var{y}}. Looks good. Hopefully this will encourage people to change from the old to new format. Perhaps s/translates/is equivalent/; s/-k/-k /; cheers, Pádraig. From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 21 05:19:54 2010 Received: (at 5991) by debbugs.gnu.org; 21 Apr 2010 09:19:55 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4W66-0008Kg-CW for submit@debbugs.gnu.org; Wed, 21 Apr 2010 05:19:54 -0400 Received: from smtp1-g21.free.fr ([212.27.42.1]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4W63-0008KZ-Qt for 5991@debbugs.gnu.org; Wed, 21 Apr 2010 05:19:52 -0400 Received: from smtp1-g21.free.fr (localhost [127.0.0.1]) by smtp1-g21.free.fr (Postfix) with ESMTP id 51ECD940071 for <5991@debbugs.gnu.org>; Wed, 21 Apr 2010 11:19:45 +0200 (CEST) Received: from mx.meyering.net (mx.meyering.net [82.230.74.64]) by smtp1-g21.free.fr (Postfix) with ESMTP id 7350294016F for <5991@debbugs.gnu.org>; Wed, 21 Apr 2010 11:19:43 +0200 (CEST) Received: by rho.meyering.net (Acme Bit-Twister, from userid 1000) id 51431E32A; Wed, 21 Apr 2010 11:19:43 +0200 (CEST) From: Jim Meyering To: =?utf-8?Q?P=C3=A1draig?= Brady Subject: Re: bug#5991: [bug#5958 PATCH] docs: document translation of obsolete sort syntax In-Reply-To: <4BCEB8FB.9060702@draigBrady.com> (=?utf-8?Q?=22P=C3=A1draig?= Brady"'s message of "Wed, 21 Apr 2010 09:36:11 +0100") References: <4BCE2664.7060101@draigBrady.com> <1271802796-7437-1-git-send-email-eblake@redhat.com> <4BCEB8FB.9060702@draigBrady.com> Date: Wed, 21 Apr 2010 11:19:43 +0200 Message-ID: <87zl0xb1sg.fsf@meyering.net> Lines: 22 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -3.1 (---) X-Debbugs-Envelope-To: 5991 Cc: Eric Blake , 5991@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.1 (---) P=C3=A1draig Brady wrote: > On 20/04/10 23:33, Eric Blake wrote: >> * doc/coreutils.texi (sort invocation): Mention the conversion. >> How about this followup, copying the comment from P=C3=83=C2=A1draig's p= atch into >> our documentation? Thanks. >> diff --git a/doc/coreutils.texi b/doc/coreutils.texi ... >> +The sequence @samp{sort +@var{a}.@var{x} -@var{b}.@var{y}} >> +translates to @samp{sort -k@var{a+1}.@var{x+1},@var{b}} if @var{y} >> +is @samp{0} or absent, otherwise it translates to @samp{sort >> +-k@var{a+1}.@var{x+1},@var{b+1}.@var{y}}. > > Looks good. > Hopefully this will encourage people to change from the old to new format. > Perhaps s/translates/is equivalent/; s/-k/-k /; Another suggestion, to make it clearer why you'll want to convert: s/The/The obsolete/ From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 21 10:00:25 2010 Received: (at 5991) by debbugs.gnu.org; 21 Apr 2010 14:00:26 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4aTY-0002bX-KQ for submit@debbugs.gnu.org; Wed, 21 Apr 2010 10:00:24 -0400 Received: from mx1.redhat.com ([209.132.183.28]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4aTW-0002bN-U9 for 5991@debbugs.gnu.org; Wed, 21 Apr 2010 10:00:24 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o3LE0GwF027775 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 21 Apr 2010 10:00:16 -0400 Received: from [10.3.238.47] (vpn-238-47.phx2.redhat.com [10.3.238.47]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o3LE0ENT007499; Wed, 21 Apr 2010 10:00:15 -0400 Message-ID: <4BCF04EC.6020508@redhat.com> Date: Wed, 21 Apr 2010 08:00:12 -0600 From: Eric Blake Organization: Red Hat User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100330 Fedora/3.0.4-1.fc12 Lightning/1.0b1 Thunderbird/3.0.4 MIME-Version: 1.0 To: Jim Meyering Subject: Re: bug#5991: [bug#5958 PATCH] docs: document translation of obsolete sort syntax References: <4BCE2664.7060101@draigBrady.com> <1271802796-7437-1-git-send-email-eblake@redhat.com> <4BCEB8FB.9060702@draigBrady.com> <87zl0xb1sg.fsf@meyering.net> In-Reply-To: <87zl0xb1sg.fsf@meyering.net> X-Enigmail-Version: 1.0.1 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig1CE1A989DF98A468D2202F06" X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 X-Spam-Score: -10.3 (----------) X-Debbugs-Envelope-To: 5991 Cc: =?UTF-8?B?UMOhZHJhaWcgQnJhZHk=?= , 5991@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -10.3 (----------) This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig1CE1A989DF98A468D2202F06 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 04/21/2010 03:19 AM, Jim Meyering wrote: >> Looks good. >> Hopefully this will encourage people to change from the old to new for= mat. >> Perhaps s/translates/is equivalent/; s/-k/-k /; >=20 > Another suggestion, to make it clearer why you'll want to convert: >=20 > s/The/The obsolete/ Pushed, with those tweaks. --=20 Eric Blake eblake@redhat.com +1-801-349-2682 Libvirt virtualization library http://libvirt.org --------------enig1CE1A989DF98A468D2202F06 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Public key at http://people.redhat.com/eblake/eblake.gpg Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/ iQEcBAEBCAAGBQJLzwTyAAoJEKeha0olJ0Nq0nYIAKpQCa0MOpwepsOhgq3zp0OU dukwKFp0QU4gcSdmsrJQNcyLaHc6Xv3HikJPRwIyS0rcwA3kqnITtHitLh0g550T 2muDvfLkR8mI/2Hf4bL4XJkYnMQI7ErBQVs7s1NVL7DSy6fPza5N5C9idKRIBIvY SCXaFJyD6pQz5TPM/5WUFFvp702m9kmFgOeODILfkt3DQAF/jikEQSlzvlyNdU/d ecQrOlAfRI8E3YtVQAZQvHad3WgL4y4Z7JLDNo8RV4SptNQdtAKXiNuSXh+0RQLA 2LoEwIwcw5+eoFlMGLyRey9b4I6mFCzzBzvuWDr2yMVY+7gAaueOBl6FyD4y/RA= =3gne -----END PGP SIGNATURE----- --------------enig1CE1A989DF98A468D2202F06-- From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 21 11:02:23 2010 Received: (at control) by debbugs.gnu.org; 21 Apr 2010 15:02:24 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4bRX-00033O-Mp for submit@debbugs.gnu.org; Wed, 21 Apr 2010 11:02:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O4bRW-00033J-4T for control@debbugs.gnu.org; Wed, 21 Apr 2010 11:02:23 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o3LF2GoP015719 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 21 Apr 2010 11:02:16 -0400 Received: from [10.3.238.47] (vpn-238-47.phx2.redhat.com [10.3.238.47]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o3LF2FJY027780 for ; Wed, 21 Apr 2010 11:02:16 -0400 Message-ID: <4BCF137B.5050701@redhat.com> Date: Wed, 21 Apr 2010 09:02:19 -0600 From: Eric Blake Organization: Red Hat User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100330 Fedora/3.0.4-1.fc12 Lightning/1.0b1 Thunderbird/3.0.4 MIME-Version: 1.0 To: control@debbugs.gnu.org Subject: closeout X-Enigmail-Version: 1.0.1 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig1C395245D3CC5F0A88DCE514" X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 X-Spam-Score: -10.3 (----------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -10.3 (----------) This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig1C395245D3CC5F0A88DCE514 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable close 5991 8.5 close 5958 8.5 thanks --=20 Eric Blake eblake@redhat.com +1-801-349-2682 Libvirt virtualization library http://libvirt.org --------------enig1C395245D3CC5F0A88DCE514 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Public key at http://people.redhat.com/eblake/eblake.gpg Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/ iQEcBAEBCAAGBQJLzxN7AAoJEKeha0olJ0NqS/sIAIZbOyQjR03LLviYdLRPMFDF m4P3tanrDkpf69JzCz39JpCd2H7iXge5D2+9ZCfC1m9EiHB4dHNfsaIWFuwDGeJD uQsc2mIl2eHDkB443we5zu93XiakyazbfYTJcyn6r5NDwqjWlqiWc8tSN7VkTUDV QZmPd8As+UoTG/plEf7zT67AFBXUKTQKoIJIlIJMcthOg0O3LjMXjNqpq09iSKUX HKewR/KdcLh1H8uwAOVIb+EbOIeigcSdbjfDyY6iSfwS1JrkUNCioHuXV/YLagS8 SNEdFwntrwAhZ81JRe+S+dAeCFsgHdIE3vYVPXWPruurL0TjX6j3xERmMcfQT0g= =Em81 -----END PGP SIGNATURE----- --------------enig1C395245D3CC5F0A88DCE514-- From unknown Sun Jun 22 03:47:12 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 22 May 2010 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator