diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-08-18 12:05:05 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-08-18 12:05:05 +0300 |
commit | d6f4dc1db488b5fbfdbdfe056308d881f30b27f2 (patch) | |
tree | 5884c51fc1d0a75d01a83e809f2a5086300eb18a /gnu/packages/julia.scm | |
parent | 199a1235bd331b9202b4f7b404cfd66c2d33f7cd (diff) | |
download | guix-d6f4dc1db488b5fbfdbdfe056308d881f30b27f2.tar.gz |
gnu: Remove pcre2-10.36.
* gnu/packages/pcre.scm (pcre2-10.36): Remove variable. * gnu/packages/julia.scm (julia)[arguments]: Adjust 'adjust-test-suite phase for new pcre2 package. [inputs]: Replace pcre2-10.36 with pcre2.
Diffstat (limited to 'gnu/packages/julia.scm')
-rw-r--r-- | gnu/packages/julia.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/julia.scm b/gnu/packages/julia.scm index f5bbb5d267..1ede2b0d57 100644 --- a/gnu/packages/julia.scm +++ b/gnu/packages/julia.scm @@ -457,13 +457,13 @@ libraries. It is also a bit like @code{ldd} and @code{otool -L}.") #t)) (add-after 'unpack 'adjust-test-suite (lambda* (#:key inputs #:allow-other-keys) - (let (;(pcre2 (assoc-ref inputs "pcre2")) + (let ((pcre2 (assoc-ref inputs "pcre2")) (mbedtls-apache (assoc-ref inputs "mbedtls")) (mpfr (assoc-ref inputs "mpfr")) (suitesparse (assoc-ref inputs "suitesparse"))) ;; Some tests only check to see if the input is the correct version. - ;(substitute* "stdlib/PCRE2_jll/test/runtests.jl" - ; (("10.36.0") ,(package-version pcre2))) + (substitute* "stdlib/PCRE2_jll/test/runtests.jl" + (("10.36.0") ,(package-version pcre2))) (substitute* "stdlib/MbedTLS_jll/test/runtests.jl" (("2.24.0") ,(package-version mbedtls-apache))) (substitute* "stdlib/MPFR_jll/test/runtests.jl" @@ -647,9 +647,7 @@ libraries. It is also a bit like @code{ldd} and @code{otool -L}.") ("openblas" ,openblas) ("openlibm" ,openlibm) ("p7zip" ,p7zip) - ;; pcre2-10.35 has a bug with the JIT regex parser: - ;; https://github.com/JuliaLang/julia/issues/40231#issuecomment-812753324 - ("pcre2" ,pcre2-10.36) + ("pcre2" ,pcre2) ("suitesparse" ,suitesparse) ("utf8proc" ,utf8proc-2.6.1) ("wget" ,wget) |