gnu: emacs-citeproc-el: Rename package to emacs-citeproc.

* gnu/packages/emacs-xyz.scm (emacs-citeproc-el): Define in terms of
'deprecated-package'.
(emacs-citeproc): New variable, formerly known as
"emacs-citeproc-el". Run guix style.
(emacs-citar, emacs-org-ref, emacs-ox-hugo): Use emacs-citeproc.

Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Nicolas Graves 2025-05-18 10:16:27 +02:00 committed by Liliana Marie Prikler
parent 76a27ab879
commit bb8772b75c
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -5838,9 +5838,9 @@ Its features are:
;; Software is dual-licensed.
(license (list license:unlicense license:wtfpl2))))
(define-public emacs-citeproc-el
(define-public emacs-citeproc
(package
(name "emacs-citeproc-el")
(name "emacs-citeproc")
(version "0.9.4")
(source
(origin
@ -5853,16 +5853,16 @@ Its features are:
(base32 "1l74c2f2xjzsp3i331sw3db4fhbvdbwyd856j1ygldwrh4rli9ml"))))
(build-system emacs-build-system)
(arguments
(list #:emacs emacs ;need libxml support
#:tests? #f)) ;tests require missing data
(propagated-inputs
(list emacs-compat
emacs-dash
emacs-f
emacs-parsebib
emacs-queue
emacs-s
emacs-string-inflection))
(list
#:emacs emacs ;need libxml support
#:tests? #f)) ;tests require missing data
(propagated-inputs (list emacs-compat
emacs-dash
emacs-f
emacs-parsebib
emacs-queue
emacs-s
emacs-string-inflection))
(home-page "https://github.com/andras-simonyi/citeproc-el")
(synopsis "Citation Style Language (CSL) processor for Emacs")
(description
@ -5872,6 +5872,9 @@ Language (CSL), an XML-based, open format to describe the formatting
of bibliographic references.")
(license license:gpl3+)))
(define-deprecated/public emacs-citeproc-el emacs-citeproc
(deprecated-package "emacs-citeproc-el" emacs-citeproc))
(define-public emacs-corfu
(package
(name "emacs-corfu")
@ -27085,7 +27088,7 @@ automatically fetched from well-curated sources, and formatted as BibTeX.")
(lambda _
(setenv "HOME" "/tmp"))))))
(propagated-inputs (list emacs-auctex
emacs-citeproc-el
emacs-citeproc
emacs-embark
emacs-org
emacs-parsebib
@ -28546,7 +28549,7 @@ their meaning for the current Emacs major-mode.")
" (skip-unless (libxml-available-p))"))))))))
(propagated-inputs
(list emacs-avy
emacs-citeproc-el
emacs-citeproc
emacs-dash
emacs-f
emacs-helm-bibtex
@ -37818,7 +37821,7 @@ producing output appropriate for Haunt's @code{html-reader}.")
(propagated-inputs
(list emacs-tomelr))
(native-inputs (list emacs-toc-org
emacs-citeproc-el
emacs-citeproc
emacs-org-ref
emacs-org))
(home-page "https://ox-hugo.scripter.co")