[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] gnu: liba52: Fix source URI.
From: |
Taylan Ulrich Bayırlı/Kammer |
Subject: |
[PATCH] gnu: liba52: Fix source URI. |
Date: |
Wed, 18 Mar 2015 11:14:57 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
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).
>From 87829d1b612035fcc54880b76eb6689ab99ebfb3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
<address@hidden>
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
- [PATCH] gnu: liba52: Fix source URI.,
Taylan Ulrich Bayırlı/Kammer <=