From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1frrEV-0007ab-86 for guix-patches@gnu.org; Mon, 20 Aug 2018 16:57:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1frrEU-0000VH-DF for guix-patches@gnu.org; Mon, 20 Aug 2018 16:57:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50937) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1frrEU-0000V4-73 for guix-patches@gnu.org; Mon, 20 Aug 2018 16:57:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1frrEU-0003Qi-5T for guix-patches@gnu.org; Mon, 20 Aug 2018 16:57:02 -0400 Subject: [bug#32428] [PATCH] gnu: mit-scheme: Use minimal texlive-union. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180813160643.15076-1-ambrevar@gmail.com> Date: Mon, 20 Aug 2018 22:55:54 +0200 In-Reply-To: <20180813160643.15076-1-ambrevar@gmail.com> (Pierre Neidhardt's message of "Mon, 13 Aug 2018 18:06:43 +0200") Message-ID: <87zhxgahb9.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: Pierre Neidhardt Cc: 32428@debbugs.gnu.org Hello Pierre! Pierre Neidhardt skribis: > * gnu/packages/scheme.scm (mit-scheme)[native-inputs]: Replace texlive wi= th texlive-union. > --- > gnu/packages/scheme.scm | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm > index b30245cce..ef94aedad 100644 > --- a/gnu/packages/scheme.scm > +++ b/gnu/packages/scheme.scm > @@ -104,6 +104,10 @@ > (find-files "src/compiler" "^make\\."))) > (chdir "src") > #t)) > + ;; FIXME: the texlive-union insists on regenerating fonts. It = stores > + ;; them in HOME, so it needs to be writeable. > + (add-before 'build 'set-HOME > + (lambda _ (setenv "HOME" "/tmp") #t)) Is this a bug in =E2=80=98texlive-union=E2=80=99? Does it take time and sp= ace to regenerate the fonts? Otherwise the change LGTM, for =E2=80=98emacs-ess=E2=80=99 & co. as well, a= s long as we don=E2=80=99t duplicate the $HOME trick dozens of times. Thanks! Ludo=E2=80=99.