all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: icu4c: Upgrade to 52.1
@ 2014-02-17 12:51 Mark H Weaver
  2014-02-17 16:29 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Mark H Weaver @ 2014-02-17 12:51 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 50 bytes --]

This upgrades icu4c to version 52.1.

      Mark


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: [PATCH] gnu: icu4c: Upgrade to 52.1 --]
[-- Type: text/x-patch, Size: 1620 bytes --]

From bb44edacf768c8308f7d64ad16a10ca9c924469d Mon Sep 17 00:00:00 2001
From: Mark H Weaver <mhw@netris.org>
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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] gnu: icu4c: Upgrade to 52.1
  2014-02-17 12:51 [PATCH] gnu: icu4c: Upgrade to 52.1 Mark H Weaver
@ 2014-02-17 16:29 ` Ludovic Courtès
  2014-02-17 19:15   ` Mark H Weaver
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2014-02-17 16:29 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: guix-devel

Mark H Weaver <mhw@netris.org> skribis:

> From bb44edacf768c8308f7d64ad16a10ca9c924469d Mon Sep 17 00:00:00 2001
> From: Mark H Weaver <mhw@netris.org>
> 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.

OK to push, but rather on ‘core-updates’ to limit rebuilds, as discussed
yesterday.

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gnu: icu4c: Upgrade to 52.1
  2014-02-17 16:29 ` Ludovic Courtès
@ 2014-02-17 19:15   ` Mark H Weaver
  2014-02-17 22:32     ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Mark H Weaver @ 2014-02-17 19:15 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

ludo@gnu.org (Ludovic Courtès) writes:

> Mark H Weaver <mhw@netris.org> skribis:
>
>> From bb44edacf768c8308f7d64ad16a10ca9c924469d Mon Sep 17 00:00:00 2001
>> From: Mark H Weaver <mhw@netris.org>
>> 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.
>
> OK to push, but rather on ‘core-updates’ to limit rebuilds, as discussed
> yesterday.

FWIW, the 'patchelf' fix will trigger a rebuild of icu4c anyway.  So it
would cause no additional work if these two commits were simultaneously
pushed to 'master'.

Alternatively, they could both be pushed to core-updates only.  I need
the 'patchelf' fix now, but I can keep that on my local branch off
master, I suppose.

What do you think?

      Mark

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gnu: icu4c: Upgrade to 52.1
  2014-02-17 19:15   ` Mark H Weaver
@ 2014-02-17 22:32     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2014-02-17 22:32 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: guix-devel

Mark H Weaver <mhw@netris.org> skribis:

> FWIW, the 'patchelf' fix will trigger a rebuild of icu4c anyway.  So it
> would cause no additional work if these two commits were simultaneously
> pushed to 'master'.

Right.  Well, push both to ‘master’, then.

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-02-17 22:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-17 12:51 [PATCH] gnu: icu4c: Upgrade to 52.1 Mark H Weaver
2014-02-17 16:29 ` Ludovic Courtès
2014-02-17 19:15   ` Mark H Weaver
2014-02-17 22:32     ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.