aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-05-14 10:25:12 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-07-18 18:10:55 +0200
commitc81b4d6002d6942ffb24dc824eb47f9b3fe6d79e (patch)
treece7aad29454898fa302a4b8213d622659113ee44 /gnu
parentf9f02c5d471d4f308534c6bf965aa87d4ccd8411 (diff)
downloadguix-c81b4d6002d6942ffb24dc824eb47f9b3fe6d79e.tar
guix-c81b4d6002d6942ffb24dc824eb47f9b3fe6d79e.tar.gz
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.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/maths.scm2
-rw-r--r--gnu/packages/sphinx.scm2
-rw-r--r--gnu/packages/tex.scm25
3 files changed, 16 insertions, 13 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 38d99ab2e5..a61d790de0 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5812,7 +5812,7 @@ set.")
texlive-newunicodechar
texlive-parskip
texlive-stackengine
- texlive-latex-tabulary
+ texlive-tabulary
texlive-tocloft
texlive-upquote
texlive-latex-varwidth
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 97c05234ea..69054efb50 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -125,7 +125,7 @@
texlive-latex-needspace
texlive-parskip
texlive-latex-preview
- texlive-latex-tabulary
+ texlive-tabulary
texlive-titlesec
texlive-tools ;multicol, longtable
texlive-upquote
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index eb9b3b6914..65bbd125da 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -7655,20 +7655,21 @@ the more recent @code{subcaption} package more satisfactory.")
(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 @@ variable width columns (@code{\\raggedright}, @code{\\centering},
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")