guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

83/435: gnu: texlive-latex-multirow -> texlive-multirow.


From: guix-commits
Subject: 83/435: gnu: texlive-latex-multirow -> texlive-multirow.
Date: Tue, 6 Jun 2023 11:39:21 -0400 (EDT)

ngz pushed a commit to branch tex-team-next
in repository guix.

commit 8f37a5e1859eb1f681d0757c6c70a44961817e56
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat May 13 16:36:02 2023 +0200

    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.
---
 gnu/packages/docbook.scm |  2 +-
 gnu/packages/maths.scm   |  2 +-
 gnu/packages/tex.scm     | 33 ++++++++++++++++++---------------
 3 files changed, 20 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm
index b214dbc9df..bc576217e5 100644
--- a/gnu/packages/docbook.scm
+++ b/gnu/packages/docbook.scm
@@ -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
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index f455efe16c..4fe3d55495 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5777,7 +5777,7 @@ set.")
                                      texlive-geometry
                                      texlive-hanging
                                      texlive-hyperref
-                                     texlive-latex-multirow
+                                     texlive-multirow
                                      texlive-natbib
                                      texlive-latex-needspace
                                      texlive-newunicodechar
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 02d23cfa38..2576c8e332 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -6197,7 +6197,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
@@ -7371,27 +7371,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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]