mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: emacs-slime: Update to 2.28-0.0cc2e73.
* gnu/packages/emacs-xyz.scm (emacs-slime): Update to 2.28-0.0cc2e73. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Change-Id: I6de344de136c7f68a93e6b5e02f6a96b3e3127e5
This commit is contained in:
parent
957d4025c5
commit
d62a613bcf
1 changed files with 60 additions and 57 deletions
|
@ -9919,68 +9919,71 @@ (define-public emacs-tagedit
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-slime
|
(define-public emacs-slime
|
||||||
(package
|
;; Update together with sbcl-slime-swank.
|
||||||
(name "emacs-slime")
|
(let ((commit "0cc2e736112a0bc2a048ef6efd11dd67e3fbf7ad")
|
||||||
(version "2.28")
|
(revision "0"))
|
||||||
(source
|
(package
|
||||||
(origin
|
(name "emacs-slime")
|
||||||
(method git-fetch)
|
(version (git-version "2.28" revision commit))
|
||||||
(uri (git-reference
|
(source
|
||||||
(url "https://github.com/slime/slime")
|
(origin
|
||||||
(commit (string-append "v" version))))
|
(method git-fetch)
|
||||||
(file-name (git-file-name name version))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/slime/slime")
|
||||||
(base32 "1acmm4w1mv1qzpnkgc4wyiilbx8l0dk16sx8wv815ri5ks289rll"))))
|
(commit commit)))
|
||||||
(build-system emacs-build-system)
|
(file-name (git-file-name name version))
|
||||||
(arguments
|
(sha256
|
||||||
(list
|
(base32 "0iq9r4007rrnabj290y79i926x2m4j20j6b0x701pkywz926sn02"))))
|
||||||
#:include #~(cons* "\\.lisp$" "\\.asd$"
|
(build-system emacs-build-system)
|
||||||
"contrib"
|
(arguments
|
||||||
"lib/hyperspec.el"
|
(list
|
||||||
%default-include)
|
#:include #~(cons* "\\.lisp$" "\\.asd$"
|
||||||
#:exclude #~(list "^slime-tests.el" "^contrib/test/"
|
"contrib"
|
||||||
"^contrib/Makefile$" "^contrib/README.md$")
|
"lib/hyperspec.el"
|
||||||
#:phases
|
%default-include)
|
||||||
#~(modify-phases %standard-phases
|
#:exclude #~(list "^slime-tests.el" "^contrib/test/"
|
||||||
(add-before 'install 'configure
|
"^contrib/Makefile$" "^contrib/README.md$")
|
||||||
(lambda* _
|
#:phases
|
||||||
(emacs-substitute-variables "slime.el"
|
#~(modify-phases %standard-phases
|
||||||
("inferior-lisp-program" "sbcl"))))
|
(add-before 'install 'configure
|
||||||
(add-before 'install 'install-doc
|
(lambda* _
|
||||||
(lambda _
|
(emacs-substitute-variables "slime.el"
|
||||||
(let ((info-dir (string-append #$output "/share/info"))
|
("inferior-lisp-program" "sbcl"))))
|
||||||
(doc-dir (string-append #$output "/share/doc/"
|
(add-before 'install 'install-doc
|
||||||
#$name "-" #$version))
|
(lambda _
|
||||||
(doc-files '("doc/slime-refcard.pdf"
|
(let ((info-dir (string-append #$output "/share/info"))
|
||||||
"README.md" "NEWS" "PROBLEMS"
|
(doc-dir (string-append #$output "/share/doc/"
|
||||||
"CONTRIBUTING.md")))
|
#$name "-" #$version))
|
||||||
(with-directory-excursion "doc"
|
(doc-files '("doc/slime-refcard.pdf"
|
||||||
(substitute* "Makefile"
|
"README.md" "NEWS" "PROBLEMS"
|
||||||
(("infodir=/usr/local/info")
|
"CONTRIBUTING.md")))
|
||||||
(string-append "infodir=" info-dir)))
|
(with-directory-excursion "doc"
|
||||||
(invoke "make" "html/index.html")
|
(substitute* "Makefile"
|
||||||
(invoke "make" "slime.info")
|
(("infodir=/usr/local/info")
|
||||||
(install-file "slime.info" info-dir)
|
(string-append "infodir=" info-dir)))
|
||||||
(copy-recursively "html" (string-append doc-dir "/html")))
|
(invoke "make" "html/index.html")
|
||||||
(for-each (lambda (f)
|
(invoke "make" "slime.info")
|
||||||
(install-file f doc-dir)
|
(install-file "slime.info" info-dir)
|
||||||
(delete-file f))
|
(copy-recursively "html" (string-append doc-dir "/html")))
|
||||||
doc-files)
|
(for-each (lambda (f)
|
||||||
(delete-file-recursively "doc")))))))
|
(install-file f doc-dir)
|
||||||
(propagated-inputs
|
(delete-file f))
|
||||||
(list emacs-macrostep))
|
doc-files)
|
||||||
(native-inputs
|
(delete-file-recursively "doc")))))))
|
||||||
(list texinfo))
|
(propagated-inputs
|
||||||
(home-page "https://github.com/slime/slime")
|
(list emacs-macrostep))
|
||||||
(synopsis "Superior Lisp Interaction Mode for Emacs")
|
(native-inputs
|
||||||
(description
|
(list texinfo))
|
||||||
"SLIME extends Emacs with support for interactive programming in
|
(home-page "https://github.com/slime/slime")
|
||||||
|
(synopsis "Superior Lisp Interaction Mode for Emacs")
|
||||||
|
(description
|
||||||
|
"SLIME extends Emacs with support for interactive programming in
|
||||||
Common Lisp. The features are centered around @command{slime-mode},
|
Common Lisp. The features are centered around @command{slime-mode},
|
||||||
an Emacs minor mode that complements the standard @command{lisp-mode}.
|
an Emacs minor mode that complements the standard @command{lisp-mode}.
|
||||||
While lisp-mode supports editing Lisp source files, @command{slime-mode}
|
While lisp-mode supports editing Lisp source files, @command{slime-mode}
|
||||||
adds support for interacting with a running Common Lisp process
|
adds support for interacting with a running Common Lisp process
|
||||||
for compilation, debugging, documentation lookup, and so on.")
|
for compilation, debugging, documentation lookup, and so on.")
|
||||||
(license (list license:gpl2+ license:public-domain))))
|
(license (list license:gpl2+ license:public-domain)))))
|
||||||
|
|
||||||
(define-public emacs-popup
|
(define-public emacs-popup
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue