1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 11:00:36 +02:00

gnu: emacs-dash: Update to 2.20.0.

Change-Id: I3bea56c283c64c40495120d4fdd0994bb5e329db
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Alexis Praga 2025-05-25 21:36:48 +02:00 committed by Ian Eure
parent 318ad8f173
commit f96412be85
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -6880,26 +6880,27 @@ next matching page.")
(define-public emacs-dash (define-public emacs-dash
(package (package
(name "emacs-dash") (name "emacs-dash")
(version "2.19.1") (version "2.20.0")
(source (origin (source
(method git-fetch) (origin
(uri (git-reference (method git-fetch)
(url "https://github.com/magnars/dash.el") (uri (git-reference
(commit version))) (url "https://github.com/magnars/dash.el")
(file-name (git-file-name name version)) (commit version)))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"0z6f8y1m9amhg427iz1d4xcyr6n0kj5w7kmiz134p320ixsdnzd8")))) (base32 "092kf61bi6dwl42yng69g3y55ni8afycqbpaqx9wzf8frx9myg6m"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments (arguments
(list #:tests? #t (list
#:phases #:tests? #t
#~(modify-phases %standard-phases #:phases
(add-after 'unpack 'disable-byte-compile-error-on-warn #~(modify-phases %standard-phases
(lambda _ (add-after 'unpack 'disable-byte-compile-error-on-warn
(substitute* "Makefile" (lambda _
(("\\(setq byte-compile-error-on-warn t\\)") (substitute* "Makefile"
"(setq byte-compile-error-on-warn nil)"))))))) (("\\(setq byte-compile-error-on-warn t\\)")
"(setq byte-compile-error-on-warn nil)")))))))
(home-page "https://github.com/magnars/dash.el") (home-page "https://github.com/magnars/dash.el")
(synopsis "Modern list library for Emacs") (synopsis "Modern list library for Emacs")
(description "This package provides a modern list API library for Emacs.") (description "This package provides a modern list API library for Emacs.")