mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: emacs-esup: Update to 0.7.
* gnu/packages/emacs-xyz.scm (emacs-esup): Update to 0.7. [arguments]: Add check phase after install.
This commit is contained in:
parent
0d0c51857b
commit
1a27596230
1 changed files with 29 additions and 22 deletions
|
@ -14887,29 +14887,36 @@ (define-public emacs-let-alist
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-esup
|
(define-public emacs-esup
|
||||||
(let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
(package
|
||||||
(name "emacs-esup")
|
(name "emacs-esup")
|
||||||
(version (string-append "0.6" "-" revision "."
|
(version "0.7")
|
||||||
(string-take commit 7)))
|
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/jschaf/esup")
|
(url "https://github.com/jschaf/esup")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
|
"100w28n3qb3s5b18vvqpwmijdjnjazawn38i0pjbpxz5llhqgl1g"))))
|
||||||
;; TODO: Add tests
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("emacs-noflet" ,emacs-noflet)
|
||||||
|
("emacs-el-mock" ,emacs-el-mock)))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'install 'check
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(invoke "emacs" "--batch" "-L" "."
|
||||||
|
"-l" "test/esup-test.el"
|
||||||
|
"-f" "ert-run-tests-batch-and-exit"))))))
|
||||||
(home-page "https://github.com/jschaf/esup")
|
(home-page "https://github.com/jschaf/esup")
|
||||||
(synopsis "Emacs start up profiler")
|
(synopsis "Emacs start up profiler")
|
||||||
(description "Benchmark Emacs Startup time without ever leaving
|
(description "Benchmark Emacs Startup time without ever leaving
|
||||||
your Emacs.")
|
your Emacs.")
|
||||||
(license license:gpl2+))))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public emacs-restart-emacs
|
(define-public emacs-restart-emacs
|
||||||
(let ((commit "9aa90d3df9e08bc420e1c9845ee3ff568e911bd9")
|
(let ((commit "9aa90d3df9e08bc420e1c9845ee3ff568e911bd9")
|
||||||
|
|
Loading…
Reference in a new issue