summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-05-13 16:36:02 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-07-18 18:10:53 +0200
commitf0a491f717f5719af4ece891ca5133da6ba36adf (patch)
treeddcbf1395d59aa9704feb96acfe0f15f968cf317 /gnu
parent94d0e6c56a3474fd7a389e55365c9cfc653ea12e (diff)
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.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/docbook.scm2
-rw-r--r--gnu/packages/maths.scm2
-rw-r--r--gnu/packages/tex.scm33
3 files changed, 20 insertions, 17 deletions
diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm
index b214dbc9dfd..bc576217e58 100644
--- a/gnu/packages/docbook.scm
+++ b/gnu/packages/docbook.scm
@@ -548,7 +548,7 @@ the in DocBook SGML DTDs.")
548 texlive-hyperref 548 texlive-hyperref
549 texlive-jknapltx 549 texlive-jknapltx
550 texlive-listings 550 texlive-listings
551 texlive-latex-multirow 551 texlive-multirow
552 texlive-latex-overpic 552 texlive-latex-overpic
553 texlive-pdfpages 553 texlive-pdfpages
554 texlive-refcount 554 texlive-refcount
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index af8efd3ca3e..7a98c05e29b 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5806,7 +5806,7 @@ set.")
5806 texlive-geometry 5806 texlive-geometry
5807 texlive-hanging 5807 texlive-hanging
5808 texlive-hyperref 5808 texlive-hyperref
5809 texlive-latex-multirow 5809 texlive-multirow
5810 texlive-natbib 5810 texlive-natbib
5811 texlive-latex-needspace 5811 texlive-latex-needspace
5812 texlive-newunicodechar 5812 texlive-newunicodechar
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 70d0c3804be..485d6cfe589 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -6189,7 +6189,7 @@ output routine.")
6189 texlive-latex-base 6189 texlive-latex-base
6190 texlive-latex-eukdate 6190 texlive-latex-eukdate
6191 texlive-graphics 6191 texlive-graphics
6192 texlive-latex-multirow 6192 texlive-multirow
6193 texlive-lm ;for lmroman10-regular 6193 texlive-lm ;for lmroman10-regular
6194 texlive-stix2-otf)) 6194 texlive-stix2-otf))
6195 (propagated-inputs (list texlive-fontspec texlive-iftex 6195 (propagated-inputs (list texlive-fontspec texlive-iftex
@@ -7363,27 +7363,30 @@ on the loop variable, so that the package is equally applicable in graphics
7363applications like PSTricks as it is with the more common integer loops.") 7363applications like PSTricks as it is with the more common integer loops.")
7364 (license license:lppl))) 7364 (license license:lppl)))
7365 7365
7366(define-public texlive-latex-multirow 7366(define-public texlive-multirow
7367 (package 7367 (package
7368 (name "texlive-latex-multirow") 7368 (name "texlive-multirow")
7369 (version (number->string %texlive-revision)) 7369 (version (number->string %texlive-revision))
7370 (source (origin 7370 (source (texlive-origin
7371 (method svn-fetch) 7371 name version
7372 (uri (texlive-ref "latex" "multirow")) 7372 (list "doc/latex/multirow/"
7373 (file-name (string-append name "-" version "-checkout")) 7373 "source/latex/multirow/"
7374 (sha256 7374 "tex/latex/multirow/")
7375 (base32 7375 (base32
7376 "1kak9i6nwz6vc4xjj6lbvkb69s49pis6qynjzvsjraxbdw28y2dq")))) 7376 "18xnxqbkkzblngws1ydmkiwfrf9gvrriqrjpb6g6kmaxciwypqd6")))
7377 (outputs '("out" "doc"))
7377 (build-system texlive-build-system) 7378 (build-system texlive-build-system)
7378 (arguments '(#:tex-directory "latex/multirow")) 7379 (home-page "https://ctan.org/pkg/multirow")
7379 (home-page "https://www.ctan.org/pkg/multirow")
7380 (synopsis "Create tabular cells spanning multiple rows") 7380 (synopsis "Create tabular cells spanning multiple rows")
7381 (description 7381 (description
7382 "The package provides tools for creating tabular cells spanning multiple 7382 "The package has a lot of flexibility, including an option for specifying
7383rows. It has a lot of flexibility, including an option for specifying an 7383an entry at the natural width of its text. The package is distributed with
7384entry at the \"natural\" width of its text.") 7384the @code{bigdelim} and @code{bigstrut} packages, which can be used to
7385advantage with @code{\\multirow} cells.")
7385 (license license:lppl1.3+))) 7386 (license license:lppl1.3+)))
7386 7387
7388(define-deprecated-package texlive-latex-multirow texlive-multirow)
7389
7387(define-public texlive-latex-overpic 7390(define-public texlive-latex-overpic
7388 (package 7391 (package
7389 (name "texlive-latex-overpic") 7392 (name "texlive-latex-overpic")