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+)))
(define-public emacs-esup
(let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
(revision "1"))
(package
(name "emacs-esup")
(version (string-append "0.6" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jschaf/esup")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
;; TODO: Add tests
(build-system emacs-build-system)
(home-page "https://github.com/jschaf/esup")
(synopsis "Emacs start up profiler")
(description "Benchmark Emacs Startup time without ever leaving
(package
(name "emacs-esup")
(version "0.7")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jschaf/esup")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"100w28n3qb3s5b18vvqpwmijdjnjazawn38i0pjbpxz5llhqgl1g"))))
(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")
(synopsis "Emacs start up profiler")
(description "Benchmark Emacs Startup time without ever leaving
your Emacs.")
(license license:gpl2+))))
(license license:gpl2+)))
(define-public emacs-restart-emacs
(let ((commit "9aa90d3df9e08bc420e1c9845ee3ff568e911bd9")