gnu: cl-envy: Update to 26a7faa.
* gnu/packages/lisp-xyz.scm (sbcl-envy): Update to 26a7faa. [native-inputs]: Uncomment test inputs and use new style. [arguments]: Add 'asd-systems' parameter, Remove 'fix-tests' phase. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
24f7c64bb2
commit
b999ce74ba
1 changed files with 10 additions and 17 deletions
|
@ -12135,8 +12135,8 @@ carrys on from the end of the body.")
|
||||||
(sbcl-package->ecl-package sbcl-livesupport))
|
(sbcl-package->ecl-package sbcl-livesupport))
|
||||||
|
|
||||||
(define-public sbcl-envy
|
(define-public sbcl-envy
|
||||||
(let ((commit "956321b2852d58ba71c6fe621f5c2924178e9f88")
|
(let ((commit "26a7faadc981f2a047daa36f715a44faec5dd00c")
|
||||||
(revision "1"))
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "sbcl-envy")
|
(name "sbcl-envy")
|
||||||
(version (git-version "0.1" revision commit))
|
(version (git-version "0.1" revision commit))
|
||||||
|
@ -12145,26 +12145,19 @@ carrys on from the end of the body.")
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url home-page)
|
(url "https://github.com/fukamachi/envy")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name "cl-envy" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "17iwrfxcdinjbb2h6l09qf40s7xkbhrpmnljlwpjy8l8rll8h3vg"))))
|
(base32 "1r0wgimd7z57x8cv69sw76w3y5l70hq50882a9nq5l4v64lg55fq"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
;; (native-inputs ; Only for tests.
|
(native-inputs
|
||||||
;; `(("prove" ,sbcl-prove)
|
(list sbcl-osicat sbcl-prove))
|
||||||
;; ("osicat" ,sbcl-osicat)))
|
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
`(#:asd-systems '("envy-test" "envy")
|
||||||
(modify-phases %standard-phases
|
;; FIXME: Tests fail with
|
||||||
(add-after 'unpack 'fix-tests
|
|
||||||
(lambda _
|
|
||||||
(substitute* "envy-test.asd"
|
|
||||||
(("cl-test-more") "prove"))
|
|
||||||
#t)))
|
|
||||||
;; Tests fail with
|
|
||||||
;; Component ENVY-ASD::ENVY-TEST not found, required by #<SYSTEM "envy">
|
;; Component ENVY-ASD::ENVY-TEST not found, required by #<SYSTEM "envy">
|
||||||
;; like xsubseq. Why?
|
;; https://github.com/fukamachi/envy/issues/10
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(synopsis "Common Lisp configuration switcher inspired by Perl's Config::ENV")
|
(synopsis "Common Lisp configuration switcher inspired by Perl's Config::ENV")
|
||||||
(description "Envy is a configuration manager for various applications.
|
(description "Envy is a configuration manager for various applications.
|
||||||
|
|
Reference in a new issue