gnu: emacs-stream: Update to 2.2.5.
* gnu/packages/emacs-xyz.scm (emacs-stream): Update to 2.2.5. [source]: Use GNU ELPA repository instead of GitHub. [arguments]: Skip tests, which do not exist on ELPA.
This commit is contained in:
parent
7b32e7bfaf
commit
678248f5ea
1 changed files with 16 additions and 24 deletions
|
@ -9139,31 +9139,23 @@ editing nginx config files.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public emacs-stream
|
(define-public emacs-stream
|
||||||
(let ((commit "a3f3da155a49c133e2692bd8789b35492bfdc4f7")
|
(package
|
||||||
(revision "1"))
|
(name "emacs-stream")
|
||||||
(package
|
(version "2.2.5")
|
||||||
(name "emacs-stream")
|
(source
|
||||||
(version (git-version "2.2.4" revision commit))
|
(origin
|
||||||
(source
|
(method url-fetch)
|
||||||
(origin
|
(uri (string-append "https://elpa.gnu.org/packages/"
|
||||||
(method git-fetch)
|
"stream-" version ".tar"))
|
||||||
(uri (git-reference
|
(file-name (git-file-name name version))
|
||||||
(url "https://github.com/Emacsmirror/stream.git")
|
(sha256
|
||||||
(commit commit)))
|
(base32 "00c3n4gyxzv7vczqms0d62kl8zsmjfyxa92mwxn2snyx857a9jfw"))))
|
||||||
(file-name (git-file-name name version))
|
(build-system emacs-build-system)
|
||||||
(sha256
|
(home-page "http://elpa.gnu.org/packages/stream.html")
|
||||||
(base32 "0aig0yjb9z752ijh0mzildjmh44j051inchga8qll01dr8wf7332"))))
|
(synopsis "Implementation of streams for Emacs")
|
||||||
(build-system emacs-build-system)
|
(description "This library provides an implementation of streams for Emacs.
|
||||||
(arguments
|
|
||||||
`(#:tests? #t
|
|
||||||
#:test-command '("emacs" "--batch"
|
|
||||||
"-l" "tests/stream-tests.el"
|
|
||||||
"-f" "ert-run-tests-batch-and-exit")))
|
|
||||||
(home-page "https://github.com/Emacsmirror/stream")
|
|
||||||
(synopsis "Implementation of streams for Emacs")
|
|
||||||
(description "This library provides an implementation of streams for Emacs.
|
|
||||||
Streams are implemented as delayed evaluation of cons cells.")
|
Streams are implemented as delayed evaluation of cons cells.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-cl-print
|
(define-public emacs-cl-print
|
||||||
(let ((commit "1a70c553dfb04352afb5b8696fe0cef8acc8f991")
|
(let ((commit "1a70c553dfb04352afb5b8696fe0cef8acc8f991")
|
||||||
|
|
Reference in a new issue