guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: icu4c: Update source URI.


From: guix-commits
Subject: branch master updated: gnu: icu4c: Update source URI.
Date: Fri, 01 May 2020 16:37:33 -0400

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 934f0b3  gnu: icu4c: Update source URI.
934f0b3 is described below

commit 934f0b32cfacd0bc05e79e54ffbc3bc253a0eb2d
Author: Marius Bakke <address@hidden>
AuthorDate: Fri May 1 20:36:09 2020 +0200

    gnu: icu4c: Update source URI.
    
    The previous URL started serving a HTML page, which ultimately refers to
    <https://github.com/unicode-org/icu/releases>.
    Reported by butterypancake on #guix.
    
    * gnu/packages/icu4c.scm (icu4c)[source](uri): Change to GitHub.
---
 gnu/packages/icu4c.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index beeb2d7..2014813 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -61,8 +61,8 @@
    (source (origin
             (method url-fetch)
             (uri (string-append
-                  "http://download.icu-project.org/files/icu4c/";
-                  version
+                  
"https://github.com/unicode-org/icu/releases/download/release-";
+                  (string-map (lambda (x) (if (char=? x #\.) #\- x)) version)
                   "/icu4c-"
                   (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
                   "-src.tgz"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]