mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 23:20:29 -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-appendix
|
||||||
texlive-bookmark
|
texlive-bookmark
|
||||||
texlive-changebar
|
texlive-changebar
|
||||||
texlive-latex-colortbl
|
texlive-colortbl
|
||||||
texlive-latex-fancybox
|
texlive-latex-fancybox
|
||||||
texlive-fancyhdr
|
texlive-fancyhdr
|
||||||
texlive-fancyvrb
|
texlive-fancyvrb
|
||||||
|
|
|
@ -5799,7 +5799,7 @@ (define-public hypre
|
||||||
texlive-xypic
|
texlive-xypic
|
||||||
texlive-listofitems
|
texlive-listofitems
|
||||||
texlive-cmap
|
texlive-cmap
|
||||||
texlive-latex-colortbl
|
texlive-colortbl
|
||||||
texlive-latex-float
|
texlive-latex-float
|
||||||
texlive-fncychap
|
texlive-fncychap
|
||||||
texlive-framed
|
texlive-framed
|
||||||
|
|
|
@ -6590,26 +6590,31 @@ (define-public texlive-cmap
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-cmap texlive-cmap)
|
(define-deprecated-package texlive-latex-cmap texlive-cmap)
|
||||||
|
|
||||||
(define-public texlive-latex-colortbl
|
(define-public texlive-colortbl
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-colortbl")
|
(name "texlive-colortbl")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "colortbl"))
|
(list "doc/latex/colortbl/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"source/latex/colortbl/"
|
||||||
(sha256
|
"tex/latex/colortbl/")
|
||||||
(base32
|
(base32
|
||||||
"1qa0mh0fy9hcvfsmprv6q50q0qzdjjfbxi3axap26z6zg3qj68bc"))))
|
"0fb4a5l3yqk6l5gr0hlkqwpy004wi8zymyicdzjyhqwcib4jnzjs")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments '(#:tex-directory "latex/colortbl"))
|
(propagated-inputs
|
||||||
(home-page "https://www.ctan.org/pkg/colortbl")
|
(list texlive-graphics
|
||||||
|
texlive-tools))
|
||||||
|
(home-page "https://ctan.org/pkg/colortbl")
|
||||||
(synopsis "Add colour to LaTeX tables")
|
(synopsis "Add colour to LaTeX tables")
|
||||||
(description
|
(description
|
||||||
"This package allows rows, columns, and even individual cells in LaTeX
|
"The package allows rows and columns to be coloured, and even
|
||||||
tables to be coloured.")
|
individual cells.")
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-colortbl texlive-colortbl)
|
||||||
|
|
||||||
(define-public texlive-latex-fancybox
|
(define-public texlive-latex-fancybox
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-fancybox")
|
(name "texlive-latex-fancybox")
|
||||||
|
@ -7895,7 +7900,7 @@ (define-public texlive-jadetex
|
||||||
;; provided by the jknappen package collection.
|
;; provided by the jknappen package collection.
|
||||||
texlive-jknappen
|
texlive-jknappen
|
||||||
texlive-hyperref
|
texlive-hyperref
|
||||||
texlive-latex-colortbl
|
texlive-colortbl
|
||||||
texlive-fancyhdr
|
texlive-fancyhdr
|
||||||
texlive-graphics ;for color.sty
|
texlive-graphics ;for color.sty
|
||||||
texlive-tools ;for array.sty
|
texlive-tools ;for array.sty
|
||||||
|
|
Loading…
Reference in a new issue