mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: ecl: Update to 20.4.24.
* gnu/packages/lisp.scm (ecl): Update to 20.4.24. [native-inputs]: Add texinfo to make the manual. [license]: Set to lgpl2.1+.
This commit is contained in:
parent
143eaa82d6
commit
8ac4be51de
1 changed files with 16 additions and 10 deletions
|
@ -222,7 +222,7 @@ (define-public gcl
|
||||||
(define-public ecl
|
(define-public ecl
|
||||||
(package
|
(package
|
||||||
(name "ecl")
|
(name "ecl")
|
||||||
(version "16.1.3")
|
(version "20.4.24")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -230,17 +230,22 @@ (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 "0m0j24w5d5a9dwwqyrg0d35c0nys16ijb4r0nyk87yp82v38b9bn"))))
|
(base32 "01qgdmr54wkj854f69qdm9sybrvd6gd21dpx4askdaaqybnkh237"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
;; src/configure uses 'which' to confirm the existence of 'gzip'.
|
;; src/configure uses 'which' to confirm the existence of 'gzip'.
|
||||||
(native-inputs `(("cl-asdf" ,cl-asdf)
|
(native-inputs
|
||||||
("which" ,which)))
|
`(("cl-asdf" ,cl-asdf)
|
||||||
(inputs `(("gmp" ,gmp)
|
("which" ,which)
|
||||||
|
("texinfo" ,texinfo)))
|
||||||
|
(inputs
|
||||||
|
`(("gmp" ,gmp)
|
||||||
("libatomic-ops" ,libatomic-ops)
|
("libatomic-ops" ,libatomic-ops)
|
||||||
("libgc" ,libgc)
|
("libgc" ,libgc)
|
||||||
("libffi" ,libffi)))
|
("libffi" ,libffi)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--without-rt")
|
`(#:configure-flags '("--without-rt")
|
||||||
|
;; FIXME: As of version 20.4.24, we pass 17995 tests and fail 7.
|
||||||
|
;; 2-3 tests may be due to FHS assumptions.
|
||||||
#:tests? #t
|
#:tests? #t
|
||||||
#:parallel-tests? #f
|
#:parallel-tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -301,9 +306,10 @@ (define-public ecl
|
||||||
C/C++ compiler, being able to build standalone executables and libraries, and
|
C/C++ compiler, being able to build standalone executables and libraries, and
|
||||||
supporting ASDF, Sockets, Gray streams, MOP, and other useful components.")
|
supporting ASDF, Sockets, Gray streams, MOP, and other useful components.")
|
||||||
;; Note that the file "Copyright" points to some files and directories
|
;; Note that the file "Copyright" points to some files and directories
|
||||||
;; which aren't under the lgpl2.0+ and instead contain many different,
|
;; which aren't under the lgpl2.1+ and instead contain many different,
|
||||||
;; non-copyleft licenses.
|
;; non-copyleft licenses.
|
||||||
(license license:lgpl2.0+)))
|
;; See https://common-lisp.net/project/ecl/posts/ECL-license.html.
|
||||||
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public clisp
|
(define-public clisp
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue