From mboxrd@z Thu Jan 1 00:00:00 1970 From: taylanbayirli@gmail.com (Taylan Ulrich =?utf-8?Q?Bay=C4=B1rl=C4=B1?= =?utf-8?Q?=2FKammer?=) Subject: [PATCH] gnu: liba52: Fix source URI. Date: Wed, 18 Mar 2015 11:14:57 +0100 Message-ID: <87bnjq628u.fsf@taylan.uni.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40717) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYB09-0006qW-4n for guix-devel@gnu.org; Wed, 18 Mar 2015 06:15:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YYB08-0001jB-96 for guix-devel@gnu.org; Wed, 18 Mar 2015 06:15:01 -0400 Received: from mail-we0-x22a.google.com ([2a00:1450:400c:c03::22a]:35359) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYB08-0001j3-29 for guix-devel@gnu.org; Wed, 18 Mar 2015 06:15:00 -0400 Received: by webcq43 with SMTP id cq43so28191843web.2 for ; Wed, 18 Mar 2015 03:14:59 -0700 (PDT) Received: from taylan.uni.cx (p200300514A4A86230213E8FFFEED36FB.dip0.t-ipconnect.de. [2003:51:4a4a:8623:213:e8ff:feed:36fb]) by mx.google.com with ESMTPSA id lx10sm23794255wjb.17.2015.03.18.03.14.58 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 Mar 2015 03:14:58 -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@gnu.org --=-=-= Content-Type: text/plain Looks like the SourceForge mirror URI never worked for this package. I'm not sure how I missed that (I think I coincidentally had a non-mirror URI, noticed it after being done with the package, then "fixed" it to use a mirror URI and didn't properly test if it works). --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-liba52-Fix-source-URI.patch Content-Description: patch >From 87829d1b612035fcc54880b76eb6689ab99ebfb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?= Date: Wed, 18 Mar 2015 10:52:37 +0100 Subject: [PATCH] gnu: liba52: Fix source URI. * gnu/packages/video.scm (liba52): Fix the source URI; SourceForge mirror URIs don't work for this project presumably because it's misconfigured. --- gnu/packages/video.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index b1c0c52..ce26812 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -77,8 +77,11 @@ (version "0.7.4") (source (origin (method url-fetch) - (uri (string-append "mirror://sourceforge/liba52/a52dec-" - version ".tar.gz")) + (uri (string-append + ;; A mirror://sourceforge URI doesn't work, presumably + ;; because the SourceForge project is misconfigured. + "http://liba52.sourceforge.net/files/a52dec-" version + ".tar.gz")) (sha256 (base32 "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2")))) -- 2.2.1 --=-=-=--