mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: gauche: Update to 0.9.9.
* gnu/packages/scheme.scm (gauche): Update to 0.9.9.
This commit is contained in:
parent
91815e8dc2
commit
3e8867196c
1 changed files with 9 additions and 10 deletions
|
@ -1001,7 +1001,7 @@ (define-public femtolisp
|
|||
(define-public gauche
|
||||
(package
|
||||
(name "gauche")
|
||||
(version "0.9.7")
|
||||
(version "0.9.9")
|
||||
(home-page "http://practical-scheme.net/gauche/index.html")
|
||||
(source
|
||||
(origin
|
||||
|
@ -1010,11 +1010,10 @@ (define-public gauche
|
|||
"mirror://sourceforge/gauche/Gauche/Gauche-"
|
||||
version ".tgz"))
|
||||
(sha256
|
||||
(base32
|
||||
"181nycikma0rwrb1h6mi3kys11f8628pq8g5r3fg5hiz5sabscrd"))
|
||||
(base32 "1yzpszhw52vkpr65r5d4khf3489mnnvnw58dd2wsvvx7499k5aac"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet '(begin
|
||||
;; Remove libatomic-ops
|
||||
;; Remove libatomic-ops.
|
||||
(delete-file-recursively "gc/libatomic_ops")
|
||||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
|
@ -1023,13 +1022,13 @@ (define-public gauche
|
|||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(("texinfo" ,texinfo)
|
||||
("openssl" ,openssl) ; needed for tests
|
||||
("pkg-config" ,pkg-config))) ; needed to find external libatomic-ops
|
||||
("openssl" ,openssl) ; needed for tests
|
||||
("pkg-config" ,pkg-config))) ; needed to find external libatomic-ops
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-/bin/sh
|
||||
;; needed only for tests
|
||||
;; Needed only for tests.
|
||||
(lambda _
|
||||
(substitute* '("configure"
|
||||
"test/www.scm"
|
||||
|
@ -1046,14 +1045,14 @@ (define-public gauche
|
|||
(invoke "make" "info"))
|
||||
#t))
|
||||
(add-before 'check 'patch-normalize-test
|
||||
;; neutralize sys-normalize-pathname test as it relies on
|
||||
;; the home directory; (setenv "HOME" xx) isn't enough)
|
||||
;; Neutralize sys-normalize-pathname test as it relies on
|
||||
;; the home directory; (setenv "HOME" xx) isn't enough).
|
||||
(lambda _
|
||||
(substitute* "test/system.scm"
|
||||
(("~/abc") "//abc"))
|
||||
#t))
|
||||
(add-before 'check 'patch-network-tests
|
||||
;; remove net checks
|
||||
;; Remove net checks.
|
||||
(lambda _
|
||||
(substitute* "ext/Makefile"
|
||||
(("binary net termios") "binary termios"))
|
||||
|
|
Loading…
Reference in a new issue