gnu: emacs-memoize: Update to 1.1.
* gnu/packages/emacs.scm (emacs-memoize): Update to 1.1. Re-indent. [source]: Switch to release tarball. [arguments]: Remove "-l" "memoize.el" from #:test-command.
This commit is contained in:
parent
bf5c74e713
commit
1848cdfb7d
|
@ -5170,30 +5170,29 @@ Yasnippet.")
|
||||||
|
|
||||||
(define-public emacs-memoize
|
(define-public emacs-memoize
|
||||||
(package
|
(package
|
||||||
(name "emacs-memoize")
|
(name "emacs-memoize")
|
||||||
(version "20130421.b55eab0")
|
(version "1.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append
|
||||||
(url "https://github.com/skeeto/emacs-memoize")
|
"https://github.com/skeeto/emacs-memoize/archive/"
|
||||||
(commit "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75")))
|
version ".tar.gz"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"))))
|
"05ijgwi4ymxx31vpjm2pn356j85cykknajn14lrzz8pn5sh0vrg4"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #t
|
`(#:tests? #t
|
||||||
#:test-command '("emacs" "-batch"
|
#:test-command '("emacs" "--batch"
|
||||||
"-l" "memoize.el"
|
"-l" "memoize-test.el"
|
||||||
"-l" "memoize-test.el"
|
"-f" "ert-run-tests-batch-and-exit")))
|
||||||
"-f" "ert-run-tests-batch-and-exit")))
|
(home-page "https://github.com/skeeto/emacs-memoize")
|
||||||
(home-page "https://github.com/skeeto/emacs-memoize")
|
(synopsis "Emacs lisp memoization library")
|
||||||
(synopsis "Emacs lisp memoization library")
|
(description "@code{emacs-memoize} is an Emacs library for
|
||||||
(description "@code{emacs-memoize} is an Emacs library for
|
|
||||||
memoizing functions.")
|
memoizing functions.")
|
||||||
(license license:unlicense)))
|
(license license:unlicense)))
|
||||||
|
|
||||||
(define-public emacs-linum-relative
|
(define-public emacs-linum-relative
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue