From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34250) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iX0B1-0006M9-UX for guix-patches@gnu.org; Tue, 19 Nov 2019 04:52:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iX0B0-00069D-Mq for guix-patches@gnu.org; Tue, 19 Nov 2019 04:52:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:37791) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iX0B0-000697-Jf for guix-patches@gnu.org; Tue, 19 Nov 2019 04:52:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iX0B0-0007hD-H6 for guix-patches@gnu.org; Tue, 19 Nov 2019 04:52:02 -0500 Subject: bug#38157: [PATCH] gnu: Add font-dseg. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <8736evgb98.fsf@nckx> Date: Tue, 19 Nov 2019 10:51:19 +0100 In-Reply-To: (Alexandros Theodotou's message of "Sun, 10 Nov 2019 18:11:12 +0000") Message-ID: <8736ekry7c.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: Alexandros Theodotou Cc: 38157-done@debbugs.gnu.org, Tobias Geerinckx-Rice --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello Alexandros, Alexandros Theodotou skribis: > From ec6c88abe3de6346087d821539e43afb3dff42c8 Mon Sep 17 00:00:00 2001 > From: Alexandros Theodotou > Date: Sun, 10 Nov 2019 01:25:28 +0000 > Subject: [PATCH] gnu: Add font-dseg. > > * gnu/packages/fonts.scm (font-dseg): New variable. Nice. Applied with the minor changes below: addressing a =E2=80=98guix lin= t=E2=80=99 warning, and using an even more appropriate string function. ;-) Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 7fe0aee20b..83c97444bf 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1537,7 +1537,7 @@ have been designed to be very distinguishable from each other.") (string-append "https://github.com/keshikan/DSEG/" "releases/download/v" version "/fonts-DSEG_v" - (apply string-append (string-split version #\.)) + (string-concatenate (string-split version #\.)) ".zip")) (sha256 (base32 @@ -1561,6 +1561,7 @@ have been designed to be very distinguishable from each other.") (home-page "https://www.keshikan.net/fonts-e.html") (synopsis "DSEG: 7-segment and 14-segment fonts") (description - "DSEG is a font family that imitates seven and fourteen segment -display (7SEG,14SEG). DSEG includes the roman alphabet and symbol glyphs.") + "DSEG is a font family that imitates seven- and fourteen-segment LCD +displays (7SEG, 14SEG). DSEG includes the roman alphabet and symbol glyphs. +This package provides the TrueType fonts.") (license license:silofl1.1))) --=-=-=--