me
/
guix
Archived
1
0
Fork 0

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.
Nicolas Goaziou 2023-05-13 16:36:02 +02:00
parent 94d0e6c56a
commit f0a491f717
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
3 changed files with 20 additions and 17 deletions

View File

@ -548,7 +548,7 @@ the in DocBook SGML DTDs.")
texlive-hyperref
texlive-jknapltx
texlive-listings
texlive-latex-multirow
texlive-multirow
texlive-latex-overpic
texlive-pdfpages
texlive-refcount

View File

@ -5806,7 +5806,7 @@ set.")
texlive-geometry
texlive-hanging
texlive-hyperref
texlive-latex-multirow
texlive-multirow
texlive-natbib
texlive-latex-needspace
texlive-newunicodechar

View File

@ -6189,7 +6189,7 @@ output routine.")
texlive-latex-base
texlive-latex-eukdate
texlive-graphics
texlive-latex-multirow
texlive-multirow
texlive-lm ;for lmroman10-regular
texlive-stix2-otf))
(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.")
(license license:lppl)))
(define-public texlive-latex-multirow
(define-public texlive-multirow
(package
(name "texlive-latex-multirow")
(name "texlive-multirow")
(version (number->string %texlive-revision))
(source (origin
(method svn-fetch)
(uri (texlive-ref "latex" "multirow"))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1kak9i6nwz6vc4xjj6lbvkb69s49pis6qynjzvsjraxbdw28y2dq"))))
(source (texlive-origin
name version
(list "doc/latex/multirow/"
"source/latex/multirow/"
"tex/latex/multirow/")
(base32
"18xnxqbkkzblngws1ydmkiwfrf9gvrriqrjpb6g6kmaxciwypqd6")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments '(#:tex-directory "latex/multirow"))
(home-page "https://www.ctan.org/pkg/multirow")
(home-page "https://ctan.org/pkg/multirow")
(synopsis "Create tabular cells spanning multiple rows")
(description
"The package provides tools for creating tabular cells spanning multiple
rows. It has a lot of flexibility, including an option for specifying an
entry at the \"natural\" width of its text.")
"The package has a lot of flexibility, including an option for specifying
an entry at the natural width of its text. The package is distributed with
the @code{bigdelim} and @code{bigstrut} packages, which can be used to
advantage with @code{\\multirow} cells.")
(license license:lppl1.3+)))
(define-deprecated-package texlive-latex-multirow texlive-multirow)
(define-public texlive-latex-overpic
(package
(name "texlive-latex-overpic")