gnu: emacs-list-utils: Update to 0.4.6-1.0dec8c0.

* gnu/packages/emacs-xyz.scm (emacs-list-utils):
Update to 0.4.6-1.0dec8c0.
[arguments]: Remove the upstreamed 'patch-require-cl phase.

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
Erik Šabič 2022-05-21 12:01:17 +02:00 committed by Tobias Geerinckx-Rice
parent 1a6be55701
commit c5d68c6d12
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -18731,31 +18731,27 @@ (define-public emacs-helm-gtags
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-list-utils (define-public emacs-list-utils
;; Use a git snapshot until upstream fixes the build with emacs 28.1.
;; See <http://issues.guix.gnu.org/55558>.
(let ((commit "0dec8c02962d2591766739e37c5714ba21133093") (revision "1"))
(package (package
(name "emacs-list-utils") (name "emacs-list-utils")
(version "0.4.6") (version (git-version "0.4.6" revision commit))
(source (source (origin
(origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/rolandwalker/list-utils") (url "https://github.com/rolandwalker/list-utils")
(commit (string-append "v" version)))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "07hbz2md52ccy95gv4d5n6szrfmpfqf3w4kwqdg2cf54c7kgf7hw")))) (base32
"11nm8649a131bn2kwj4fxkiijdx2d4f1byx7a985zlb3bzdwnaw8"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-require-cl
(lambda _
(substitute* "list-utils.el"
(("\\(require 'cl\\)") "(require 'cl-lib)"))
#t)))))
(home-page "https://github.com/rolandwalker/list-utils") (home-page "https://github.com/rolandwalker/list-utils")
(synopsis "List-manipulation utility functions") (synopsis "List-manipulation utility functions")
(description "This package provides a list manipulation library for Emacs.") (description
(license license:gpl3+))) "This package provides a list manipulation library for Emacs.")
(license license:gpl3+))))
(define-public emacs-parsec (define-public emacs-parsec
(package (package