mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: texlive-latex-colortbl -> texlive-colortbl.
* gnu/packages/tex.scm (texlive-colortbl): New variable. (texlive-latex-colortbl): Deprecate variable. (texlive-jadetex): * gnu/packages/docbook.scm (dblatex): * gnu/packages/maths.scm (hypre): Use new name.
This commit is contained in:
parent
e5e13d03f0
commit
51a55ec735
3 changed files with 21 additions and 16 deletions
|
@ -539,7 +539,7 @@ (define-public dblatex
|
|||
texlive-appendix
|
||||
texlive-bookmark
|
||||
texlive-changebar
|
||||
texlive-latex-colortbl
|
||||
texlive-colortbl
|
||||
texlive-latex-fancybox
|
||||
texlive-fancyhdr
|
||||
texlive-fancyvrb
|
||||
|
|
|
@ -5799,7 +5799,7 @@ (define-public hypre
|
|||
texlive-xypic
|
||||
texlive-listofitems
|
||||
texlive-cmap
|
||||
texlive-latex-colortbl
|
||||
texlive-colortbl
|
||||
texlive-latex-float
|
||||
texlive-fncychap
|
||||
texlive-framed
|
||||
|
|
|
@ -6590,26 +6590,31 @@ (define-public texlive-cmap
|
|||
|
||||
(define-deprecated-package texlive-latex-cmap texlive-cmap)
|
||||
|
||||
(define-public texlive-latex-colortbl
|
||||
(define-public texlive-colortbl
|
||||
(package
|
||||
(name "texlive-latex-colortbl")
|
||||
(name "texlive-colortbl")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (origin
|
||||
(method svn-fetch)
|
||||
(uri (texlive-ref "latex" "colortbl"))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(base32
|
||||
"1qa0mh0fy9hcvfsmprv6q50q0qzdjjfbxi3axap26z6zg3qj68bc"))))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/colortbl/"
|
||||
"source/latex/colortbl/"
|
||||
"tex/latex/colortbl/")
|
||||
(base32
|
||||
"0fb4a5l3yqk6l5gr0hlkqwpy004wi8zymyicdzjyhqwcib4jnzjs")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments '(#:tex-directory "latex/colortbl"))
|
||||
(home-page "https://www.ctan.org/pkg/colortbl")
|
||||
(propagated-inputs
|
||||
(list texlive-graphics
|
||||
texlive-tools))
|
||||
(home-page "https://ctan.org/pkg/colortbl")
|
||||
(synopsis "Add colour to LaTeX tables")
|
||||
(description
|
||||
"This package allows rows, columns, and even individual cells in LaTeX
|
||||
tables to be coloured.")
|
||||
"The package allows rows and columns to be coloured, and even
|
||||
individual cells.")
|
||||
(license license:lppl)))
|
||||
|
||||
(define-deprecated-package texlive-latex-colortbl texlive-colortbl)
|
||||
|
||||
(define-public texlive-latex-fancybox
|
||||
(package
|
||||
(name "texlive-latex-fancybox")
|
||||
|
@ -7895,7 +7900,7 @@ (define-public texlive-jadetex
|
|||
;; provided by the jknappen package collection.
|
||||
texlive-jknappen
|
||||
texlive-hyperref
|
||||
texlive-latex-colortbl
|
||||
texlive-colortbl
|
||||
texlive-fancyhdr
|
||||
texlive-graphics ;for color.sty
|
||||
texlive-tools ;for array.sty
|
||||
|
|
Loading…
Reference in a new issue