From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: Fwd: [PATCH] Add font-terminus. Date: Mon, 10 Nov 2014 18:34:10 +0300 Message-ID: <871tpb2hot.fsf@gmail.com> References: <20140810100446.GA5146@debian> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53979) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xnqyx-000093-6x for guix-devel@gnu.org; Mon, 10 Nov 2014 10:34:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xnqyr-0003Kg-HA for guix-devel@gnu.org; Mon, 10 Nov 2014 10:34:19 -0500 Received: from mail-la0-x230.google.com ([2a00:1450:4010:c03::230]:53168) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xnqyr-0003Ka-5w for guix-devel@gnu.org; Mon, 10 Nov 2014 10:34:13 -0500 Received: by mail-la0-f48.google.com with SMTP id gq15so7759387lab.7 for ; Mon, 10 Nov 2014 07:34:12 -0800 (PST) Received: from leviafan (128-74-164-65.broadband.corbina.ru. [128.74.164.65]) by mx.google.com with ESMTPSA id qg4sm5360009lbb.36.2014.11.10.07.34.10 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 10 Nov 2014 07:34:11 -0800 (PST) In-Reply-To: (Guy Grant's message of "Sun, 10 Aug 2014 09:25:59 -0500") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain A bit too late for the comment, but still: Guy Grant (2014-08-10 18:25 +0400) wrote: > + (license > + (license:x11-style > + "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web")))) Since it's not an "X11-style", but an "OFL" license, why not use the latter? The patch for fixing it is attached. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-fonts-Fix-license-of-terminus-font.patch >From 73873d10466680ffed64e11f5c96fe7a5343fb69 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Mon, 10 Nov 2014 18:26:29 +0300 Subject: [PATCH] gnu: fonts: Fix license of 'terminus-font'. * gnu/packages/fonts.scm (terminus-font): Use 'silofl1.1' license. --- gnu/packages/fonts.scm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 825395b..4ed86d9 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -237,6 +237,4 @@ package provides the TrueType (TTF) files.") (synopsis "Simple bitmap programming font") (description "Terminus Font is a clean, fixed width bitmap font, designed for long (8 and more hours per day) work with computers.") - (license - (license:x11-style - "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web")))) + (license license:silofl1.1))) -- 2.1.2 --=-=-=--