gnu: sbcl-cl-base64: Fix tests.

* gnu/packages/lisp-xyz.scm (sbcl-cl-base64): Update to 20200930 which fixes
the test suite.
This commit is contained in:
Pierre Neidhardt 2020-10-04 16:03:03 +02:00
parent 32b5179863
commit 7cb4440951
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F

View File

@ -3691,34 +3691,32 @@ Rosenberg's Common Lisp packages.")
(sbcl-package->cl-source-package sbcl-kmrcl)) (sbcl-package->cl-source-package sbcl-kmrcl))
(define-public sbcl-cl-base64 (define-public sbcl-cl-base64
(package ;; 3.3.4 tests are broken, upstream fixes them.
(name "sbcl-cl-base64") (let ((commit "577683b18fd880b82274d99fc96a18a710e3987a"))
(version "3.3.4") (package
(source (name "sbcl-cl-base64")
(origin (version (git-version "3.3.4" "1" commit))
(method url-fetch) (source
(uri (string-append "http://files.kpe.io/cl-base64/cl-base64-" (origin
version ".tar.gz")) (method git-fetch)
(sha256 (uri (git-reference
(base32 "0pl4zwn5bf18dm8fh1kn1yshaa6kpmfrjyb33z9mq4raqmj3xpv2")))) (url "http://git.kpe.io/cl-base64.git/")
(build-system asdf-build-system/sbcl) (commit commit)))
(arguments (sha256
;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed (base32 "12jj54h0fs6n237cvnp8v6hn0imfksammq22ys6pi0gwz2w47rbj"))))
;; in a nested call to ASDF/OPERATE:OPERATE unless identically (build-system asdf-build-system/sbcl)
;; to toplevel (native-inputs ; For tests.
'(#:tests? #f)) `(("sbcl-ptester" ,sbcl-ptester)
(inputs ("sbcl-kmrcl" ,sbcl-kmrcl)))
`(("sbcl-ptester" ,sbcl-ptester) (home-page "http://files.kpe.io/cl-base64/")
("sbcl-kmrcl" ,sbcl-kmrcl))) (synopsis
(home-page "http://files.kpe.io/cl-base64/") "Common Lisp package to encode and decode base64 with URI support")
(synopsis (description
"Common Lisp package to encode and decode base64 with URI support") "This package provides highly optimized base64 encoding and decoding.
(description
"This package provides highly optimized base64 encoding and decoding.
Besides conversion to and from strings, integer conversions are supported. Besides conversion to and from strings, integer conversions are supported.
Encoding with Uniform Resource Identifiers is supported by using a modified Encoding with Uniform Resource Identifiers is supported by using a modified
encoding table that uses only URI-compatible characters.") encoding table that uses only URI-compatible characters.")
(license license:bsd-3))) (license license:bsd-3))))
(define-public cl-base64 (define-public cl-base64
(sbcl-package->cl-source-package sbcl-cl-base64)) (sbcl-package->cl-source-package sbcl-cl-base64))