From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: [PATCH] gnu: icu4c: Upgrade to 52.1 Date: Mon, 17 Feb 2014 07:51:53 -0500 Message-ID: <87a9dpq4uu.fsf@netris.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41919) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFNgj-0003pJ-U5 for guix-devel@gnu.org; Mon, 17 Feb 2014 07:52:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WFNge-0000Lt-AK for guix-devel@gnu.org; Mon, 17 Feb 2014 07:52:45 -0500 Received: from world.peace.net ([96.39.62.75]:38558) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFNge-0000Li-3S for guix-devel@gnu.org; Mon, 17 Feb 2014 07:52:40 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain This upgrades icu4c to version 52.1. Mark --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-icu4c-Upgrade-to-52.1.patch Content-Description: [PATCH] gnu: icu4c: Upgrade to 52.1 >From bb44edacf768c8308f7d64ad16a10ca9c924469d Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sun, 16 Feb 2014 16:38:00 -0500 Subject: [PATCH] gnu: icu4c: Upgrade to 52.1. * gnu/packages/icu4c.scm (icu4c): Upgrade to 52.1. --- gnu/packages/icu4c.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm index 6129662..aea5d2f 100644 --- a/gnu/packages/icu4c.scm +++ b/gnu/packages/icu4c.scm @@ -28,7 +28,7 @@ (define-public icu4c (package (name "icu4c") - (version "50.1.1") + (version "52.1") (source (origin (method url-fetch) (uri (string-append "http://download.icu-project.org/files/icu4c/" @@ -37,7 +37,7 @@ (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version) "-src.tgz")) (sha256 (base32 - "13yz0kk6zsgj94idnlr3vbg8iph5z4ly4b4xrd5wfja7q3ijdx56")))) + "14l0kl17nirc34frcybzg0snknaks23abhdxkmsqg3k9sil5wk9g")))) (build-system gnu-build-system) (inputs `(("patchelf" ,patchelf) @@ -61,7 +61,7 @@ (lambda* (#:key #:allow-other-keys #:rest args) (let ((configure (assoc-ref %standard-phases 'configure))) ;; patch out two occurrences of /bin/sh from configure script - ;; that might have disappeared in a release later than 50.1.1 + ;; that might have disappeared in a release later than 52.1 (substitute* "configure" (("`/bin/sh") (string-append "`" (which "bash")))) -- 1.8.4 --=-=-=--