From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40512) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fSp6H-000580-Qf for guix-patches@gnu.org; Tue, 12 Jun 2018 15:37:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fSp6E-0006md-JE for guix-patches@gnu.org; Tue, 12 Jun 2018 15:37:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37460) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fSp6E-0006mX-Ez for guix-patches@gnu.org; Tue, 12 Jun 2018 15:37:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fSp6E-0000QD-4U for guix-patches@gnu.org; Tue, 12 Jun 2018 15:37:02 -0400 Subject: [bug#31774] [PATCH 12/22] gnu: Add maven-core. Resent-Message-ID: Date: Tue, 12 Jun 2018 21:36:14 +0200 From: Julien Lepiller Message-ID: <20180612213609.68734b19@lepiller.eu> In-Reply-To: <20180611204316.36ec4f20@scratchpost.org> References: <20180610130104.2b154715@lepiller.eu> <20180610110319.24043-1-julien@lepiller.eu> <20180610110319.24043-12-julien@lepiller.eu> <20180610191643.15f8a63e@scratchpost.org> <20180610204631.62f0ea79@lepiller.eu> <20180611204316.36ec4f20@scratchpost.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: 31774@debbugs.gnu.org Le Mon, 11 Jun 2018 20:43:16 +0200, Danny Milosavljevic a =C3=A9crit : > Hi Julien, >=20 > yeah, looks much safer this way IMO. >=20 > > So I tried to use that, and here is an updated patch. I had troubles > > using match (it tried to evaluate the content of the list I wanted > > to match with, although that doesn't happen at the REPL), so I used > > a sequence of cdr/car instead. Thanks for the hint :) =20 >=20 > Hmm, could you post what you tried? I tried something like this: (match sxlm ((list (component-set (components x) ...)) x)) And I got an exception like component-set: unbound variable. On the REPL, the command works perfectly.