gnu: Remove emacs-seq package.

It is included with emacs and installing it alongside emacs 27 causes issues.

Fixes <https://bugs.gnu.org/43138>.

* gnu/packages/emacs-xyz.scm (emacs-bugs-hunter)[propagated-inputs]: Remove.
(emacs-erc-status-sidebar)[propagated-inputs]: Remove.
(emacs-psc-ide)[propagated-inputs]: Remove emacs-seq.
(emacs-biblio)[propagated-inputs]: Remove emacs-seq.
(emacs-seq): Delete variable.
(emacs-flycheck-haskell)[propagated-inputs]: Remove emacs-seq.
This commit is contained in:
Pierre Langlois 2020-08-31 17:05:58 +01:00
parent 743be81341
commit 852ae64e11
No known key found for this signature in database
GPG key ID: A8FC9E447F4F7D54

View file

@ -1313,8 +1313,6 @@ (define-public emacs-bug-hunter
(base32 (base32
"134fj493sdn93pyyac8rpz1fzahzmayvphsrmqp3wvgysmfqm38l")))) "134fj493sdn93pyyac8rpz1fzahzmayvphsrmqp3wvgysmfqm38l"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs
`(("emacs-seq" ,emacs-seq)))
(home-page "https://github.com/Malabarba/elisp-bug-hunter") (home-page "https://github.com/Malabarba/elisp-bug-hunter")
(synopsis "Hunt down errors by bisecting elisp files") (synopsis "Hunt down errors by bisecting elisp files")
(description (description
@ -3523,7 +3521,6 @@ (define-public emacs-erc-status-sidebar
(sha256 (sha256
(base32 "1hwlhzgx03z8891sblz56zdp8zj0izh72kxykgcnz5rrkyc3vfi3")))) (base32 "1hwlhzgx03z8891sblz56zdp8zj0izh72kxykgcnz5rrkyc3vfi3"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs `(("emacs-seq" ,emacs-seq)))
(home-page "https://github.com/drewbarbs/erc-status-sidebar") (home-page "https://github.com/drewbarbs/erc-status-sidebar")
(synopsis "Hexchat-like activity overview for ERC channels") (synopsis "Hexchat-like activity overview for ERC channels")
(description (description
@ -13600,8 +13597,7 @@ (define-public emacs-psc-ide
("emacs-dash" ,emacs-dash) ("emacs-dash" ,emacs-dash)
("emacs-flycheck" ,emacs-flycheck) ("emacs-flycheck" ,emacs-flycheck)
("emacs-let-alist" ,emacs-let-alist) ("emacs-let-alist" ,emacs-let-alist)
("emacs-s" ,emacs-s) ("emacs-s" ,emacs-s)))
("emacs-seq" ,emacs-seq)))
(home-page "https://github.com/purescript-emacs/psc-ide-emacs") (home-page "https://github.com/purescript-emacs/psc-ide-emacs")
(synopsis "Emacs integration for PureScript's psc-ide tool") (synopsis "Emacs integration for PureScript's psc-ide tool")
(description (description
@ -14361,8 +14357,7 @@ (define-public emacs-biblio
(base32 "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz")))) (base32 "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-seq" ,emacs-seq) `(("emacs-dash" ,emacs-dash)
("emacs-dash" ,emacs-dash)
("emacs-let-alist" ,emacs-let-alist))) ("emacs-let-alist" ,emacs-let-alist)))
(home-page "https://github.com/cpitclaudel/biblio.el") (home-page "https://github.com/cpitclaudel/biblio.el")
(synopsis "Browse and import bibliographic references") (synopsis "Browse and import bibliographic references")
@ -14770,24 +14765,6 @@ (define-public emacs-npm-mode
"@code{npm-mode} provides a minor mode to work with @code{npm} projects.") "@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-seq
(package
(name "emacs-seq")
(version "2.20")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/seq-" version ".tar"))
(sha256
(base32
"0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
(build-system emacs-build-system)
(home-page "https://elpa.gnu.org/packages/seq.html")
(synopsis "Sequence manipulation functions")
(description "Sequence-manipulation functions that complement basic
functions provided by @file{subr.el}.")
(license license:gpl3+)))
(define-public emacs-itail (define-public emacs-itail
(let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888") (let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
(revision "1")) (revision "1"))
@ -20498,7 +20475,6 @@ (define-public emacs-flycheck-haskell
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-dash" ,emacs-dash) `(("emacs-dash" ,emacs-dash)
("emacs-seq" ,emacs-seq)
("emacs-flycheck" ,emacs-flycheck) ("emacs-flycheck" ,emacs-flycheck)
("emacs-haskell-mode" ,emacs-haskell-mode) ("emacs-haskell-mode" ,emacs-haskell-mode)
("emacs-let-alist" ,emacs-let-alist))) ("emacs-let-alist" ,emacs-let-alist)))