guix-commits
[Top][All Lists]
Advanced

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

branch wip-java-bootstrap-simplify updated: gnu: java-icu4j: Update to 7


From: guix-commits
Subject: branch wip-java-bootstrap-simplify updated: gnu: java-icu4j: Update to 70.1.
Date: Wed, 22 Dec 2021 05:21:06 -0500

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

rekado pushed a commit to branch wip-java-bootstrap-simplify
in repository guix.

The following commit(s) were added to refs/heads/wip-java-bootstrap-simplify by 
this push:
     new d20e0ece gnu: java-icu4j: Update to 70.1.
d20e0ece is described below

commit d20e0ece8975864ac88226a9d8b1b1e223275be8
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Dec 22 11:20:29 2021 +0100

    gnu: java-icu4j: Update to 70.1.
    
    * gnu/packages/icu4c.scm (java-icu4j): Update to 70.1.
    [arguments]: Remove trailing #T from build phases.
---
 gnu/packages/icu4c.scm | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index ec526e5..6e70f0c 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -152,7 +152,7 @@ C/C++ part.")
 (define-public java-icu4j
   (package
     (name "java-icu4j")
-    (version "66.1")
+    (version "70.1")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -162,7 +162,7 @@ C/C++ part.")
                     (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
                     ".tgz"))
               (sha256
-               (base32 
"1ahdyz9209lwl7knb2l3gmnkkby221p0vpgx70fj4j02rdzgvw0d"))))
+               (base32 
"0qrs75iyzn19kf54q55jn8wf6xjlpkrihdwqpxm39jdh2hz4cgvj"))))
     (build-system ant-build-system)
     (arguments
      `(#:make-flags
@@ -183,22 +183,19 @@ C/C++ part.")
        (modify-phases %standard-phases
          (add-before 'configure 'chdir
            (lambda _
-             (chdir "..")
-             #t))
+             (chdir "..")))
          (add-before 'build 'remove-ivy
            (lambda _
              ;; This target wants to download ivy and use it to download
              ;; junit.
              (substitute* "build.xml"
-               (("depends=\"test-init-junit-dependency\"") ""))
-             #t))
+               (("depends=\"test-init-junit-dependency\"") ""))))
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((share (string-append (assoc-ref outputs "out")
                                          "/share/java/")))
                (mkdir-p share)
-               (install-file "icu4j.jar" share)
-               #t))))))
+               (install-file "icu4j.jar" share)))))))
     (native-inputs
      (list java-junit java-junitparams java-hamcrest-core))
     (home-page "http://site.icu-project.org/";)



reply via email to

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