gnu: gambit-c: Update to 4.9.0.
The tests makefile still contains the offending lines, but I was unable to reproduce the failure across 3 different machines. * gnu/packages/scheme.scm (gambit-c): Update to 4.9.0. [arguments]: Remove 'fix-tests' phase.
This commit is contained in:
parent
4e9832dd38
commit
4be83af427
|
@ -532,7 +532,7 @@ of libraries.")
|
||||||
(define-public gambit-c
|
(define-public gambit-c
|
||||||
(package
|
(package
|
||||||
(name "gambit-c")
|
(name "gambit-c")
|
||||||
(version "4.8.9")
|
(version "4.9.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -542,24 +542,13 @@ of libraries.")
|
||||||
(string-map (lambda (c) (if (char=? c #\.) #\_ c)) version)
|
(string-map (lambda (c) (if (char=? c #\.) #\_ c)) version)
|
||||||
".tgz"))
|
".tgz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "16sg1s8myzxqpimj5ry6lfza0qfs157zj28bvmxwwgy89jd9m5v7"))))
|
(base32 "19862w9ij0g5xrkskl4g89xbs17gp9cc6cfcdca6dlfkb3lk6xhp"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
;; According to the ./configure script, this makes the build slower and
|
;; According to the ./configure script, this makes the build slower and
|
||||||
;; use >= 1 GB memory, but makes Gambit much faster.
|
;; use >= 1 GB memory, but makes Gambit much faster.
|
||||||
'("--enable-single-host")
|
'("--enable-single-host")))
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-before 'check 'fix-tests
|
|
||||||
(lambda _
|
|
||||||
(substitute* '("tests/makefile")
|
|
||||||
;; '-:' is how run-time options are set. 'tl' sets some terminal
|
|
||||||
;; option, which makes it fail in our build environment. It
|
|
||||||
;; recommends using 'd-' as a solution, which sets the REPL
|
|
||||||
;; interaction channel to stdin/stdout.
|
|
||||||
(("gsi -:tl") "gsi -:d-,tl"))
|
|
||||||
#t)))))
|
|
||||||
(home-page "http://gambitscheme.org")
|
(home-page "http://gambitscheme.org")
|
||||||
(synopsis "Efficient Scheme interpreter and compiler")
|
(synopsis "Efficient Scheme interpreter and compiler")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue