From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38807) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBMvf-0002HF-01 for guix-patches@gnu.org; Mon, 09 Mar 2020 14:15:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jBMve-0007os-07 for guix-patches@gnu.org; Mon, 09 Mar 2020 14:15:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45470) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jBMvd-0007ol-Sp for guix-patches@gnu.org; Mon, 09 Mar 2020 14:15:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jBMvd-0004Hq-KT for guix-patches@gnu.org; Mon, 09 Mar 2020 14:15:01 -0400 Subject: [bug#39258] [PATCH v2 1/3] build-self: Add guile-xapian to Guix dependencies. Resent-Message-ID: MIME-Version: 1.0 References: <20200307133116.11443-1-arunisaac@systemreboot.net> <20200307133116.11443-2-arunisaac@systemreboot.net> In-Reply-To: <20200307133116.11443-2-arunisaac@systemreboot.net> From: zimoun Date: Mon, 9 Mar 2020 19:14:13 +0100 Message-ID: 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: Arun Isaac Cc: Ludovic =?UTF-8?Q?Court=C3=A8s?= , Pierre Neidhardt , 39258@debbugs.gnu.org On Sat, 7 Mar 2020 at 14:31, Arun Isaac wrote: > diff --git a/build-aux/build-self.scm b/build-aux/build-self.scm > index f2e785b7f1..05d0353ccf 100644 > --- a/build-aux/build-self.scm > +++ b/build-aux/build-self.scm > @@ -1,5 +1,6 @@ > ;;; GNU Guix --- Functional package management for GNU > ;;; Copyright =C2=A9 2014, 2016, 2017, 2018, 2019, 2020 Ludovic Court=C3= =A8s > +;;; Copyright =C2=A9 2020 Arun Isaac > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -261,6 +262,10 @@ interface (FFI) of Guile.") > #~(define-module (gcrypt hash) > #:export (sha1 sha256)))) > > + (define fake-xapian-hash > + ;; Fake (xapian xapian) module; see below. > + (scheme-file "xapian.scm" #~(define-module (xapian xapian)))) > + Why 'fake-xapian-hash' and not simply 'fake-xapian'?