From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 08 20:15:45 2021 Received: (at submit) by debbugs.gnu.org; 9 Feb 2021 01:15:45 +0000 Received: from localhost ([127.0.0.1]:52214 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l9Hd3-0007yv-BW for submit@debbugs.gnu.org; Mon, 08 Feb 2021 20:15:45 -0500 Received: from lists.gnu.org ([209.51.188.17]:58718) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l9Hd0-0007yn-JD for submit@debbugs.gnu.org; Mon, 08 Feb 2021 20:15:44 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:41900) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l9Hd0-0007Vw-EI for guix-patches@gnu.org; Mon, 08 Feb 2021 20:15:42 -0500 Received: from box.euandre.org ([46.101.160.115]:56983) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1l9Hct-0004PS-1s for guix-patches@gnu.org; Mon, 08 Feb 2021 20:15:42 -0500 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 32794FC3D9; Mon, 8 Feb 2021 22:14:56 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1612833298; bh=mdi1lEXHne/oQNf3cvLRDXK9mAce+0MmDA/JDy5w738=; h=From:To:Cc:Subject:Date:From; b=VyVcAHO/HFxG6LcxtvoMW0Ec1f1kiOg7rO3UW0r9AIhh57VH0j5Fk0s6LStXP3dN8 79lwBqkTtDqIzaz3UohHI2vwXmjPuO5VjYc1g+Xy3aylTBdNB6c22zus0cQJpbM7Du CXAD3EwYIvdHUBk+auyM4yL0gryicvBBEuT1c8zOxL2oifoG9btbUKTGlj6gzmeAiK o0o+MkiF0apRdjCKZNu1kAvGbgnEyOEDqjClIu4bR+Arcd9EiuBrLgLm3sVY1IZ58y xiRca13D6rtDLmIChqsT/IrVDIyDuPzaXAd0lVuV17sBlCuEzTksJCLmz6t4MBajFW O+sCEe9VoMemQ== From: EuAndreh To: guix-patches@gnu.org Subject: [PATCH] gnu: Add nixfmt. Date: Mon, 8 Feb 2021 22:14:52 -0300 Message-Id: <20210209011452.6841-1-eu@euandre.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.euandre.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: EuAndreh X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/haskell-xyz.scm (nixfmt): New variable. --- A quick note: the Hackage importer worked suprisingly well. It was even able to properly define the synopsis and description fields! gnu/packages/haskell-xyz.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index d6c50ade71..aff3303cb3 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -28,6 +28,7 @@ ;;; Copyright © 2020 Alexandru-Sergiu Marton ;;; Copyright © 2020 Carlo Holl ;;; Copyright © 2020 Christopher Lemmer Webber +;;; Copyright © 2021 EuAndreh ;;; ;;; This file is part of GNU Guix. ;;; @@ -8693,6 +8694,36 @@ making this package a full replacement for the original newtype package, and an alternative to newtype-th.") (license license:bsd-3))) +(define-public nixfmt + (package + (name "nixfmt") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/nixfmt/nixfmt-" + version + ".tar.gz")) + (sha256 + (base32 + "1ispgl8rc2scr6v8bb6sks7px856jf61x74zj2iyddrn5qamkb3n")))) + (build-system haskell-build-system) + (inputs + `(("ghc-megaparsec" ,ghc-megaparsec) + ("ghc-parser-combinators" ,ghc-parser-combinators) + ("ghc-cmdargs" ,ghc-cmdargs) + ("ghc-safe-exceptions" ,ghc-safe-exceptions))) + (arguments + `(#:cabal-revision + ("1" "1hsj0jh6siph3afd9c2wii09sffl48rzqv653n4clpd8qy0rn48d"))) + (home-page "https://github.com/serokell/nixfmt") + (synopsis "An opinionated formatter for Nix") + (description + "A formatter for Nix that ensures consistent and clear formatting +by forgetting all existing formatting during parsing.") + (license license:mpl2.0))) + (define-public ghc-non-negative (package (name "ghc-non-negative") -- 2.30.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 20 19:50:43 2021 Received: (at submit) by debbugs.gnu.org; 21 Feb 2021 00:50:43 +0000 Received: from localhost ([127.0.0.1]:53251 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDcxO-0003EJ-OG for submit@debbugs.gnu.org; Sat, 20 Feb 2021 19:50:42 -0500 Received: from lists.gnu.org ([209.51.188.17]:57420) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDcxN-0003E5-1h for submit@debbugs.gnu.org; Sat, 20 Feb 2021 19:50:41 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:36148) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDcxM-0001z8-Pc for guix-patches@gnu.org; Sat, 20 Feb 2021 19:50:40 -0500 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:34291) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDcxJ-0002Qk-1Q for guix-patches@gnu.org; Sat, 20 Feb 2021 19:50:40 -0500 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 5D3761C0002; Sun, 21 Feb 2021 00:50:32 +0000 (UTC) From: Nicolas Goaziou To: EuAndreh via Guix-patches via Subject: Re: [bug#46392] [PATCH] gnu: Add nixfmt. References: <20210209011452.6841-1-eu@euandre.org> Date: Sun, 21 Feb 2021 01:50:31 +0100 In-Reply-To: <20210209011452.6841-1-eu@euandre.org> (EuAndreh via Guix-patches via's message of "Mon, 8 Feb 2021 22:14:52 -0300") Message-ID: <87a6ryxmzs.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=217.70.183.197; envelope-from=mail@nicolasgoaziou.fr; helo=relay5-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: 46392-done@debbugs.gnu.org, EuAndreh X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) Hello, EuAndreh via Guix-patches via writes: > * gnu/packages/haskell-xyz.scm (nixfmt): New variable. I renamed it ghc-nixfmt and pushed. Thank you. Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 20 22:34:48 2021 Received: (at submit) by debbugs.gnu.org; 21 Feb 2021 03:34:48 +0000 Received: from localhost ([127.0.0.1]:53327 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDfW8-00077l-DF for submit@debbugs.gnu.org; Sat, 20 Feb 2021 22:34:48 -0500 Received: from lists.gnu.org ([209.51.188.17]:39984) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDfW3-00077b-Ur for submit@debbugs.gnu.org; Sat, 20 Feb 2021 22:34:43 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:58196) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDfW3-0000Mg-Np for guix-patches@gnu.org; Sat, 20 Feb 2021 22:34:39 -0500 Received: from box.euandre.org ([46.101.160.115]:36221) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1lDfVz-0000Sx-Bp for guix-patches@gnu.org; Sat, 20 Feb 2021 22:34:39 -0500 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 70D83FC054; Sun, 21 Feb 2021 00:33:58 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1613878440; bh=vVnr7Tw4DWvXWl/Ff7q8J2pC3UfXCmDlgZr2/aantQE=; h=From:To:Cc:Cc:Subject:In-Reply-To:References:Date:From; b=KZwDAhlRgz8caiTx0Ia7zzRDStuvHaTO04fcWobET360D4Zbt4rRAJS9XKqnUhFpd AkZzin5J8pIghBwiNmPkhZT91RT2o3M3ANSWBHJMdxGsTvI8t/05uqKD/Y8IkNcX7A t1KneXUkjGwAYigOPJJrLIzWpQRNGJokKiU3Ty+bRLOeFonkY+ytFGf7q0bhrqboh+ Tot/0/75wvwN6piyHdXoX+D/hLtZTdSCAwY5IsdhE0Fa8xRT03R58e9tlJLETI31QD Avp4hQolk1lQER+iDSvLxSqi1jB/5To+TGpoEoo4hIweXp4jfCUri+e4jBzXpBIeSA dkImV54ot4Cfw== From: EuAndreh To: Nicolas Goaziou , EuAndreh via Guix-patches via Subject: Re: [bug#46392] [PATCH] gnu: Add nixfmt. In-Reply-To: <87a6ryxmzs.fsf@nicolasgoaziou.fr> References: <20210209011452.6841-1-eu@euandre.org> <87a6ryxmzs.fsf@nicolasgoaziou.fr> Date: Sun, 21 Feb 2021 00:33:52 -0300 Message-ID: <87zgzyw0v3.fsf@euandre.org> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.euandre.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: , 46392-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Nicolas Goaziou writes: > I renamed it ghc-nixfmt and pushed. Thank you. Thanks. Quick question: why rename it to ghc-nixfmt? I chose to not add the "ghc-" prefix because this wasn't primarily a library available for the Haskell ecosystem, but a standalone program that happens to be written in Haskell. Could you give me some tip on the naming covention on this case? I'm just wondering so that I can pick better names next time. From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 21 04:32:07 2021 Received: (at submit) by debbugs.gnu.org; 21 Feb 2021 09:32:07 +0000 Received: from localhost ([127.0.0.1]:53517 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDl5y-0001Js-Sj for submit@debbugs.gnu.org; Sun, 21 Feb 2021 04:32:07 -0500 Received: from lists.gnu.org ([209.51.188.17]:33106) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDl5x-0001Jf-CM for submit@debbugs.gnu.org; Sun, 21 Feb 2021 04:32:05 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:40812) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDl5w-0004Wm-FA for guix-patches@gnu.org; Sun, 21 Feb 2021 04:32:04 -0500 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:65533) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDl5u-0006xu-H9 for guix-patches@gnu.org; Sun, 21 Feb 2021 04:32:04 -0500 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id CCC0D240002; Sun, 21 Feb 2021 09:31:58 +0000 (UTC) From: Nicolas Goaziou To: EuAndreh Subject: Re: [bug#46392] [PATCH] gnu: Add nixfmt. References: <20210209011452.6841-1-eu@euandre.org> <87a6ryxmzs.fsf@nicolasgoaziou.fr> <87zgzyw0v3.fsf@euandre.org> Date: Sun, 21 Feb 2021 10:31:56 +0100 In-Reply-To: <87zgzyw0v3.fsf@euandre.org> (EuAndreh's message of "Sun, 21 Feb 2021 00:33:52 -0300") Message-ID: <87k0r1wyur.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=217.70.183.193; envelope-from=mail@nicolasgoaziou.fr; helo=relay1-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: 46392-done@debbugs.gnu.org, EuAndreh via Guix-patches via X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) Hello, EuAndreh writes: > Quick question: why rename it to ghc-nixfmt? > > I chose to not add the "ghc-" prefix because this wasn't primarily a > library available for the Haskell ecosystem, but a standalone program > that happens to be written in Haskell. Could you give me some tip on > the naming covention on this case? Good question. I prefixed it with "ghc-" because you put it in haskell-xyz.scm, where the prefix is usual. If this is a standalone program, it could go in haskell-apps.scm, with its prefix removed. I don't think that warrants a deprecation warning since the package is very young. WDYT? Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 21 16:06:13 2021 Received: (at submit) by debbugs.gnu.org; 21 Feb 2021 21:06:14 +0000 Received: from localhost ([127.0.0.1]:55058 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDvvh-0000N6-MT for submit@debbugs.gnu.org; Sun, 21 Feb 2021 16:06:13 -0500 Received: from lists.gnu.org ([209.51.188.17]:36936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDvva-0000Mg-BK for submit@debbugs.gnu.org; Sun, 21 Feb 2021 16:06:08 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:48220) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDvva-0003jV-5G for guix-patches@gnu.org; Sun, 21 Feb 2021 16:06:06 -0500 Received: from box.euandre.org ([46.101.160.115]:45009) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1lDvvW-0002Zn-4t for guix-patches@gnu.org; Sun, 21 Feb 2021 16:06:05 -0500 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 82D6EFC3CE; Sun, 21 Feb 2021 18:05:55 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1613941558; bh=DmWI0/rkEDP86Vp7NeLsJ/6nD//elgCN65XMYPzUDKM=; h=From:To:Cc:Cc:Subject:In-Reply-To:References:Date:From; b=zb5ILJVThsyrrjgzQlbrv91h3Ga+/Pwi/U6nek7ulwVhACA/ATCSJyNpfHNY9ALkX gIB/YEGWDzzb0MLaKwkBqYE7VdhMvaJGhd0lSflGdTTK69itzow9rVPR++HE9tEyLP BE3J+f5PC4xcz/qf5jGLRblaD5BXW5d3bz1ikEyjUgXtDgsLuj7ekTKjVAal/HGClB wj/kovxhQkASyV5hK8cQTGJBRrPjOIypp7/RvRDMFymqnclDn7roNT7WKil65SjFSz wMK2eaVGJAzagOpARzrM9oykD85jVGfRm9+pYULSs2fh8qvCkAACDZ8EBaUPMzZ74D WlGAl+5tHHkZQ== From: EuAndreh To: Nicolas Goaziou Subject: Re: [bug#46392] [PATCH] gnu: Add nixfmt. In-Reply-To: <87k0r1wyur.fsf@nicolasgoaziou.fr> References: <20210209011452.6841-1-eu@euandre.org> <87a6ryxmzs.fsf@nicolasgoaziou.fr> <87zgzyw0v3.fsf@euandre.org> <87k0r1wyur.fsf@nicolasgoaziou.fr> Date: Sun, 21 Feb 2021 18:05:48 -0300 Message-ID: <87v9alw2qb.fsf@euandre.org> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.euandre.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: , 46392-done@debbugs.gnu.org, EuAndreh via Guix-patches via X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) > WDYT? Agreed. Should I send a patch or you'll do the change? From unknown Tue Jun 17 22:17:01 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 22 Mar 2021 11:24:07 +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