[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: icu4c: Fetch from sourceforge.
From: |
Andy Wingo |
Subject: |
01/01: gnu: icu4c: Fetch from sourceforge. |
Date: |
Sun, 21 Feb 2016 20:53:36 +0000 |
wingo pushed a commit to branch master
in repository guix.
commit d5df6fc755156208816c4f8bdb16528dedbf78bd
Author: Andy Wingo <address@hidden>
Date: Fri Feb 19 14:33:57 2016 +0100
gnu: icu4c: Fetch from sourceforge.
* gnu/packages/icu4c.scm (icu4c): Download via sourceforge mirrors. The
previous URL,
http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-src.tgz,
redirects to sourceforge, which then fails because that redirects to
https and as the original URL didn't start with HTTPS, gnutls wasn't
included in the downloader.
---
gnu/packages/icu4c.scm | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index d442b5e..a6f5acd 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -31,11 +31,12 @@
(version "55.1")
(source (origin
(method url-fetch)
- (uri (string-append "http://download.icu-project.org/files/icu4c/"
- version
- "/icu4c-"
- (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
- "-src.tgz"))
+ (uri (string-append
+ "mirror://sourceforge/icu/ICU4C/"
+ version
+ "/icu4c-"
+ (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
+ "-src.tgz"))
(sha256
(base32 "0ys5f5spizg45qlaa31j2lhgry0jka2gfha527n4ndfxxz5j4sz1"))
(patches (map search-patch '("icu4c-CVE-2014-6585.patch"