diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2022-03-03 11:37:46 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-03-03 16:21:22 +0100 |
commit | 02f50df8e35120b9f108ac205bcd075e9d2b25ff (patch) | |
tree | 71e6ac622a969a9ec5f9c8a9ba31b08c55b3bfac /gnu | |
parent | fa1bef7fe1dc64b93aab508592b037bd1019056d (diff) |
gnu: cl+ssl: Update to 0.0.0-3.046d698.
* gnu/packages/lisp-xyz.scm (sbcl-cl+ssl): Update to 0.0.0-3.046d698.
[native-inputs]: Add fiveam.
[arguments]: Add 'fix-tests' phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index cc92b9cf99..84fd4f5ca1 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -3788,8 +3788,8 @@ RFC 1321 by R. Rivest, published April 1992.") (list ecl-flexi-streams)))) (define-public sbcl-cl+ssl - (let ((commit "09e896b04c112e7eb0f9d443a5801d557fbcd3ea") - (revision "2")) + (let ((commit "046d698cf65539faf9aba0a5ccd086a9d6f53eef") + (revision "3")) (package (name "sbcl-cl+ssl") (version (git-version "0.0.0" revision commit)) @@ -3801,7 +3801,7 @@ RFC 1321 by R. Rivest, published April 1992.") (commit commit))) (file-name (git-file-name "cl+ssl" version)) (sha256 - (base32 "1ynvk8rbd5zvbdrl8mr49jwmg9fh94clzkagkza9jmpj0p1qvynd")))) + (base32 "110yhb0f1c8yilqsgza2xhv3675i41iizylibgy5qc5fa2lnaxbv")))) (build-system asdf-build-system/sbcl) (arguments '(#:phases @@ -3814,7 +3814,18 @@ RFC 1321 by R. Rivest, published April 1992.") (assoc-ref inputs "openssl") "/lib/" all)) (("libcrypto.so" all) (string-append - (assoc-ref inputs "openssl") "/lib/" all)))))))) + (assoc-ref inputs "openssl") "/lib/" all))))) + (add-after 'fix-paths 'fix-tests + (lambda _ + ;; Disable coverall support in tests because of a circular + ;; dependency: cl+ssl -> cl-coverall -> dexador + ;; -> clack -> hunchentoot -> cl+ssl + (substitute* "cl+ssl.test.asd" + (("\\(:feature \\(:or :sbcl :ccl\\) :cl-coveralls\\)") + ""))))))) + (native-inputs + (list ;sbcl-cl-coveralls + sbcl-fiveam)) (inputs (list openssl sbcl-cffi |