guix_mirror_bot pushed a commit to branch emacs-team in repository guix. commit 23509fa86fd7897f206b54dab382736f35c48829 Author: Nicolas Graves <ngra...@ngraves.fr> AuthorDate: Sun May 18 10:16:27 2025 +0200
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 <i...@retrospec.tv> --- gnu/packages/emacs-xyz.scm | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 48a0dd525a..f7df930e36 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5812,9 +5812,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 @@ -5827,16 +5827,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 @@ -5846,6 +5846,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") @@ -27059,7 +27062,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 @@ -28520,7 +28523,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 @@ -37792,7 +37795,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")