mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: sbcl-parse-float: Update to 0.0.0-2.3074765.
* gnu/packages/listp-xyz.scm (sbcl-parse-float): Update to 0.0.0-2.3074765. [native-inputs]: Remove prove, add lisp-unit. [inputs]: Remove babel. [arguments]: Enable tests. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
13337a2fa0
commit
65454c1caa
1 changed files with 11 additions and 12 deletions
|
@ -2323,10 +2323,11 @@ (define-public ecl-proc-parse
|
||||||
(sbcl-package->ecl-package sbcl-proc-parse))
|
(sbcl-package->ecl-package sbcl-proc-parse))
|
||||||
|
|
||||||
(define-public sbcl-parse-float
|
(define-public sbcl-parse-float
|
||||||
(let ((commit "2aae569f2a4b2eb3bfb5401a959425dcf151b09c"))
|
(let ((commit "3074765101e41222b6b624a66aaf1e6416379f9c")
|
||||||
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "sbcl-parse-float")
|
(name "sbcl-parse-float")
|
||||||
(version (git-version "0.0.0" "1" commit))
|
(version (git-version "0.0.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -2334,23 +2335,21 @@ (define-public sbcl-parse-float
|
||||||
(url "https://github.com/soemraws/parse-float")
|
(url "https://github.com/soemraws/parse-float")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0jd2spawc3v8vzqf8ky4cngl45jm65fhkrdf20mf6dcbn3mzpkmr"))
|
||||||
"08xw8cchhmqcc0byng69m3f5a2izc9y2290jzz2k0qrbibp1fdk7"))
|
|
||||||
(file-name (git-file-name "proc-parse" version))))
|
(file-name (git-file-name "proc-parse" version))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(inputs
|
|
||||||
`(("alexandria" ,sbcl-alexandria)
|
|
||||||
("babel" ,sbcl-babel)))
|
|
||||||
(native-inputs
|
|
||||||
`(("prove" ,sbcl-prove)))
|
|
||||||
(arguments
|
(arguments
|
||||||
;; TODO: Tests don't find "proc-parse-test", why?
|
;; FIXME: https://github.com/soemraws/parse-float/issues/12
|
||||||
`(#:tests? #f))
|
`(#:asd-systems '("parse-float" "parse-float-tests")))
|
||||||
|
(native-inputs
|
||||||
|
`(("lisp-unit" ,sbcl-lisp-unit)))
|
||||||
|
(inputs
|
||||||
|
`(("alexandria" ,sbcl-alexandria)))
|
||||||
|
(home-page "https://github.com/soemraws/parse-float")
|
||||||
(synopsis "Parse a floating point value from a string in Common Lisp")
|
(synopsis "Parse a floating point value from a string in Common Lisp")
|
||||||
(description
|
(description
|
||||||
"This package exports the following function to parse floating-point
|
"This package exports the following function to parse floating-point
|
||||||
values from a string in Common Lisp.")
|
values from a string in Common Lisp.")
|
||||||
(home-page "https://github.com/soemraws/parse-float")
|
|
||||||
(license license:public-domain))))
|
(license license:public-domain))))
|
||||||
|
|
||||||
(define-public cl-parse-float
|
(define-public cl-parse-float
|
||||||
|
|
Loading…
Reference in a new issue