GNU bug report logs -
#31036
[PATCH] gnu: Add Emacs dumb-jump
Previous Next
Full log
Message #8 received at 31036 <at> debbugs.gnu.org (full text, mbox):
Thank you for contributing to Guix! The following are some changes.
> +;; 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"))
We normally include the "v" in the source URI itself, not in the
version. So, you'd end up with the following uri.
(string-append "https://github.com/jacktasia/dumb-jump/archive/v" version ".tar.gz")
> + (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
Downcase TAGS to tags.
> +Jump performs best with The Silver Searcher `ag` or ripgrep `rg` installed.
Please put ag and rg within @command{} -- @command{ag} and @command{rg}.
This package appears to have tests. Could you add a check phase for
running them?
Also, the first line of the commit message should read
gnu: Add emacs-dumb-jump.
not
gnu: Add Emacs dumb-jump.
Could you send an updated patch?
Thanks!
This bug report was last modified 7 years and 12 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.