From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48735) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dxUBt-0000kf-LM for guix-patches@gnu.org; Thu, 28 Sep 2017 04:29:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dxUBq-0005Et-H4 for guix-patches@gnu.org; Thu, 28 Sep 2017 04:29:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55450) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dxUBq-0005Ei-DO for guix-patches@gnu.org; Thu, 28 Sep 2017 04:29:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dxUBq-0004xo-78 for guix-patches@gnu.org; Thu, 28 Sep 2017 04:29:02 -0400 Subject: [bug#28487] [PATCH] cuirass: Add gnu-system build spec. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170917201157.9802-1-janneke@gnu.org> <20170917201157.9802-5-janneke@gnu.org> <87zi9h27q3.fsf@gnu.org> <87mv5hqr73.fsf@gnu.org> <87a81hgq5g.fsf@gnu.org> <87a81gq8dg.fsf@gnu.org> <87efqsexi4.fsf@gnu.org> <8760c3rifz.fsf@gnu.org> Date: Thu, 28 Sep 2017 10:27:58 +0200 In-Reply-To: <8760c3rifz.fsf@gnu.org> (Jan Nieuwenhuizen's message of "Wed, 27 Sep 2017 22:32:32 +0200") Message-ID: <87r2urz0q9.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: Jan Nieuwenhuizen Cc: Ricardo Wurmus , 28487@debbugs.gnu.org Jan Nieuwenhuizen skribis: > As an aside: Interesting, I've been using GOOPS a lot with match and we h= ave > standardised on only matching class/record type, like so > > (match o > (($ ) ...) I would make it: (match o ((? license?) ...)) > so I was wondering why you didn't export . Now it makes sense: > you simply cannot use record destructors if you don't export <..> in the > first place. For GOOPS that's a bit different, you don't have class? > for each . Yes. I think the =E2=80=9Cspirit of GOOPS=E2=80=9D is that class objects a= re public. Ludo=E2=80=99.