diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-13 00:02:19 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:10:37 +0200 |
commit | 9828271f046e5909c66af11e09c96215e426b4aa (patch) | |
tree | 1b5a3b945cbe6d9d78c0683c768e4f1df9560bd4 /gnu | |
parent | 88f97c65a1631bae028af408c04429c59c4286cd (diff) | |
download | guix-9828271f046e5909c66af11e09c96215e426b4aa.tar.gz guix-9828271f046e5909c66af11e09c96215e426b4aa.zip |
gnu: texlive-latex-amsrefs -> texlive-amsrefs.
* gnu/packages/tex.scm (texlive-amsrefs): New variable.
(texlive-latex-amsrefs): Deprecate variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d622799c26..c8a7ca24e1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4922,28 +4922,32 @@ TS3. \"Times-like\" Adobe Type 1 versions are provided for both the T3 and the TS3 fonts.") (license license:lppl))) -(define-public texlive-latex-amsrefs +(define-public texlive-amsrefs (package - (name "texlive-latex-amsrefs") + (name "texlive-amsrefs") (version (number->string %texlive-revision)) - (source (origin - (method svn-fetch) - (uri (texlive-ref "latex" "amsrefs")) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "15i4k479dwrpr0kspmm70g1yn4p3dkh0whyzmr93hph9bggnh1i1")))) + (source (texlive-origin + name version + (list "bibtex/bib/amsrefs/" "bibtex/bst/amsrefs/" + "doc/latex/amsrefs/" "source/latex/amsrefs/" + "tex/latex/amsrefs/") + (base32 + "12la66vz5ic6jc1cy96b2zh2fxsbaii9kbs4wrz1ii8v508wdkhv"))) + (outputs '("out" "doc")) (build-system texlive-build-system) - (arguments '(#:tex-directory "latex/amsrefs")) - (home-page "https://www.ctan.org/pkg/amsrefs") + (propagated-inputs + (list texlive-hyperref texlive-url)) + (home-page "https://ctan.org/pkg/amsrefs") (synopsis "LaTeX-based replacement for BibTeX") (description - "Amsrefs is a LaTeX package for bibliographies that provides an archival -data format similar to the format of BibTeX database files, but adapted to -make direct processing by LaTeX easier. The package can be used either in -conjunction with BibTeX or as a replacement for BibTeX.") + "Amsrefs is a LaTeX package for bibliographies that provides an +archival data format similar to the format of BibTeX database files, but +adapted to make direct processing by LaTeX easier. The package can be used +either in conjunction with BibTeX or as a replacement for BibTeX.") (license license:lppl1.3+))) +(define-deprecated-package texlive-latex-amsrefs texlive-amsrefs) + (define-public texlive-bigfoot (let ((template (simple-texlive-package "texlive-bigfoot" |