GNU bug report logs -
#31036
[PATCH] gnu: Add Emacs dumb-jump
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Thu, 03 May 2018 23:34:04 +0530
with message-id <cu7tvrowr8r.fsf <at> systemreboot.net>
and subject line Re: [bug#31036] [PATCH] gnu: Add Emacs dumb-jump
has caused the debbugs.gnu.org bug report #31036,
regarding [PATCH] gnu: Add Emacs dumb-jump
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
31036: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=31036
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
I added the comment because it makes it clear as to why the "v" is needed in the version.
* gnu/packages/emacs.scm (emacs-dumb-jump): New variable.
---
gnu/packages/emacs.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 7a203ef6e..b4744cfc9 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -7436,3 +7436,37 @@ directories of plain text notes, inspired by Notational Velocity.")
matches\" in the mode line in various search modes. This is an Emacs port of
Anzu.zim.")
(license license:gpl3+)))
+
+;; the version needs to have a v in it because of how the github releases are maintained.
+(define-public emacs-dumb-jump
+(package
+ (name "emacs-dumb-jump")
+ (version "v0.5.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/jacktasia/dumb-jump/archive/"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "07n0xjgpxjpf3vp9gxchkjpydyj0zm166930as0kwiwkhjlsirsf"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-f" ,emacs-f)
+ ("emacs-s" ,emacs-s)
+ ("emacs-dash" ,emacs-dash)
+ ("emacs-popup" ,emacs-popup)))
+ (home-page "https://github.com/jacktasia/dumb-jump")
+ (synopsis
+ "Jump to definition for multiple languages without configuration")
+ (description
+ "Dumb Jump is an Emacs \"jump to definition\" package with support for
+multiple programming languages that favors \"just working\" over speed or
+accuracy. This means minimal -- and ideally zero -- configuration with
+absolutely no stored indexes (TAGS) or persistent background processes. Dumb
+Jump performs best with The Silver Searcher `ag` or ripgrep `rg` installed.
+Dumb Jump requires at least GNU Emacs 24.3.
+")
+ (license license:gpl3+)))
--
2.16.2
[Message part 3 (message/rfc822, inline)]
I have pushed both packages emacs-noflet and emacs-dumb-jump.
You had used the MELPA tarball for emacs-noflet. I replaced that with
the upstream git repo.
As Maxim noted, emacs-dumb-jump tests freeze. I pushed for now, without
the tests. The missing "/bin/sh" problem was solved by setting the SHELL
environment variable.
I made many other small changes. Please look at the pushed commits in
master for more information.
Thanks!
This bug report was last modified 7 years and 13 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.