mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
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:
parent
646a465306
commit
2211f50ec1
1 changed files with 20 additions and 28 deletions
|
@ -13463,41 +13463,33 @@ (define-public ecl-lambda-fiddle
|
||||||
(sbcl-package->ecl-package sbcl-lambda-fiddle))
|
(sbcl-package->ecl-package sbcl-lambda-fiddle))
|
||||||
|
|
||||||
(define-public sbcl-xmls
|
(define-public sbcl-xmls
|
||||||
(let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
|
(package
|
||||||
(revision "1"))
|
(name "sbcl-xmls")
|
||||||
(package
|
(version "3.2.0")
|
||||||
(name "sbcl-xmls")
|
(source
|
||||||
(version (git-version "3.0.2" revision commit))
|
(origin
|
||||||
(source
|
(method git-fetch)
|
||||||
(origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://github.com/rpgoldman/xmls")
|
||||||
(uri (git-reference
|
(commit version)))
|
||||||
(url "https://github.com/rpgoldman/xmls")
|
(file-name (git-file-name "cl-xmls" version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32 "10406sgap9kdaip7blxldnv6kabiczd6890jgic4pacsrfx6jypk"))))
|
||||||
(sha256
|
(native-inputs
|
||||||
(base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
|
(list sbcl-fiveam))
|
||||||
(native-inputs
|
(build-system asdf-build-system/sbcl)
|
||||||
(list sbcl-fiveam))
|
(home-page "https://github.com/rpgoldman/xmls")
|
||||||
(build-system asdf-build-system/sbcl)
|
(synopsis "Non-validating XML parser for Common Lisp")
|
||||||
(home-page "https://github.com/rpgoldman/xmls")
|
(description "Xmls is a self-contained, easily embedded parser that
|
||||||
(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
|
recognizes a useful subset of the XML spec. It provides a simple mapping from
|
||||||
XML to Lisp structures or s-expressions and back.")
|
XML to Lisp structures or s-expressions and back.")
|
||||||
(license license:bsd-2))))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public cl-xmls
|
(define-public cl-xmls
|
||||||
(sbcl-package->cl-source-package sbcl-xmls))
|
(sbcl-package->cl-source-package sbcl-xmls))
|
||||||
|
|
||||||
(define-public ecl-xmls
|
(define-public ecl-xmls
|
||||||
(let ((pkg (sbcl-package->ecl-package sbcl-xmls)))
|
(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))))))
|
|
||||||
|
|
||||||
(define-public sbcl-geco
|
(define-public sbcl-geco
|
||||||
(let ((commit "db13c9384491092975f46f6a837ccdc04681a93a")
|
(let ((commit "db13c9384491092975f46f6a837ccdc04681a93a")
|
||||||
|
|
Loading…
Reference in a new issue