From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1etWB4-0007TK-NC for guix-patches@gnu.org; Wed, 07 Mar 2018 05:20:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1etWB0-0008F2-NJ for guix-patches@gnu.org; Wed, 07 Mar 2018 05:20:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:40545) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1etWB0-0008Ex-Ir for guix-patches@gnu.org; Wed, 07 Mar 2018 05:20:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1etWB0-0001Ju-CL for guix-patches@gnu.org; Wed, 07 Mar 2018 05:20:02 -0500 Subject: bug#30732: IBM Plex Font Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: Date: Wed, 07 Mar 2018 11:18:57 +0100 In-Reply-To: (Charlie Ritter's message of "Tue, 06 Mar 2018 11:03:06 -0500") Message-ID: <876068ur1q.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: Charlie Ritter Cc: 30732-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Charlie Ritter skribis: > From 0660ca15c4db12cd86825b5ce4775980aa6fd930 Mon Sep 17 00:00:00 2001 > From: Charlie Ritter > Date: Tue, 6 Mar 2018 10:59:47 -0500 > Subject: [PATCH] gnu: Add IBM Plex font. > > * gnu/packages/fonts.scm (IBM Plex font): New variable. I applied the patch though I took the liberty to make the changes below: removing =E2=80=9Cv=E2=80=9D from the version string, and providing more fa= cts and less marketing talk in the =E2=80=98description=E2=80=99 field (see .) Thanks for the patch! 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 613b4b828..aa9e466eb 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -59,20 +59,22 @@ (define-public font-ibm-plex (package (name "font-ibm-plex") - (version "v1.0.1") + (version "1.0.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/IBM/plex/releases/download/" - version "/OpenType.zip")) + "v" version "/OpenType.zip")) (sha256 (base32 "0nzxw9z6waixslam248yr26ci3fbk83c7jf6m90hncnaj6zxx795")))) (build-system font-build-system) (home-page "https://github.com/IBM/plex") - (synopsis "IBM Plex Typeface") - (description "Meet IBM Plex, our new corporate typeface. It's global, it's -versatile and it's distinctly IBM.") + (synopsis "IBM Plex typeface") + (description "This package provides the Plex font family. It comes in a +Sans, Serif, Mono and Sans Condensed, all with roman and true italics. The +fonts have been designed to work well in user interface (UI) environments as +well as other mediums.") (license license:silofl1.1))) (define-public font-inconsolata --=-=-=--