mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: ecl: Update to 16.1.3.
* gnu/packages/lisp.scm (ecl): Update to 16.1.3. [arguments]: Use a different method to set the binary used for tests. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
3f06f43058
commit
108f69c448
1 changed files with 8 additions and 6 deletions
|
@ -129,7 +129,7 @@ (define-public gcl
|
||||||
(define-public ecl
|
(define-public ecl
|
||||||
(package
|
(package
|
||||||
(name "ecl")
|
(name "ecl")
|
||||||
(version "16.1.2")
|
(version "16.1.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -137,7 +137,7 @@ (define-public ecl
|
||||||
"https://common-lisp.net/project/ecl/static/files/release/"
|
"https://common-lisp.net/project/ecl/static/files/release/"
|
||||||
name "-" version ".tgz"))
|
name "-" version ".tgz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "16ab8qs3awvdxy8xs8jy82v8r04x4wr70l9l2j45vgag18d2nj1d"))
|
(base32 "0m0j24w5d5a9dwwqyrg0d35c0nys16ijb4r0nyk87yp82v38b9bn"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Add ecl-bundle-systems to 'default-system-source-registry'.
|
;; Add ecl-bundle-systems to 'default-system-source-registry'.
|
||||||
|
@ -152,9 +152,6 @@ (define-public ecl
|
||||||
("libffi" ,libffi)))
|
("libffi" ,libffi)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #t
|
'(#:tests? #t
|
||||||
#:make-flags `(,(string-append "ECL="
|
|
||||||
(assoc-ref %outputs "out")
|
|
||||||
"/bin/ecl"))
|
|
||||||
#:parallel-tests? #f
|
#:parallel-tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -182,7 +179,12 @@ (define-public ecl
|
||||||
`("kernel-headers" ,@libraries)))
|
`("kernel-headers" ,@libraries)))
|
||||||
`("LIBRARY_PATH" suffix ,library-directories)
|
`("LIBRARY_PATH" suffix ,library-directories)
|
||||||
`("LD_LIBRARY_PATH" suffix ,library-directories)))))
|
`("LD_LIBRARY_PATH" suffix ,library-directories)))))
|
||||||
(add-after 'wrap 'check (assoc-ref %standard-phases 'check)))))
|
(add-after 'wrap 'check (assoc-ref %standard-phases 'check))
|
||||||
|
(add-before 'check 'fix-path-to-ecl
|
||||||
|
(lambda _
|
||||||
|
(substitute* "build/tests/Makefile"
|
||||||
|
(("\\$\\{exec_prefix\\}/") ""))
|
||||||
|
#t)))))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "XDG_DATA_DIRS")
|
(variable "XDG_DATA_DIRS")
|
||||||
|
|
Loading…
Reference in a new issue