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:
Oleg Pykhalov 2020-08-15 08:09:25 +03:00
parent 0d0c51857b
commit 1a27596230
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -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") (package
(revision "1")) (name "emacs-esup")
(package (version "0.7")
(name "emacs-esup") (source
(version (string-append "0.6" "-" revision "." (origin
(string-take commit 7))) (method git-fetch)
(source (uri (git-reference
(origin (url "https://github.com/jschaf/esup")
(method git-fetch) (commit (string-append "v" version))))
(uri (git-reference (file-name (git-file-name name version))
(url "https://github.com/jschaf/esup") (sha256
(commit commit))) (base32
(file-name (git-file-name name version)) "100w28n3qb3s5b18vvqpwmijdjnjazawn38i0pjbpxz5llhqgl1g"))))
(sha256 (build-system emacs-build-system)
(base32 (native-inputs
"04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv")))) `(("emacs-noflet" ,emacs-noflet)
;; TODO: Add tests ("emacs-el-mock" ,emacs-el-mock)))
(build-system emacs-build-system) (arguments
(home-page "https://github.com/jschaf/esup") `(#:phases
(synopsis "Emacs start up profiler") (modify-phases %standard-phases
(description "Benchmark Emacs Startup time without ever leaving (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")
(synopsis "Emacs start up profiler")
(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")