diff options
author | Cayetano Santos <csantosb@inventati.org> | 2024-10-27 11:07:15 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-10-27 11:07:15 +0100 |
commit | 0e9a29eda83c8dc26e0c43110fd188376c176fde (patch) | |
tree | 90989f5490dcdcc330ac3a3eb37ebe99ec51b632 /gnu/packages/emacs-xyz.scm | |
parent | d91b7a387a59027bc6ad312f88422d6d564bf1df (diff) | |
download | guix-0e9a29eda83c8dc26e0c43110fd188376c176fde.tar.gz guix-0e9a29eda83c8dc26e0c43110fd188376c176fde.zip |
gnu: emacs-org-ref: Update to 3.1-0.732a20b.
The reason to exclude openalex.el from this package doesn't hold anymore, see
<https://github.com/jkitchin/org-ref/issues/1085>.
Emacs-helm is already pulled from emacs-helm-bibtex, no need to do it here.
Emacs-request is a new hard dependency. Emacs-ivy is not.
* gnu/packages/emacs-xyz.scm (emacs-org-ref): Update to 3.1-0.732a20b.
[arguments]: Remove EMACS-HELM and EMACS-IVY. Add EMACS-REQUEST.
Change-Id: I04f4cb9ffacaaf25a3e844c8e1d1b194e41d90a9
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: I510bf7b74520c0cf7c128b88cb02e975a6df898a
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5f39443da0..9d75334988 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26418,11 +26418,11 @@ their meaning for the current Emacs major-mode.") (license license:gpl3+))) (define-public emacs-org-ref - (let ((commit "bb375f366f883e5b60e3bb625f2acd026811fb55") + (let ((commit "732a20bd236fd02db4a651da29f87f87f458a54a") (revision "0")) (package (name "emacs-org-ref") - (version (git-version "3.0" revision commit)) + (version (git-version "3.1" revision commit)) (source (origin (method git-fetch) @@ -26432,14 +26432,12 @@ their meaning for the current Emacs major-mode.") (file-name (git-file-name name version)) (sha256 (base32 - "01wxcyzdrx6ysv9rjd64fr7kkvm4fjr03ib4mmpchraxxm8g8z43")))) + "1kbjxz56fvln6drd2wqdxrpgwjshzpdbyaq7dz0gn285z93y1knk")))) (build-system emacs-build-system) (arguments (list #:include #~(cons* "org-ref.org" "org-ref.bib" %default-include) #:exclude #~(list - ;; github.com/jkitchin/org-ref/issues/1085 - "openalex.el" ;; author doesn't recommend using it "org-ref-pdf.el"))) (propagated-inputs @@ -26447,13 +26445,12 @@ their meaning for the current Emacs major-mode.") emacs-citeproc-el emacs-dash emacs-f - emacs-helm emacs-helm-bibtex emacs-htmlize emacs-hydra - emacs-ivy emacs-ox-pandoc emacs-parsebib + emacs-request emacs-s)) (home-page "https://github.com/jkitchin/org-ref") (synopsis "Citations, cross-references and bibliographies in Org mode") |