From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50337) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1HcJ-0002IO-LM for guix-patches@gnu.org; Sun, 08 Oct 2017 15:52:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1HcI-0002UR-Sl for guix-patches@gnu.org; Sun, 08 Oct 2017 15:52:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48020) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e1HcI-0002U1-QD for guix-patches@gnu.org; Sun, 08 Oct 2017 15:52:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e1HcI-0004lD-Jy for guix-patches@gnu.org; Sun, 08 Oct 2017 15:52:02 -0400 Subject: bug#28744: guile-colorized Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20171008103637.6vwpp5s75ixvbemz@abyayala> Date: Sun, 08 Oct 2017 21:51:08 +0200 In-Reply-To: <20171008103637.6vwpp5s75ixvbemz@abyayala> (ng0@infotropique.org's message of "Sun, 8 Oct 2017 10:36:37 +0000") Message-ID: <87po9xbeqb.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: ng0 Cc: 28744-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi! ng0 skribis: > Colors for your REPL. > > In the light of recent github mismatches: > should this use the git checkout instead? I think it=E2=80=99s (still) fine this way. > From d5160f7e3ca160dd6ee9336770fdf2d6dc7b279f Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Sun, 8 Oct 2017 10:30:39 +0000 > Subject: [PATCH] gnu: Add guile-colorized. > > * gnu/packages/guile.scm (guile-colorized): New variable. Pushed with the slight simplification below. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index caecd2b6b..e32ca84a7 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -1995,12 +1995,9 @@ It has a nice, simple s-expression based syntax.") (guild (string-append (assoc-ref inputs "guile") "/bin/guild"))) ;; The original 'make install' is too primitive. - (mkdir-p module-dir) - (mkdir-p language-dir) ;; copy the source - (copy-file "ice-9/colorized.scm" - (string-append language-dir "/colorized.scm")) + (install-file "ice-9/colorized.scm" language-dir) ;; compile to the destination (compile-file "ice-9/colorized.scm" --=-=-=--