mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: cl-polymorphic-functions: Update to 0.5.2.
* gnu/packages/lisp-xyz.scm (sbcl-polymorphic-functions): Update to 0.5.2. [arguments]: Add 'fix-build' phase. Change-Id: Ic67ae27c7171127d93340c4c78c64fe71940f802
This commit is contained in:
parent
7a95b9ad57
commit
b6b439c243
1 changed files with 13 additions and 4 deletions
|
@ -24361,7 +24361,7 @@ (define-public ecl-policy-cond
|
||||||
(define-public sbcl-polymorphic-functions
|
(define-public sbcl-polymorphic-functions
|
||||||
(package
|
(package
|
||||||
(name "sbcl-polymorphic-functions")
|
(name "sbcl-polymorphic-functions")
|
||||||
(version "0.2.1")
|
(version "0.5.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -24370,20 +24370,29 @@ (define-public sbcl-polymorphic-functions
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name "cl-polymorphic-functions" version))
|
(file-name (git-file-name "cl-polymorphic-functions" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "161ylp3avmkylgfddp7i1kscv3bqx734jk1i97xhsbl7x83nin0h"))))
|
(base32 "1bawhbj5rh1q6qrcjnx48n78841mgri5n63pmicxxyhif2il0zq3"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(inputs
|
(inputs
|
||||||
(list sbcl-alexandria
|
(list sbcl-alexandria
|
||||||
|
sbcl-cl-form-types
|
||||||
sbcl-closer-mop
|
sbcl-closer-mop
|
||||||
sbcl-compiler-macro-notes
|
sbcl-compiler-macro-notes
|
||||||
sbcl-ctype
|
sbcl-ctype
|
||||||
sbcl-fiveam
|
sbcl-fiveam
|
||||||
sbcl-cl-form-types
|
|
||||||
sbcl-introspect-environment
|
sbcl-introspect-environment
|
||||||
sbcl-slime-swank))
|
sbcl-slime-swank))
|
||||||
(arguments
|
(arguments
|
||||||
;; Tests fail: https://github.com/digikar99/polymorphic-functions/issues/8
|
;; Tests fail: https://github.com/digikar99/polymorphic-functions/issues/8
|
||||||
'(#:tests? #f))
|
(list #:tests? #f
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-build
|
||||||
|
(lambda _
|
||||||
|
;; SBCL 2.4.10 doesn't allow user code to
|
||||||
|
;; rebind *IN-COMPILATION-UNIT*.
|
||||||
|
(substitute* "src/nonlite/dispatch.lisp"
|
||||||
|
(("#\\+sbcl \\(sb-c::\\*in-compilation-unit\\* nil\\)")
|
||||||
|
"")))))))
|
||||||
(home-page "https://github.com/digikar99/polymorphic-functions/")
|
(home-page "https://github.com/digikar99/polymorphic-functions/")
|
||||||
(synopsis "Function type to dispatch on types instead of classes")
|
(synopsis "Function type to dispatch on types instead of classes")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue