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