From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Benc Subject: [PATCH] gnu: fix wv's source URI Date: Tue, 09 Sep 2014 17:45:10 +0200 Message-ID: <540F2086.2020002@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------030705040607000904060708" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52053) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRNci-0006Y3-EQ for guix-devel@gnu.org; Tue, 09 Sep 2014 11:46:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XRNcZ-000815-Ay for guix-devel@gnu.org; Tue, 09 Sep 2014 11:46:28 -0400 Received: from mail-wi0-x236.google.com ([2a00:1450:400c:c05::236]:56458) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRNcZ-00080v-4X for guix-devel@gnu.org; Tue, 09 Sep 2014 11:46:19 -0400 Received: by mail-wi0-f182.google.com with SMTP id z2so4717720wiv.15 for ; Tue, 09 Sep 2014 08:46:18 -0700 (PDT) Received: from [192.168.0.104] ([213.215.123.38]) by mx.google.com with ESMTPSA id ll20sm15891604wic.14.2014.09.09.08.46.16 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 09 Sep 2014 08:46:17 -0700 (PDT) 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 This is a multi-part message in MIME format. --------------030705040607000904060708 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit By changing the package name, the source URI of wv broke. Here is a fix for it. --------------030705040607000904060708 Content-Type: text/x-diff; name="0001-gnu-fix-wv-s-source-URI.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-fix-wv-s-source-URI.patch" >From 26989028af79b9b43ee5fa304927b76ec6e54be9 Mon Sep 17 00:00:00 2001 From: Marek Benc Date: Tue, 9 Sep 2014 17:40:52 +0200 Subject: [PATCH] gnu: fix wv's source URI * gnu/packages/wv.scm (wv): Fix the source uri and use mirror://sourceforge/ --- gnu/packages/wv.scm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gnu/packages/wv.scm b/gnu/packages/wv.scm index 31afd86..7800937 100644 --- a/gnu/packages/wv.scm +++ b/gnu/packages/wv.scm @@ -35,11 +35,8 @@ (source (origin (method url-fetch) - (uri - (string-append - "http://sourceforge.net/projects/" name "/files/wv/" version - "/wv-" version ".tar.gz/download")) - (file-name (string-append "wv-" version ".tar.gz")) + (uri (string-append "mirror://sourceforge/wvware/" name "/" version + "/" name "-" version ".tar.gz")) (sha256 (base32 "1mn2ax6qjy3pvixlnvbkn6ymy6y4l2wxrr4brjaczm121s8hjcb7")))) -- 1.7.10.4 --------------030705040607000904060708--