~ruther/guix-local

d45c53d5c019b915bc24075b827feafd390d19fb — Maxim Cournoyer 1 year, 4 months ago 9ca221a
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
1 files changed, 12 insertions(+), 5 deletions(-)

M gnu/packages/emacs-xyz.scm
M gnu/packages/emacs-xyz.scm => gnu/packages/emacs-xyz.scm +12 -5
@@ 10232,18 10232,25 @@ by a query, so both a link can refer to several mails.")
(define-public emacs-debbugs
  (package
    (name "emacs-debbugs")
    (version "0.43")
    (version "0.44")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
                           version ".tar"))
       (sha256
        (base32 "1jzdr7bp48incg1bdnq4s1ldnyp6hncz0mydy0bizk3c68chsls5"))))
        (base32 "02kb24rscbhs4w6xknf5d6l1cicy99b0004hr20pkki6faapzpx2"))))
    (build-system emacs-build-system)
    (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
    (propagated-inputs
     (list emacs-soap-client))
    (arguments
     (list
      #: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")
    (synopsis "Access the Debbugs bug tracker in Emacs")
    (description