mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: icu4c-70: Fix building on riscv64-linux.
* gnu/packages/icu4c.scm (icu4c-70)[arguments]: When building for riscv64-linux replace the custom 'disable-failing-test phase to skip an additional test.
This commit is contained in:
parent
584cf4dadd
commit
e0e87fe3a6
1 changed files with 16 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2016, 2017, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016, 2017, 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
|
||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||
|
@ -136,7 +136,21 @@ (define-public icu4c-70
|
|||
"-src.tgz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1m9zgkaf5lyh65nyc6n0n5bs2f5k53nnj1ih6nskpwbvq4l5884d"))))))
|
||||
"1m9zgkaf5lyh65nyc6n0n5bs2f5k53nnj1ih6nskpwbvq4l5884d"))))
|
||||
(arguments
|
||||
(if (target-riscv64?)
|
||||
(substitute-keyword-arguments (package-arguments icu4c)
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(replace 'disable-failing-test
|
||||
;; It is unknown why these tests are failing.
|
||||
(lambda _
|
||||
(substitute* "source/test/cintltst/ucptrietest.c"
|
||||
((".*addTest.*") ""))
|
||||
(substitute* "source/test/intltest/numbertest_api.cpp"
|
||||
(("(TESTCASE_AUTO\\(unitUsage\\));" all)
|
||||
(string-append "//" all))))))))
|
||||
(package-arguments icu4c)))))
|
||||
|
||||
(define-public icu4c-67
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue