diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-04 22:41:37 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:10:28 +0200 |
commit | 1a8e352119f1d5a87b43261cfb99841f1c238aba (patch) | |
tree | 1b2537bcbac85b33bc0a8ed5101d759bdc31ae7e /gnu | |
parent | 3476b7438696d81a6d83b4b07362d34eb1b6e981 (diff) | |
download | guix-1a8e352119f1d5a87b43261cfb99841f1c238aba.tar.gz |
gnu: texlive-latex-eqparbox -> texlive-eqparbox.
* gnu/packages/tex.scm (texlive-eqparbox): New variable. (texlive-latex-eqparbox): Deprecate variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index acbc8b7e77..b07fe853d5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4903,20 +4903,22 @@ define a new author interface to creating new environments.") (define-deprecated-package texlive-latex-environ texlive-environ) -(define-public texlive-latex-eqparbox +(define-public texlive-eqparbox (package - (name "texlive-latex-eqparbox") + (name "texlive-eqparbox") (version (number->string %texlive-revision)) - (source (origin - (method svn-fetch) - (uri (texlive-ref "latex" "eqparbox")) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "1ib5xdwcj5wk23wgk41m2hdcjr1dzrs4l3wwnpink9mlapz12wjs")))) + (source (texlive-origin + name version + (list "doc/latex/eqparbox/" + "source/latex/eqparbox/" + "tex/latex/eqparbox/") + (base32 + "16c5dyd4bz45a2c1ppbq05h9ixg15srk5az5pld5gpv4j0zwzrqw"))) + (outputs '("out" "doc")) (build-system texlive-build-system) - (arguments '(#:tex-directory "latex/eqparbox")) - (home-page "https://www.ctan.org/pkg/eqparbox") + (propagated-inputs + (list texlive-environ texlive-tools)) + (home-page "https://ctan.org/pkg/eqparbox") (synopsis "Create equal-widthed parboxes") (description "LaTeX users sometimes need to ensure that two or more blocks of text @@ -4929,7 +4931,9 @@ where they are in the document---will stretch to fit the widest for a variety of alignment purposes, as is evidenced by the examples in @code{eqparbox}'s documentation. Various derivatives of @code{\\eqparbox} are also provided.") - (license license:lppl1.3+))) + (license license:lppl1.3c))) + +(define-deprecated-package texlive-latex-eqparbox texlive-eqparbox) (define-public texlive-latex-etoc (package |