gnu: texlive-latex-multirow -> texlive-multirow.
* gnu/packages/tex.scm (texlive-multirow): New variable. (texlive-latex-multirow): Deprecate variable. (texlive-metalogo): * gnu/packages/docbook.scm (dblatex): * gnu/packages/maths.scm (hypre): Use new name.
This commit is contained in:
parent
94d0e6c56a
commit
f0a491f717
3 changed files with 20 additions and 17 deletions
|
@ -548,7 +548,7 @@ the in DocBook SGML DTDs.")
|
||||||
texlive-hyperref
|
texlive-hyperref
|
||||||
texlive-jknapltx
|
texlive-jknapltx
|
||||||
texlive-listings
|
texlive-listings
|
||||||
texlive-latex-multirow
|
texlive-multirow
|
||||||
texlive-latex-overpic
|
texlive-latex-overpic
|
||||||
texlive-pdfpages
|
texlive-pdfpages
|
||||||
texlive-refcount
|
texlive-refcount
|
||||||
|
|
|
@ -5806,7 +5806,7 @@ set.")
|
||||||
texlive-geometry
|
texlive-geometry
|
||||||
texlive-hanging
|
texlive-hanging
|
||||||
texlive-hyperref
|
texlive-hyperref
|
||||||
texlive-latex-multirow
|
texlive-multirow
|
||||||
texlive-natbib
|
texlive-natbib
|
||||||
texlive-latex-needspace
|
texlive-latex-needspace
|
||||||
texlive-newunicodechar
|
texlive-newunicodechar
|
||||||
|
|
|
@ -6189,7 +6189,7 @@ output routine.")
|
||||||
texlive-latex-base
|
texlive-latex-base
|
||||||
texlive-latex-eukdate
|
texlive-latex-eukdate
|
||||||
texlive-graphics
|
texlive-graphics
|
||||||
texlive-latex-multirow
|
texlive-multirow
|
||||||
texlive-lm ;for lmroman10-regular
|
texlive-lm ;for lmroman10-regular
|
||||||
texlive-stix2-otf))
|
texlive-stix2-otf))
|
||||||
(propagated-inputs (list texlive-fontspec texlive-iftex
|
(propagated-inputs (list texlive-fontspec texlive-iftex
|
||||||
|
@ -7363,27 +7363,30 @@ on the loop variable, so that the package is equally applicable in graphics
|
||||||
applications like PSTricks as it is with the more common integer loops.")
|
applications like PSTricks as it is with the more common integer loops.")
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
(define-public texlive-latex-multirow
|
(define-public texlive-multirow
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-multirow")
|
(name "texlive-multirow")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "multirow"))
|
(list "doc/latex/multirow/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"source/latex/multirow/"
|
||||||
(sha256
|
"tex/latex/multirow/")
|
||||||
(base32
|
(base32
|
||||||
"1kak9i6nwz6vc4xjj6lbvkb69s49pis6qynjzvsjraxbdw28y2dq"))))
|
"18xnxqbkkzblngws1ydmkiwfrf9gvrriqrjpb6g6kmaxciwypqd6")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments '(#:tex-directory "latex/multirow"))
|
(home-page "https://ctan.org/pkg/multirow")
|
||||||
(home-page "https://www.ctan.org/pkg/multirow")
|
|
||||||
(synopsis "Create tabular cells spanning multiple rows")
|
(synopsis "Create tabular cells spanning multiple rows")
|
||||||
(description
|
(description
|
||||||
"The package provides tools for creating tabular cells spanning multiple
|
"The package has a lot of flexibility, including an option for specifying
|
||||||
rows. It has a lot of flexibility, including an option for specifying an
|
an entry at the natural width of its text. The package is distributed with
|
||||||
entry at the \"natural\" width of its text.")
|
the @code{bigdelim} and @code{bigstrut} packages, which can be used to
|
||||||
|
advantage with @code{\\multirow} cells.")
|
||||||
(license license:lppl1.3+)))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-multirow texlive-multirow)
|
||||||
|
|
||||||
(define-public texlive-latex-overpic
|
(define-public texlive-latex-overpic
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-overpic")
|
(name "texlive-latex-overpic")
|
||||||
|
|
Reference in a new issue