mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 18:09:18 -05:00
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:
parent
f9f02c5d47
commit
c81b4d6002
3 changed files with 16 additions and 13 deletions
|
@ -5812,7 +5812,7 @@ (define-public hypre
|
|||
texlive-newunicodechar
|
||||
texlive-parskip
|
||||
texlive-stackengine
|
||||
texlive-latex-tabulary
|
||||
texlive-tabulary
|
||||
texlive-tocloft
|
||||
texlive-upquote
|
||||
texlive-latex-varwidth
|
||||
|
|
|
@ -125,7 +125,7 @@ (define-public python-sphinx
|
|||
texlive-latex-needspace
|
||||
texlive-parskip
|
||||
texlive-latex-preview
|
||||
texlive-latex-tabulary
|
||||
texlive-tabulary
|
||||
texlive-titlesec
|
||||
texlive-tools ;multicol, longtable
|
||||
texlive-upquote
|
||||
|
|
|
@ -7655,20 +7655,21 @@ (define-public texlive-subfigure
|
|||
|
||||
(define-deprecated-package texlive-latex-subfigure texlive-subfigure)
|
||||
|
||||
(define-public texlive-latex-tabulary
|
||||
(define-public texlive-tabulary
|
||||
(package
|
||||
(name "texlive-latex-tabulary")
|
||||
(name "texlive-tabulary")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (origin
|
||||
(method svn-fetch)
|
||||
(uri (texlive-ref "latex" "tabulary"))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(base32
|
||||
"1adkdx2zkk42g82nqf57lv1nc1z7kwl13jmy8vpcsizsa0xdnx9n"))))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/tabulary/" "source/latex/tabulary/"
|
||||
"tex/latex/tabulary/")
|
||||
(base32
|
||||
"00afi9r5264rhfy5kg73fk763i7wm6bvzkmrlg7n17fwl6hx0sa1")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments '(#:tex-directory "latex/tabulary"))
|
||||
(home-page "https://www.ctan.org/pkg/tabulary")
|
||||
(propagated-inputs
|
||||
(list texlive-tools))
|
||||
(home-page "https://ctan.org/pkg/tabulary")
|
||||
(synopsis "Tabular with variable width columns balanced")
|
||||
(description
|
||||
"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.")
|
||||
(license license:lppl)))
|
||||
|
||||
(define-deprecated-package texlive-latex-tabulary texlive-tabulary)
|
||||
|
||||
(define-public texlive-latex-threeparttable
|
||||
(package
|
||||
(name "texlive-latex-threeparttable")
|
||||
|
|
Loading…
Reference in a new issue