gnu: texlive-latex-tabulary -> texlive-tabulary.

* gnu/packages/tex.scm (texlive-tabulary): New variable.
(texlive-latex-tabulary): Deprecate variable.
* gnu/packages/maths.scm (hypre):
* gnu/packages/sphinx.scm (python-sphinx): Use new name.
This commit is contained in:
Nicolas Goaziou 2023-05-14 10:25:12 +02:00
parent f9f02c5d47
commit c81b4d6002
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D
3 changed files with 16 additions and 13 deletions

View file

@ -5812,7 +5812,7 @@ (define-public hypre
texlive-newunicodechar texlive-newunicodechar
texlive-parskip texlive-parskip
texlive-stackengine texlive-stackengine
texlive-latex-tabulary texlive-tabulary
texlive-tocloft texlive-tocloft
texlive-upquote texlive-upquote
texlive-latex-varwidth texlive-latex-varwidth

View file

@ -125,7 +125,7 @@ (define-public python-sphinx
texlive-latex-needspace texlive-latex-needspace
texlive-parskip texlive-parskip
texlive-latex-preview texlive-latex-preview
texlive-latex-tabulary texlive-tabulary
texlive-titlesec texlive-titlesec
texlive-tools ;multicol, longtable texlive-tools ;multicol, longtable
texlive-upquote texlive-upquote

View file

@ -7655,20 +7655,21 @@ (define-public texlive-subfigure
(define-deprecated-package texlive-latex-subfigure texlive-subfigure) (define-deprecated-package texlive-latex-subfigure texlive-subfigure)
(define-public texlive-latex-tabulary (define-public texlive-tabulary
(package (package
(name "texlive-latex-tabulary") (name "texlive-tabulary")
(version (number->string %texlive-revision)) (version (number->string %texlive-revision))
(source (origin (source (texlive-origin
(method svn-fetch) name version
(uri (texlive-ref "latex" "tabulary")) (list "doc/latex/tabulary/" "source/latex/tabulary/"
(file-name (string-append name "-" version "-checkout")) "tex/latex/tabulary/")
(sha256 (base32
(base32 "00afi9r5264rhfy5kg73fk763i7wm6bvzkmrlg7n17fwl6hx0sa1")))
"1adkdx2zkk42g82nqf57lv1nc1z7kwl13jmy8vpcsizsa0xdnx9n")))) (outputs '("out" "doc"))
(build-system texlive-build-system) (build-system texlive-build-system)
(arguments '(#:tex-directory "latex/tabulary")) (propagated-inputs
(home-page "https://www.ctan.org/pkg/tabulary") (list texlive-tools))
(home-page "https://ctan.org/pkg/tabulary")
(synopsis "Tabular with variable width columns balanced") (synopsis "Tabular with variable width columns balanced")
(description (description
"The package defines a @code{tabular*}-like environment, @code{tabulary}, "The package defines a @code{tabular*}-like environment, @code{tabulary},
@ -7680,6 +7681,8 @@ (define-public texlive-latex-tabulary
according to the natural width of the widest cell in the column.") according to the natural width of the widest cell in the column.")
(license license:lppl))) (license license:lppl)))
(define-deprecated-package texlive-latex-tabulary texlive-tabulary)
(define-public texlive-latex-threeparttable (define-public texlive-latex-threeparttable
(package (package
(name "texlive-latex-threeparttable") (name "texlive-latex-threeparttable")