[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/25: gnu: emacs-dape: Update to 0.14.0.
From: |
guix-commits |
Subject: |
20/25: gnu: emacs-dape: Update to 0.14.0. |
Date: |
Sun, 21 Jul 2024 10:40:37 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit f2841228321c81991d59dadcacff38e8aa0aff27
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Jul 21 16:35:27 2024 +0200
gnu: emacs-dape: Update to 0.14.0.
* gnu/packages/emacs-xyz.scm (emacs-dape): Update to 0.14.0.
Change-Id: I262ae61eaaf5a29ae114a058b51da5e1f1f07e8d
---
gnu/packages/emacs-xyz.scm | 90 +++++++++++++++++++++++-----------------------
1 file changed, 44 insertions(+), 46 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 89b22e2f23..a87a909a5e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31513,56 +31513,54 @@ in Docker environment.")
(license license:gpl3+))))
(define-public emacs-dape
- (let ((commit "51fad7df7473778fbc4bac703317de7f7713b307")
- (revision "0"))
- (package
- (name "emacs-dape")
- (version (git-version "0.12.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/svaante/dape")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1jics02b9fxjs0lykiv7z924z18id550mqhf6piqzv0sgan91pg2"))))
- (build-system emacs-build-system)
- (arguments
- ;; FIXME python tests pass, JS tests require additional dependencies
- ;; See https://lists.sr.ht/~abcdw/rde-devel/patches/51878
- (list #:tests? #f
- #:test-command #~'("emacs" "--batch" "-l" "dape.el"
- "-l" "dape-tests.el"
- "-f" "ert-run-tests-batch-and-exit")
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'support-unwrapped-python
- (lambda _
- (substitute* "dape.el"
- (("command \"python\"")
- "command \"python3\""))))
- (add-before 'check 'pre-check
- (lambda* (#:key tests? inputs #:allow-other-keys)
- (if tests?
- (setenv
- "PATH"
- (string-append
- (getenv "PATH")
- ":" (dirname (search-input-file inputs
"/bin/python3"))
- ":" (dirname (search-input-file inputs
"/bin/node"))))
- (format #t "test suite not run~%")))))))
- (native-inputs (list node-lts python-minimal python-debugpy))
- (propagated-inputs (list emacs-jsonrpc))
- (home-page "https://github.com/svaante/dape")
- (synopsis "Debug Adapter Protocol for Emacs")
- (description
- "Dape is a debug adapter client for Emacs. The debug adapter protocol,
+ (package
+ (name "emacs-dape")
+ (version "0.14.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/svaante/dape")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0227i5z9vkr2l9isrlssdwda844jvpcs4i9ryj0cwj6i60jbf1g3"))))
+ (build-system emacs-build-system)
+ (arguments
+ ;; FIXME python tests pass, JS tests require additional dependencies
+ ;; See https://lists.sr.ht/~abcdw/rde-devel/patches/51878
+ (list #:tests? #f
+ #:test-command #~'("emacs" "--batch" "-l" "dape.el"
+ "-l" "dape-tests.el"
+ "-f" "ert-run-tests-batch-and-exit")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'support-unwrapped-python
+ (lambda _
+ (substitute* "dape.el"
+ (("command \"python\"")
+ "command \"python3\""))))
+ (add-before 'check 'pre-check
+ (lambda* (#:key tests? inputs #:allow-other-keys)
+ (if tests?
+ (setenv
+ "PATH"
+ (string-append
+ (getenv "PATH")
+ ":" (dirname (search-input-file inputs
"/bin/python3"))
+ ":" (dirname (search-input-file inputs "/bin/node"))))
+ (format #t "test suite not run~%")))))))
+ (native-inputs (list node-lts python-minimal python-debugpy))
+ (propagated-inputs (list emacs-jsonrpc))
+ (home-page "https://github.com/svaante/dape")
+ (synopsis "Debug Adapter Protocol for Emacs")
+ (description
+ "Dape is a debug adapter client for Emacs. The debug adapter protocol,
much like its more well-known counterpart, the language server protocol,
aims to establish a common API for programming tools. However, instead of
functionalities such as code completions, it provides a standardized
interface for debuggers.")
- (license license:gpl3+))))
+ (license license:gpl3+)))
(define-public emacs-dap-mode
(package
- 12/25: gnu: emacs-which-key: Update to 3.6.1., (continued)
- 12/25: gnu: emacs-which-key: Update to 3.6.1., guix-commits, 2024/07/21
- 07/25: gnu: emacs-transient: Update to 0.7.3., guix-commits, 2024/07/21
- 11/25: gnu: emacs-calibredb: Update to 2.13.0., guix-commits, 2024/07/21
- 13/25: gnu: emacs-org-jira: Update to 4.4.2., guix-commits, 2024/07/21
- 16/25: gnu: emacs-ellama: Update to 0.11.12., guix-commits, 2024/07/21
- 22/25: gnu: emacs-casual-lib: Update to 1.1.1., guix-commits, 2024/07/21
- 23/25: gnu: emacs-casual-dired: Update to 1.7.0., guix-commits, 2024/07/21
- 08/25: gnu: emacs-zmq: Update to 1.0.1., guix-commits, 2024/07/21
- 15/25: gnu: emacs-llm: Appease linter., guix-commits, 2024/07/21
- 25/25: gnu: emacs-casual-avy: Update to 1.4.1., guix-commits, 2024/07/21
- 20/25: gnu: emacs-dape: Update to 0.14.0.,
guix-commits <=
- 14/25: gnu: emacs-llm: Update to 0.17.0., guix-commits, 2024/07/21
- 17/25: gnu: emacs-elfeed-score: Update to 1.2.8., guix-commits, 2024/07/21
- 09/25: gnu: emacs-org-re-reveal: Update to 3.29.1., guix-commits, 2024/07/21
- 10/25: gnu: emacs-empv: Update to 4.4.0., guix-commits, 2024/07/21
- 19/25: gnu: emacs-denote: Update to 3.0.7., guix-commits, 2024/07/21
- 21/25: gnu: emacs-cider: Update to 1.15.1., guix-commits, 2024/07/21
- 24/25: gnu: emacs-casual-dired: Improve synopsis., guix-commits, 2024/07/21
- 18/25: gnu: emacs-ebuild-mode: Update to 1.72., guix-commits, 2024/07/21