gnu: emacs-execline: Fix version string.

* gnu/packages/emacs-xyz.scm (emacs-execline): Use version tag matching commit
chosen.
This commit is contained in:
Nicolas Goaziou 2021-02-18 16:41:21 +01:00
parent a83bc562b2
commit 359e905352
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -26227,32 +26227,30 @@ (define-public emacs-plantuml-mode
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-execline (define-public emacs-execline
(let ((commit "c75dd9b2c54d8e59fc35fd4bd98d8e213948a3f5") (package
(revision "1")) (name "emacs-execline")
(package (version "1.1")
(name "emacs-execline") (source (origin
(version (git-version "0.1" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://gitlab.com/KAction/emacs-execline/")
(uri (git-reference (commit (string-append "v" version))))
(url "https://gitlab.com/KAction/emacs-execline/") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "02q531c9wvdwflhggflnci4a36h2bb90bq25bbhw6i2lvrd9sk55"))))
(base32 (build-system emacs-build-system)
"02q531c9wvdwflhggflnci4a36h2bb90bq25bbhw6i2lvrd9sk55")))) (propagated-inputs
(build-system emacs-build-system) `(("emacs-s" ,emacs-s)))
(propagated-inputs (arguments
`(("emacs-s" ,emacs-s))) `(#:tests? #t
(arguments #:test-command '("emacs" "-Q" "-batch" "-L" "."
`(#:tests? #t "-l" "t/indent.el"
#:test-command '("emacs" "-Q" "-batch" "-L" "." "-f" "ert-run-tests-batch-and-exit")))
"-l" "t/indent.el" (home-page "https://gitlab.com/KAction/emacs-execline/")
"-f" "ert-run-tests-batch-and-exit"))) (synopsis "Major Emacs mode for editing execline scripts")
(home-page "https://gitlab.com/KAction/emacs-execline/") (description
(synopsis "Major Emacs mode for editing execline scripts") "This package provides a major mode for editing execline scripts.
(description
"This package provides a major mode for editing execline scripts.
Features: Features:
@itemize @itemize
@ -26263,7 +26261,7 @@ (define-public emacs-execline
@item Automatic enable of mode in @file{*.exec} files. @item Automatic enable of mode in @file{*.exec} files.
@item Automatic enable of mode in files with @code{execlineb} interpreter. @item Automatic enable of mode in files with @code{execlineb} interpreter.
@end itemize\n") @end itemize\n")
(license license:gpl3+)))) (license license:gpl3+)))
(define-public emacs-shell-pop (define-public emacs-shell-pop
(let ((commit "4b4394037940a890a313d715d203d9ead2d156a6") (let ((commit "4b4394037940a890a313d715d203d9ead2d156a6")