From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] distro: Add GNU Wget. Date: Sun, 25 Nov 2012 22:39:44 +0100 Message-ID: <877gp92wgv.fsf@gnu.org> References: <8738zx7mhy.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47959) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tcjvf-00027d-Ti for bug-guix@gnu.org; Sun, 25 Nov 2012 16:39:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tcjve-0006Pp-Ec for bug-guix@gnu.org; Sun, 25 Nov 2012 16:39:55 -0500 Received: from [2a01:e0b:1:123:ca0a:a9ff:fe03:271e] (port=44165 helo=xanadu.aquilenet.fr) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tcjve-0006OY-97 for bug-guix@gnu.org; Sun, 25 Nov 2012 16:39:54 -0500 In-Reply-To: (Nikita Karetnikov's message of "Sun, 25 Nov 2012 21:56:37 +0300") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Nikita Karetnikov Cc: bug-guix@gnu.org Hi, Nikita Karetnikov skribis: >> To silence the warning, perhaps we could rename =E2=80=98gettext=E2=80= =99 to >> =E2=80=98gnu-gettext=E2=80=99, as I did for GNU Make. WDYT? > > Are there any downsides? (I can create a patch.) Well, the name is slightly less intuitive. Alternatively, we can keep that name, and use something like: (define-module (distro packages nano) #:use-module ((distro packages gettext) #:renamer (symbol-prefix-proc 'guix:)) #:use-module (distro packages ncurses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) The effect is that the package will be known as =E2=80=98guix:gettext=E2=80= =99 within this module. Thanks, Ludo=E2=80=99.