aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-05-13 12:06:35 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-07-18 18:10:45 +0200
commit8dba450404356e7259a7bd348dd80dfcdb9ecf91 (patch)
tree063d78701124e751fa3b6ca6bd83aa7cc0562d23 /gnu
parent50ce21605abec4096730cd3d9b1d7b4c6e2e38d8 (diff)
downloadguix-8dba450404356e7259a7bd348dd80dfcdb9ecf91.tar
guix-8dba450404356e7259a7bd348dd80dfcdb9ecf91.tar.gz
gnu: texlive-latex-supertabular -> texlive-supertabular.
* gnu/packages/tex.scm (texlive-supertabular): New variable. (texlive-latex-supertabular): Deprecate variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/tex.scm26
1 files changed, 14 insertions, 12 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index ff1b23bff6..6d42ea3c13 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -6326,28 +6326,30 @@ separately).
(define-deprecated-package texlive-latex-polyglossia texlive-polyglossia)
-(define-public texlive-latex-supertabular
+(define-public texlive-supertabular
(package
- (name "texlive-latex-supertabular")
+ (name "texlive-supertabular")
(version (number->string %texlive-revision))
- (source (origin
- (method svn-fetch)
- (uri (texlive-ref "latex" "supertabular"))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "19fd0bqxjkzc16bza3w20pnsc90gbhbllm244b3h6sink4dlnn54"))))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/supertabular/"
+ "source/latex/supertabular/"
+ "tex/latex/supertabular/")
+ (base32
+ "1z4kyx20w2zvn6c5a7p702pxj254f2pwlk7x815gzlcc6563js6a")))
+ (outputs '("out" "doc"))
(build-system texlive-build-system)
- (arguments '(#:tex-directory "latex/supertabular"))
(home-page "https://www.ctan.org/pkg/supertabular")
(synopsis "Multi-page tables package")
(description
"This package was a predecessor of @code{longtable}; the newer
package (designed on quite different principles) is easier to use and more
-flexible, in many cases, but supertabular retains its usefulness in a few
-situations where longtable has problems.")
+flexible, in many cases, but @code{supertabular} retains its usefulness in
+a few situations where longtable has problems.")
(license license:lppl1.3+)))
+(define-deprecated-package texlive-latex-supertabular texlive-supertabular)
+
(define-public texlive-tex-texinfo
(package
(name "texlive-tex-texinfo")