gnu: texlive-latex-preview -> texlive-preview.
* gnu/packages/tex.scm (texlive-preview): New variable. (texlive-latex-preview): Deprecate variable. * gnu/packages/graphviz.scm (dot2tex)[propagated-inputs]: * gnu/packages/sphinx.scm (python-sphinx)[propagated-inputs]: Use new name.
This commit is contained in:
parent
91461e95d4
commit
58d6740f0c
3 changed files with 14 additions and 20 deletions
|
@ -390,9 +390,9 @@ graphs in Graphviz's DOT language, written in pure Python.")
|
||||||
texlive-geometry
|
texlive-geometry
|
||||||
texlive-graphics
|
texlive-graphics
|
||||||
texlive-latex-base
|
texlive-latex-base
|
||||||
texlive-latex-preview
|
|
||||||
texlive-pgf
|
texlive-pgf
|
||||||
texlive-pstricks
|
texlive-pstricks
|
||||||
|
texlive-preview
|
||||||
texlive-xcolor
|
texlive-xcolor
|
||||||
texlive-xkeyval))
|
texlive-xkeyval))
|
||||||
(home-page "https://github.com/kjellmf/dot2tex")
|
(home-page "https://github.com/kjellmf/dot2tex")
|
||||||
|
|
|
@ -125,7 +125,7 @@
|
||||||
texlive-latex-needspace
|
texlive-latex-needspace
|
||||||
texlive-oberdiek ;hypcap
|
texlive-oberdiek ;hypcap
|
||||||
texlive-parskip
|
texlive-parskip
|
||||||
texlive-latex-preview
|
texlive-preview
|
||||||
texlive-tabulary
|
texlive-tabulary
|
||||||
texlive-titlesec
|
texlive-titlesec
|
||||||
texlive-tools ;multicol, longtable
|
texlive-tools ;multicol, longtable
|
||||||
|
|
|
@ -8402,27 +8402,19 @@ non-ASCII characters when coding mathematical formulae.")
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-ucs texlive-ucs)
|
(define-deprecated-package texlive-latex-ucs texlive-ucs)
|
||||||
|
|
||||||
(define-public texlive-latex-preview
|
(define-public texlive-preview
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-preview")
|
(name "texlive-preview")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "preview"))
|
(list "doc/latex/preview/" "source/latex/preview/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"tex/latex/preview/")
|
||||||
(sha256
|
(base32
|
||||||
(base32
|
"1njw4ziyigmzxky86sh6byn8jjdah51iyd8lkmwx5rxhaqp7snkp")))
|
||||||
"0hnf821yvki9bzfkz79ns9m1msjp3yvd4dhf3268wrpr1zjx6w8v"))))
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments
|
(home-page "https://ctan.org/pkg/preview")
|
||||||
'(#:tex-directory "latex/preview"
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'remove-generated-file
|
|
||||||
(lambda _
|
|
||||||
(delete-file "preview.drv")
|
|
||||||
#t)))))
|
|
||||||
(home-page "https://www.ctan.org/pkg/preview")
|
|
||||||
(synopsis "Extract bits of a LaTeX source for output")
|
(synopsis "Extract bits of a LaTeX source for output")
|
||||||
(description
|
(description
|
||||||
"The main purpose of the preview package is the extraction of selected
|
"The main purpose of the preview package is the extraction of selected
|
||||||
|
@ -8434,6 +8426,8 @@ dvipng, but it also works when you are using PDFTeX for generating PDF
|
||||||
files.")
|
files.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-preview texlive-preview)
|
||||||
|
|
||||||
(define-public texlive-acronym
|
(define-public texlive-acronym
|
||||||
(let ((template (simple-texlive-package
|
(let ((template (simple-texlive-package
|
||||||
"texlive-acronym"
|
"texlive-acronym"
|
||||||
|
|
Reference in a new issue