me
/
guix
Archived
1
0
Fork 0

gnu: sbcl-cl-base64: Update to 3.3.4.

* gnu/packages/lisp-xyz.scm (sbcl-cl-base64): Update to 3.3.4.
master
Pierre Neidhardt 2020-05-06 14:17:06 +02:00
parent 14620ce775
commit d7043fd9a3
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 25 additions and 28 deletions

View File

@ -3686,37 +3686,34 @@ Rosenberg's CL 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
(let ((version "3.3.3")) (package
(package (name "sbcl-cl-base64")
(name "sbcl-cl-base64") (version "3.3.4")
(version version) (source
(source (origin
(origin (method url-fetch)
(method git-fetch) (uri (string-append "http://files.kpe.io/cl-base64/cl-base64-"
(uri (git-reference version ".tar.gz"))
(url "http://git.kpe.io/cl-base64.git") (sha256
(commit (string-append "v" version)))) (base32 "0pl4zwn5bf18dm8fh1kn1yshaa6kpmfrjyb33z9mq4raqmj3xpv2"))))
(file-name (git-file-name "cl-base64" version)) (build-system asdf-build-system/sbcl)
(sha256 (arguments
(base32 "1dw6j7n6gsd2qa0p0rbsjxj00acxx3i9ca1qkgl0liy8lpnwkypl")))) ;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed
(build-system asdf-build-system/sbcl) ;; in a nested call to ASDF/OPERATE:OPERATE unless identically
(arguments ;; to toplevel
;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed '(#:tests? #f))
;; in a nested call to ASDF/OPERATE:OPERATE unless identically (inputs
;; to toplevel `(("sbcl-ptester" ,sbcl-ptester)
'(#:tests? #f)) ("sbcl-kmrcl" ,sbcl-kmrcl)))
(inputs (home-page "http://files.kpe.io/cl-base64/")
`(("sbcl-ptester" ,sbcl-ptester) (synopsis
("sbcl-kmrcl" ,sbcl-kmrcl))) "Common Lisp package to encode and decode base64 with URI support")
(home-page "http://files.kpe.io/cl-base64/") (description
(synopsis "This package provides highly optimized base64 encoding and decoding.
"Common Lisp package to encode and decode base64 with URI support")
(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))