gnu: emacs-debbugs: Update to 0.44.

This new version preserves the subject lines in replies containing [PATCH], to
ease code review.

* gnu/packages/emacs-xyz.scm (emacs-debbugs): Update to 0.44.
[arguments] <#:phases>: New argument.

Change-Id: Ie3340a8c667c1c82ab5136db8ffe6578e092e7dd
This commit is contained in:
Maxim Cournoyer 2025-03-08 22:59:00 +09:00
parent 9ca221a000
commit d45c53d5c0
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -10232,18 +10232,25 @@ by a query, so both a link can refer to several mails.")
(define-public emacs-debbugs (define-public emacs-debbugs
(package (package
(name "emacs-debbugs") (name "emacs-debbugs")
(version "0.43") (version "0.44")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/debbugs-" (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
version ".tar")) version ".tar"))
(sha256 (sha256
(base32 "1jzdr7bp48incg1bdnq4s1ldnyp6hncz0mydy0bizk3c68chsls5")))) (base32 "02kb24rscbhs4w6xknf5d6l1cicy99b0004hr20pkki6faapzpx2"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$"))) (arguments
(propagated-inputs (list
(list emacs-soap-client)) #:include #~(list "\\.el$" "\\.wsdl$" "\\.info$")
#:phases #~(modify-phases %standard-phases
(add-before 'check 'add-test-dir-to-emacs-load-path
(lambda _
(setenv "EMACSLOADPATH"
(string-append (getcwd) "/test:"
(getenv "EMACSLOADPATH"))))))))
(propagated-inputs (list emacs-soap-client))
(home-page "https://elpa.gnu.org/packages/debbugs.html") (home-page "https://elpa.gnu.org/packages/debbugs.html")
(synopsis "Access the Debbugs bug tracker in Emacs") (synopsis "Access the Debbugs bug tracker in Emacs")
(description (description