gnu: chicken: Update to 4.11.1.
* gnu/packages/scheme.scm (chicken): Update to 4.11.1.
This commit is contained in:
parent
d338237d8c
commit
b9b6db45e8
|
@ -323,20 +323,22 @@ mashups, office (web agendas, mail clients, ...), etc.")
|
||||||
(define-public chicken
|
(define-public chicken
|
||||||
(package
|
(package
|
||||||
(name "chicken")
|
(name "chicken")
|
||||||
(version "4.11.0")
|
(version "4.11.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://code.call-cc.org/releases/"
|
(uri (string-append "http://code.call-cc.org/releases/"
|
||||||
version "/chicken-" version ".tar.gz"))
|
version "/chicken-" version ".tar.gz"))
|
||||||
(sha256
|
(uri (string-append "http://code.call-cc.org/dev-snapshots/"
|
||||||
(base32
|
"2016/09/12/chicken-" version ".tar.gz"))
|
||||||
"12ddyiikqknpr8h6llsxbg2fz75xnayvcnsvr1cwv8xnjn7jpp73"))))
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1rwymbbmnwdyhdzilv9w75an989xw9kjf3x52iqdng3nphpflcga"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build gnu-build-system)
|
`(#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(srfi srfi-1))
|
(srfi srfi-1))
|
||||||
|
|
||||||
;; No `configure' script; run "make check" after "make install" as
|
;; No `configure' script; run "make check" after "make install" as
|
||||||
;; prescribed by README.
|
;; prescribed by README.
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -344,14 +346,7 @@ mashups, office (web agendas, mail clients, ...), etc.")
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(delete 'check)
|
(delete 'check)
|
||||||
(add-after 'install 'check
|
(add-after 'install 'check
|
||||||
(assoc-ref %standard-phases 'check))
|
(assoc-ref %standard-phases 'check)))
|
||||||
(add-after 'unpack 'disable-broken-tests
|
|
||||||
(lambda _
|
|
||||||
;; The port tests fail with this error:
|
|
||||||
;; Error: (line 294) invalid escape-sequence '\x o'
|
|
||||||
(substitute* "tests/runtests.sh"
|
|
||||||
(("\\$interpret -s port-tests\\.scm") ""))
|
|
||||||
#t)))
|
|
||||||
|
|
||||||
#:make-flags (let ((out (assoc-ref %outputs "out")))
|
#:make-flags (let ((out (assoc-ref %outputs "out")))
|
||||||
(list "PLATFORM=linux"
|
(list "PLATFORM=linux"
|
||||||
|
|
Loading…
Reference in New Issue