mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 09:16:31 +01:00
gnu: cl-pathname-utils: Update to 1.1.0-2.13189c0.
* gnu/packages/lisp-xyz.scm (sbcl-pathname-utils): Update to 1.1.0-2.13189c0. [inputs]: Add sbcl-trivial-features. (ecl-pathname-utils): Disable tests. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
c2f1ebc770
commit
8db1fe3f9f
1 changed files with 19 additions and 5 deletions
|
@ -18525,8 +18525,8 @@ (define-public cl-clip
|
||||||
(sbcl-package->cl-source-package sbcl-clip))
|
(sbcl-package->cl-source-package sbcl-clip))
|
||||||
|
|
||||||
(define-public sbcl-pathname-utils
|
(define-public sbcl-pathname-utils
|
||||||
(let ((commit "70f517e44e13a38e0c8f296613236376d679fa8f")
|
(let ((commit "13189c08f2480802a6cba207304c2e0cfdc57f47")
|
||||||
(revision "1"))
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "sbcl-pathname-utils")
|
(name "sbcl-pathname-utils")
|
||||||
(version (git-version "1.1.0" revision commit))
|
(version (git-version "1.1.0" revision commit))
|
||||||
|
@ -18536,12 +18536,14 @@ (define-public sbcl-pathname-utils
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Shinmera/pathname-utils")
|
(url "https://github.com/Shinmera/pathname-utils")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name "pathname-utils" version))
|
(file-name (git-file-name "cl-pathname-utils" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1zm4bf6gajpgmhr7zwf7600zlaf8fs1fcyzabqsh2ma2crkgqdxq"))))
|
(base32 "0b5pjsrpfw0pmahi1zydzpaa5missg3cxqnyz4k6xwvk8fqscpha"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list sbcl-parachute))
|
(list sbcl-parachute))
|
||||||
|
(inputs
|
||||||
|
(list sbcl-trivial-features))
|
||||||
(home-page "https://shinmera.github.io/pathname-utils/")
|
(home-page "https://shinmera.github.io/pathname-utils/")
|
||||||
(synopsis "Collection of utilities to help with pathname operations")
|
(synopsis "Collection of utilities to help with pathname operations")
|
||||||
(description
|
(description
|
||||||
|
@ -18551,7 +18553,19 @@ (define-public sbcl-pathname-utils
|
||||||
(license license:zlib))))
|
(license license:zlib))))
|
||||||
|
|
||||||
(define-public ecl-pathname-utils
|
(define-public ecl-pathname-utils
|
||||||
(sbcl-package->ecl-package sbcl-pathname-utils))
|
(package
|
||||||
|
(inherit (sbcl-package->ecl-package sbcl-pathname-utils))
|
||||||
|
(arguments
|
||||||
|
`(;; FIXME: It might be an issue in implementation of UIOP for ECL:
|
||||||
|
;;
|
||||||
|
;; Condition of type: TYPE-ERROR
|
||||||
|
;; :HOME is not of type SEQUENCE.
|
||||||
|
;; Available restarts:
|
||||||
|
;; 1. (RESTART-TOPLEVEL) Go back to Top-Level REPL.
|
||||||
|
;; Broken at SI:BYTECODES. [Evaluation of: (MAKE-PATHNAME :DIRECTORY
|
||||||
|
;; '(:ABSOLUTE :HOME))] In: #<process TOP-LEVEL 0x7faa2f991f80>.
|
||||||
|
;;
|
||||||
|
#:tests? #f))))
|
||||||
|
|
||||||
(define-public cl-pathname-utils
|
(define-public cl-pathname-utils
|
||||||
(sbcl-package->cl-source-package sbcl-pathname-utils))
|
(sbcl-package->cl-source-package sbcl-pathname-utils))
|
||||||
|
|
Loading…
Reference in a new issue