From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: Re: 01/01: gnu: Add libotf. Date: Mon, 22 Feb 2016 10:35:34 +0100 Message-ID: <87oab9ytnd.fsf@gnu.org> References: <20160220004247.27598.59042@vcs.savannah.gnu.org> <87oab9vqwb.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54817) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXmuJ-0005ZS-DZ for guix-devel@gnu.org; Mon, 22 Feb 2016 04:35:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXmuI-000271-8p for guix-devel@gnu.org; Mon, 22 Feb 2016 04:35:55 -0500 In-reply-to: <87oab9vqwb.fsf@gnu.org> 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: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-libotf-Use-mirror.patch >From e10c0a6da69bce2886f05b1e0027df962c663e67 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Mon, 22 Feb 2016 10:33:10 +0100 Subject: [PATCH] gnu: libotf: Use mirror. * gnu/packages/fontutils.scm (libotf): Use the mirror prefix instead of the full URL. --- gnu/packages/fontutils.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 4acf44d..b8d931f 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -266,7 +266,7 @@ resolution.") (source (origin (method url-fetch) (uri (string-append - "http://download.savannah.gnu.org/releases/m17n/libotf-" + "mirror://savannah/releases/m17n/libotf-" version ".tar.gz")) (sha256 (base32 "0239zvfan56w7vrppriwy77fzb10ag9llaz15nsraps2a2x6di3v")))) -- 2.5.0 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Ludovic Courtès writes: > ??? skribis: > >> + (uri (string-append >> + "http://download.savannah.gnu.org/releases/m17n/libotf-" >> + version ".tar.gz")) > > It’s best to use mirror://savannah here. :-) The attached patch should fix that. I added it to my list of things to check before submitting patches. :) Thanks! --=-=-=--