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.
This commit is contained in:
Efraim Flashner 2016-11-26 22:16:16 +02:00
parent e30abbbb02
commit 5499de02ca
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 5 additions and 15 deletions

View File

@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -28,20 +29,17 @@
(define-public icu4c (define-public icu4c
(package (package
(name "icu4c") (name "icu4c")
(version "55.1") (version "58.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"mirror://sourceforge/icu/ICU4C/" "http://download.icu-project.org/files/icu4c/"
version version
"/icu4c-" "/icu4c-"
(string-map (lambda (x) (if (char=? x #\.) #\_ x)) version) (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
"-src.tgz")) "-src.tgz"))
(sha256 (sha256
(base32 "0ys5f5spizg45qlaa31j2lhgry0jka2gfha527n4ndfxxz5j4sz1")) (base32 "0283lcgb39v7hsl16bbp8h8r9d51n4lpld5dr292173afjinpd0f"))))
(patches (search-patches "icu4c-CVE-2014-6585.patch"
"icu4c-CVE-2015-1270.patch"
"icu4c-CVE-2015-4760.patch"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("perl" ,perl))) `(("perl" ,perl)))
@ -58,15 +56,7 @@
(alist-cons-after (alist-cons-after
'unpack 'chdir-to-source 'unpack 'chdir-to-source
(lambda _ (chdir "source")) (lambda _ (chdir "source"))
(alist-cons-before %standard-phases)))
'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))))
(synopsis "International Components for Unicode") (synopsis "International Components for Unicode")
(description (description
"ICU is a set of C/C++ and Java libraries providing Unicode and "ICU is a set of C/C++ and Java libraries providing Unicode and