[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: icu4c: Update to 58.1.
From: |
Efraim Flashner |
Subject: |
01/06: gnu: icu4c: Update to 58.1. |
Date: |
Sun, 27 Nov 2016 08:40:03 +0000 (UTC) |
efraim pushed a commit to branch core-updates
in repository guix.
commit 5499de02ca265745b98ddcc40af087dfaa14c9ba
Author: Efraim Flashner <address@hidden>
Date: Sat Nov 26 22:16:16 2016 +0200
gnu: icu4c: Update to 58.1.
* gnu/packages/icu4c.scm (icu4c): Update to 58.1.
[source]: Download from their website.
[arguments]: Remove extra bash replacement.
---
gnu/packages/icu4c.scm | 20 +++++---------------
1 file changed, 5 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index 13723bf..18de81f 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <address@hidden>
;;; Copyright © 2015, 2016 Mark H Weaver <address@hidden>
+;;; Copyright © 2016 Efraim Flashner <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -28,20 +29,17 @@
(define-public icu4c
(package
(name "icu4c")
- (version "55.1")
+ (version "58.1")
(source (origin
(method url-fetch)
(uri (string-append
- "mirror://sourceforge/icu/ICU4C/"
+ "http://download.icu-project.org/files/icu4c/"
version
"/icu4c-"
(string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
"-src.tgz"))
(sha256
- (base32 "0ys5f5spizg45qlaa31j2lhgry0jka2gfha527n4ndfxxz5j4sz1"))
- (patches (search-patches "icu4c-CVE-2014-6585.patch"
- "icu4c-CVE-2015-1270.patch"
- "icu4c-CVE-2015-4760.patch"))))
+ (base32 "0283lcgb39v7hsl16bbp8h8r9d51n4lpld5dr292173afjinpd0f"))))
(build-system gnu-build-system)
(inputs
`(("perl" ,perl)))
@@ -58,15 +56,7 @@
(alist-cons-after
'unpack 'chdir-to-source
(lambda _ (chdir "source"))
- (alist-cons-before
- 'configure 'patch-configure
- (lambda _
- ;; patch out two occurrences of /bin/sh from configure script
- ;; that might have disappeared in a release later than 54.1
- (substitute* "configure"
- (("`/bin/sh")
- (string-append "`" (which "bash")))))
- %standard-phases))))
+ %standard-phases)))
(synopsis "International Components for Unicode")
(description
"ICU is a set of C/C++ and Java libraries providing Unicode and
- branch core-updates updated (e30abbb -> 51c8e29), Efraim Flashner, 2016/11/27
- 05/06: gnu: grep: Update to 2.26., Efraim Flashner, 2016/11/27
- 02/06: gnu: icu4c: Use 'modify-phases' syntax., Efraim Flashner, 2016/11/27
- 06/06: gnu: sed: Use 'modify-phases' syntax., Efraim Flashner, 2016/11/27
- 04/06: gnu: nettle: Update to 3.3., Efraim Flashner, 2016/11/27
- 03/06: gnu: bash: Update to patch level 5., Efraim Flashner, 2016/11/27
- 01/06: gnu: icu4c: Update to 58.1.,
Efraim Flashner <=