gnu: emacs-esup: Fix build.
* gnu/packages/emacs-xyz.scm (emacs-esup): Update to 0.7.1-1.0de8af8. [native-inputs]: Add "emacs-buttercup" and "emacs-undercover", remove "emacs-el-mock". [propagated-inputs]: Add "emacs-dash". [arguments]: Fix testing.
This commit is contained in:
parent
913faed8ba
commit
327f6aec55
1 changed files with 29 additions and 29 deletions
|
@ -15035,36 +15035,36 @@ macro takes a first argument (whose value must be an alist) and a body.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-esup
|
(define-public emacs-esup
|
||||||
(package
|
(let ((commit "0de8af8233d9ce1b67f05a50f25c481c4f1118d8")
|
||||||
(name "emacs-esup")
|
(revision "1"))
|
||||||
(version "0.7")
|
(package
|
||||||
(source
|
(name "emacs-esup")
|
||||||
(origin
|
(version (git-version "0.7.1" revision commit))
|
||||||
(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
|
"01khb3xyj0ylwib6ryzzvqmkh5wvzxiq2n3l0s3h9zv7wx849bzv"))))
|
||||||
`(("emacs-noflet" ,emacs-noflet)
|
(build-system emacs-build-system)
|
||||||
("emacs-el-mock" ,emacs-el-mock)))
|
(native-inputs
|
||||||
(arguments
|
`(("emacs-noflet" ,emacs-noflet)
|
||||||
`(#:phases
|
("emacs-undercover" ,emacs-undercover)
|
||||||
(modify-phases %standard-phases
|
("emacs-buttercup" ,emacs-buttercup)))
|
||||||
(add-before 'install 'check
|
(propagated-inputs
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
`(("emacs-dash" ,emacs-dash)))
|
||||||
(invoke "emacs" "--batch" "-L" "."
|
(arguments
|
||||||
"-l" "test/esup-test.el"
|
`(#:tests? #t
|
||||||
"-f" "ert-run-tests-batch-and-exit"))))))
|
#:test-command '("buttercup" "-L" ".")))
|
||||||
(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")
|
||||||
|
|
Reference in a new issue