[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
37/42: gnu: emacs-tree-inspector: Update to 0.4.
From: |
guix-commits |
Subject: |
37/42: gnu: emacs-tree-inspector: Update to 0.4. |
Date: |
Tue, 3 Oct 2023 16:54:52 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit dfeac7e4776f8d5fe93834b299dd8e51518018e0
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Oct 3 21:37:49 2023 +0200
gnu: emacs-tree-inspector: Update to 0.4.
* gnu/packages/emacs-xyz.scm (emacs-tree-inspector): Update to 0.4.
[arguments]<#:phases>: Require `subr-x' library in order to prevent a test
failure (and probably a run-time failure) when `hash-table-keys' is called.
---
gnu/packages/emacs-xyz.scm | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index de2c2a6ace..105ab44237 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -794,10 +794,10 @@ Common Lisp or Smalltalk, but for Emacs Lisp.")
(license license:gpl3+))))
(define-public emacs-tree-inspector
- (let ((commit "495ef1874fba9d75842087f4acf0ebd75cf09e97"))
+ (let ((commit "bbb8d2dfe84fbf857fcc1579de5a1324b09a877e"))
(package
(name "emacs-tree-inspector")
- (version "0.3")
+ (version "0.4")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -806,7 +806,7 @@ Common Lisp or Smalltalk, but for Emacs Lisp.")
(file-name (git-file-name name version))
(sha256
(base32
- "011pk5gr2j9m4qnv70qz63bh58ga72nqahv0zkf2qpbr2a5df09c"))))
+ "01ad4r97hfr9nndbifyggscb5108y7h2qm95jsmh5b9qgzqm39nx"))))
(build-system emacs-build-system)
(arguments
(list
@@ -814,7 +814,17 @@ Common Lisp or Smalltalk, but for Emacs Lisp.")
#:test-command #~(list "emacs" "-Q" "--batch"
"-L" "."
"-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-after 'unpack 'fix-library-loading
+ ;; The library calls `hash-table-keys', which is not
+ ;; auto-loaded. Explicitly require `subr-x', where it is
+ ;; defined.
+ (lambda _
+ (substitute* "tree-inspector.el"
+ (("\\(require 'cl-lib\\)" line)
+ (string-append line "(require 'subr-x)"))))))))
(propagated-inputs (list emacs-treeview))
(home-page "https://github.com/mmontone/emacs-tree-inspector")
(synopsis "Inspection tool for Emacs Lisp objects that uses a tree view")
- 24/42: gnu: emacs-inf-ruby: Update to 2.8.0., (continued)
- 24/42: gnu: emacs-inf-ruby: Update to 2.8.0., guix-commits, 2023/10/03
- 26/42: gnu: emacs-jinx: Update to 0.9., guix-commits, 2023/10/03
- 31/42: gnu: emacs-org-re-reveal: Update to 3.23.0., guix-commits, 2023/10/03
- 11/42: gnu: emacs-bm: Run tests., guix-commits, 2023/10/03
- 17/42: gnu: emacs-ebuild-mode: Update to 1.67., guix-commits, 2023/10/03
- 27/42: gnu: emacs-logview: Update to 0.17.1., guix-commits, 2023/10/03
- 28/42: gnu: emacs-mct: Update to 1.0.0., guix-commits, 2023/10/03
- 32/42: gnu: emacs-org-super-agenda: Update to 1.3., guix-commits, 2023/10/03
- 33/42: gnu: emacs-org-super-agenda: Run tests., guix-commits, 2023/10/03
- 36/42: gnu: emacs-pg: Update to 0.24., guix-commits, 2023/10/03
- 37/42: gnu: emacs-tree-inspector: Update to 0.4.,
guix-commits <=
- 15/42: gnu: emacs-dracula-theme: Update to 1.8.1., guix-commits, 2023/10/03
- 14/42: gnu: emacs-datetime: Update to 0.9.1., guix-commits, 2023/10/03
- 39/42: gnu: emacs-yaml: Update to 0.5.4., guix-commits, 2023/10/03
- 19/42: gnu: emacs-embark: Update to 0.23., guix-commits, 2023/10/03
- 22/42: gnu: emacs-fountain-mode: Update to 3.6.3., guix-commits, 2023/10/03
- 34/42: gnu: emacs-org-super-agenda: Use G-expressions., guix-commits, 2023/10/03
- 35/42: gnu: emacs-parseedn: Update to 1.2.0., guix-commits, 2023/10/03
- 38/42: gnu: emacs-web-mode: Update to 17.3.13., guix-commits, 2023/10/03
- 29/42: gnu: emacs-modus-themes: Update to 4.3.0., guix-commits, 2023/10/03
- 40/42: gnu: emacs-yeetube: Update to 2.0.4., guix-commits, 2023/10/03