gnu: emacs-inspector: Update to 0.28.

* gnu/packages/emacs-xyz.scm (emacs-inspector): Update to 0.28.
[arguments]<#:phases>: Remove unnecessary phase.
This commit is contained in:
Nicolas Goaziou 2023-03-15 23:39:13 +01:00
parent c261638e85
commit b6b8d032c1
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -670,10 +670,10 @@ (define-public emacs-telephone-line
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-inspector (define-public emacs-inspector
(let ((commit "0cc5ff76c4aa9a203a9a142552c8dcc610b8cc24")) ;version bump (let ((commit "0b2cf2f00a827f06bda717da8250eafec4108fb3")) ;version bump
(package (package
(name "emacs-inspector") (name "emacs-inspector")
(version "0.24") (version "0.28")
(source (source
(origin (origin
(uri (git-reference (uri (git-reference
@ -681,7 +681,7 @@ (define-public emacs-inspector
(commit commit))) (commit commit)))
(method git-fetch) (method git-fetch)
(sha256 (sha256
(base32 "1bj3mp95grnazskprzhl91zlqqqn3dww1fgp9nhjvr8zbvxhn9yj")) (base32 "1l5dwcacz9y3qrsg8xjycr835vjjfssbzzx2nns91hyssb10hmkx"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments (arguments
@ -691,14 +691,7 @@ (define-public emacs-inspector
"-L" "." "-L" "."
"-l" "inspector-tests.el" "-l" "inspector-tests.el"
"-l" "tree-inspector-tests.el" "-l" "tree-inspector-tests.el"
"-f" "ert-run-tests-batch-and-exit") "-f" "ert-run-tests-batch-and-exit")))
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'fix-failing-tests
(lambda _
(substitute* "inspector-tests.el"
(("\\(ert-deftest inspector-tests--inspector-inspect-defun-complicated-assoc.*" all)
(string-append all " (skip-unless nil)"))))))))
(propagated-inputs (list emacs-treeview)) (propagated-inputs (list emacs-treeview))
(home-page "https://github.com/mmontone/emacs-inspector") (home-page "https://github.com/mmontone/emacs-inspector")
(synopsis "Inspection tool for Emacs Lisp objects") (synopsis "Inspection tool for Emacs Lisp objects")