From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46488) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9zbd-0005ak-VW for guix-patches@gnu.org; Sun, 14 May 2017 15:55:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d9zba-0002Md-2O for guix-patches@gnu.org; Sun, 14 May 2017 15:55:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42438) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d9zbZ-0002M9-V3 for guix-patches@gnu.org; Sun, 14 May 2017 15:55:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d9zbZ-0001BM-Mi for guix-patches@gnu.org; Sun, 14 May 2017 15:55:01 -0400 Subject: bug#26339: [PATCH v4 2/7] bootloader: Adapt vm to new bootloader API. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170514074803.25556-1-m.othacehe@gmail.com> <20170514074803.25556-3-m.othacehe@gmail.com> <87d1bbwos0.fsf@gnu.org> <20170514165927.2708bd7a@scratchpost.org> Date: Sun, 14 May 2017 21:53:47 +0200 In-Reply-To: <20170514165927.2708bd7a@scratchpost.org> (Danny Milosavljevic's message of "Sun, 14 May 2017 16:59:27 +0200") Message-ID: <87pofbtdtg.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Danny Milosavljevic Cc: 26339@debbugs.gnu.org Danny Milosavljevic skribis: > On Sun, 14 May 2017 15:28:47 +0200 > ludo@gnu.org (Ludovic Court=C3=A8s) wrote: > >> I suggest avoiding dots in identifiers (RnRS Scheme does not allow it >> because it can conflict with the dot notation for pairs.) Use a hyphen >> instead. > > ... oops. My fault for suggesting it. I didn't have practical problems = with dots before and some parts in Guix already use the dot > (latest-kernel.org-release, package definitions and the previous bootload= er that's in master for a long time). Right, dots in identifiers are valid in Guile, I even use them for packages, but somehow I mentally have double-standards between (gnu packages =E2=80=A6) modules and the rest. :-) > But good to know. I shall use no dots in identifiers in the future. Any= preference of how to name derivations? Often it=E2=80=99s enough to name them by what the correspond to (say =E2= =80=9Cprofile=E2=80=9D, =E2=80=9Cconfig-file=E2=80=9D, etc.). In other cases, I usually use things= like =E2=80=9Cos-drv=E2=80=9D or =E2=80=9Cdrv=E2=80=9D. Ludo=E2=80=99.