gnu: texlive-latex-environ -> texlive-environ.
* gnu/packages/tex.scm (texlive-environ): New variable. (texlive-latex-environ): Deprecate variable. (texlive-tcolorbox): Apply renaming.
This commit is contained in:
parent
ab95125765
commit
3476b74386
1 changed files with 16 additions and 13 deletions
|
@ -4878,21 +4878,22 @@ implementation is output device independent, and made very simple by relying
|
||||||
on @code{everypage}.")
|
on @code{everypage}.")
|
||||||
(license license:lppl1.3+)))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
(define-public texlive-latex-environ
|
(define-public texlive-environ
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-environ")
|
(name "texlive-environ")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "environ"))
|
(list "doc/latex/environ/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"source/latex/environ/"
|
||||||
(sha256
|
"tex/latex/environ/")
|
||||||
(base32
|
(base32
|
||||||
"06h28b26dyjkj9shksphgqfv4130jfkwhbw737hxn7d3yvdfffyd"))))
|
"08a3vhyzc647b9zp3yifdklj0vch9cv2vajh7ig3y01jcdqhjy41")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments '(#:tex-directory "latex/environ"))
|
(propagated-inputs (list texlive-trimspaces))
|
||||||
(home-page "https://www.ctan.org/pkg/environ")
|
(home-page "https://ctan.org/pkg/environ")
|
||||||
(synopsis "New interface for environments in LaTeX")
|
(synopsis "A new interface for environments in LaTeX")
|
||||||
(description
|
(description
|
||||||
"This package provides the @code{\\collect@@body} command (as in
|
"This package provides the @code{\\collect@@body} command (as in
|
||||||
@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},
|
@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},
|
||||||
|
@ -4900,6 +4901,8 @@ for collecting the body text of an environment. These commands are used to
|
||||||
define a new author interface to creating new environments.")
|
define a new author interface to creating new environments.")
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-environ texlive-environ)
|
||||||
|
|
||||||
(define-public texlive-latex-eqparbox
|
(define-public texlive-latex-eqparbox
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-eqparbox")
|
(name "texlive-latex-eqparbox")
|
||||||
|
@ -11001,7 +11004,7 @@ levels. All functionality is provided by the single @code{\\qrcode} command.")
|
||||||
(package
|
(package
|
||||||
(inherit template)
|
(inherit template)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list texlive-etoolbox texlive-latex-environ texlive-pgf texlive-tools))
|
(list texlive-etoolbox texlive-environ texlive-pgf texlive-tools))
|
||||||
(home-page "https://www.ctan.org/pkg/tcolorbox")
|
(home-page "https://www.ctan.org/pkg/tcolorbox")
|
||||||
(synopsis "Colored boxes, for LaTeX examples and theorems, etc")
|
(synopsis "Colored boxes, for LaTeX examples and theorems, etc")
|
||||||
(description "This package provides an environment for colored and
|
(description "This package provides an environment for colored and
|
||||||
|
|
Reference in a new issue