gnu: cl-xmls: Update to 3.2.0.

* gnu/packages/lisp-xyz.scm (sbcl-xmls): Update to 3.2.0.
  [version]: Use the latest upstream tag over commit.
  (ecl-xmls): Enable tests.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
jgart 2022-11-04 23:04:44 +00:00 committed by Guillaume Le Vaillant
parent 646a465306
commit 2211f50ec1
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -13463,41 +13463,33 @@ (define-public ecl-lambda-fiddle
(sbcl-package->ecl-package sbcl-lambda-fiddle))
(define-public sbcl-xmls
(let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
(revision "1"))
(package
(name "sbcl-xmls")
(version (git-version "3.0.2" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rpgoldman/xmls")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
(native-inputs
(list sbcl-fiveam))
(build-system asdf-build-system/sbcl)
(home-page "https://github.com/rpgoldman/xmls")
(synopsis "Non-validating XML parser for Common Lisp")
(description "Xmls is a self-contained, easily embedded parser that
(package
(name "sbcl-xmls")
(version "3.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rpgoldman/xmls")
(commit version)))
(file-name (git-file-name "cl-xmls" version))
(sha256
(base32 "10406sgap9kdaip7blxldnv6kabiczd6890jgic4pacsrfx6jypk"))))
(native-inputs
(list sbcl-fiveam))
(build-system asdf-build-system/sbcl)
(home-page "https://github.com/rpgoldman/xmls")
(synopsis "Non-validating XML parser for Common Lisp")
(description "Xmls is a self-contained, easily embedded parser that
recognizes a useful subset of the XML spec. It provides a simple mapping from
XML to Lisp structures or s-expressions and back.")
(license license:bsd-2))))
(license license:bsd-2)))
(define-public cl-xmls
(sbcl-package->cl-source-package sbcl-xmls))
(define-public ecl-xmls
(let ((pkg (sbcl-package->ecl-package sbcl-xmls)))
(package
(inherit pkg)
(arguments
(substitute-keyword-arguments (package-arguments pkg)
;; Upstream doesn't have a test suite adapted for ECL.
((#:tests? _ #f) #f))))))
(sbcl-package->ecl-package sbcl-xmls))
(define-public sbcl-geco
(let ((commit "db13c9384491092975f46f6a837ccdc04681a93a")