mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: emacs-org-ref: Update to 5bb9be2232db72b04754d7e4c02a3976ad422f6f.
* gnu/packages/emacs-xyz.scm (emacs-org-ref): Update to 5bb9be2232db72b04754d7e4c02a3976ad422f6f. [version]: Use `git-version'. [propagated-inputs]: Add "emacs-htmlize". Sort alphabetically. [description]: Expound it.
This commit is contained in:
parent
c773c89fbb
commit
11ecc5e5be
1 changed files with 27 additions and 16 deletions
|
@ -14161,12 +14161,12 @@ (define-public emacs-discover-my-major
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-org-ref
|
(define-public emacs-org-ref
|
||||||
(let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
|
;; No release since June 2017.
|
||||||
(revision "1"))
|
(let ((commit "5bb9be2232db72b04754d7e4c02a3976ad422f6f")
|
||||||
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-org-ref")
|
(name "emacs-org-ref")
|
||||||
(version (string-append "1.1.1" "-" revision "."
|
(version (git-version "1.1.1" revision commit))
|
||||||
(string-take commit 7)))
|
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -14175,29 +14175,40 @@ (define-public emacs-org-ref
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "15gcvbfj19kyv4nxa632b261dwhb26m99plq230qhv9ssfwfgxbx"))))
|
||||||
"1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-dash" ,emacs-dash)
|
`(("emacs-dash" ,emacs-dash)
|
||||||
|
("emacs-f" ,emacs-f)
|
||||||
("emacs-helm" ,emacs-helm)
|
("emacs-helm" ,emacs-helm)
|
||||||
("emacs-helm-bibtex" ,emacs-helm-bibtex)
|
("emacs-helm-bibtex" ,emacs-helm-bibtex)
|
||||||
("emacs-ivy" ,emacs-ivy)
|
("emacs-htmlize" ,emacs-htmlize)
|
||||||
("emacs-hydra" ,emacs-hydra)
|
("emacs-hydra" ,emacs-hydra)
|
||||||
|
("emacs-ivy" ,emacs-ivy)
|
||||||
("emacs-key-chord" ,emacs-key-chord)
|
("emacs-key-chord" ,emacs-key-chord)
|
||||||
("emacs-s" ,emacs-s)
|
("emacs-pdf-tools" ,emacs-pdf-tools)
|
||||||
("emacs-f" ,emacs-f)
|
("emacs-s" ,emacs-s)))
|
||||||
("emacs-pdf-tools" ,emacs-pdf-tools)))
|
|
||||||
(home-page "https://github.com/jkitchin/org-ref")
|
(home-page "https://github.com/jkitchin/org-ref")
|
||||||
(synopsis "Citations, cross-references and bibliographies in org-mode")
|
(synopsis "Citations, cross-references and bibliographies in Org mode")
|
||||||
(description
|
(description
|
||||||
"Lisp code to setup bibliography, cite, ref and label org-mode links.
|
"Org Ref is an Emacs library that provides rich support for citations,
|
||||||
Also sets up reftex and helm for org-mode citations. The links are
|
labels and cross-references in Org mode.
|
||||||
clickable and do things that are useful.
|
|
||||||
|
|
||||||
The default setup uses helm-bibtex.
|
The basic idea of Org Ref is that it defines a convenient interface to insert
|
||||||
|
citations from a reference database (e.g., from BibTeX files), and a set of
|
||||||
|
functional Org links for citations, cross-references and labels that export
|
||||||
|
properly to LaTeX, and that provide clickable functionality to the user. Org
|
||||||
|
Ref interfaces with Helm BibTeX to facilitate citation entry, and it can also
|
||||||
|
use RefTeX.
|
||||||
|
|
||||||
You should really read org-ref.org in this package for details.")
|
It also provides a fairly large number of utilities for finding bad citations,
|
||||||
|
extracting BibTeX entries from citations in an Org file, and functions to
|
||||||
|
create and modify BibTeX entries from a variety of sources, most notably from
|
||||||
|
a DOI.
|
||||||
|
|
||||||
|
Org Ref is especially suitable for Org documents destined for LaTeX export and
|
||||||
|
scientific publication. Org Ref is also useful for research documents and
|
||||||
|
notes.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
;; This project is unmaintained. Please use emacs-org-re-reveal instead.
|
;; This project is unmaintained. Please use emacs-org-re-reveal instead.
|
||||||
|
|
Loading…
Reference in a new issue