gnu: texlive-latex-psfrag -> texlive-psfrag.
* gnu/packages/tex.scm (texlive-psfrag): New variable. (texlive-latex-psfrag): Deprecate variable. (texlive-pstool): * gnu/packages/bioinformatics.scm (phyml): Use new name.
This commit is contained in:
parent
e1e0e08451
commit
7af4d29ace
2 changed files with 21 additions and 16 deletions
|
@ -12111,7 +12111,7 @@ programs for inferring phylogenies (evolutionary trees).")
|
||||||
texlive-graphics
|
texlive-graphics
|
||||||
texlive-grfext
|
texlive-grfext
|
||||||
texlive-hyperref
|
texlive-hyperref
|
||||||
texlive-latex-psfrag
|
texlive-psfrag
|
||||||
texlive-xcolor))))
|
texlive-xcolor))))
|
||||||
(home-page "https://github.com/stephaneguindon/phyml")
|
(home-page "https://github.com/stephaneguindon/phyml")
|
||||||
(synopsis "Programs for working on SAM/BAM files")
|
(synopsis "Programs for working on SAM/BAM files")
|
||||||
|
|
|
@ -5451,31 +5451,36 @@ available for LuaTeX by reimplementing them using Lua.")
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-pdftexcmds texlive-pdftexcmds)
|
(define-deprecated-package texlive-latex-pdftexcmds texlive-pdftexcmds)
|
||||||
|
|
||||||
(define-public texlive-latex-psfrag
|
(define-public texlive-psfrag
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-psfrag")
|
(name "texlive-psfrag")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "psfrag"))
|
(list "doc/latex/psfrag/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"dvips/psfrag/"
|
||||||
(sha256
|
"source/latex/psfrag/"
|
||||||
|
"tex/latex/psfrag/")
|
||||||
(base32
|
(base32
|
||||||
"1dxbl5il7wbbsp0v45vk884xi1192wxw03849pb1g5q4x808n352"))))
|
"06vp5x6rnl4gqwxzzynbl169q23k8pmaxjhb0lbzdcm3ihvzp47z")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments '(#:tex-directory "latex/psfrag"))
|
(propagated-inputs
|
||||||
(home-page "https://www.ctan.org/pkg/psfrag")
|
(list texlive-graphics))
|
||||||
|
(home-page "https://ctan.org/pkg/psfrag")
|
||||||
(synopsis "Replace strings in encapsulated PostScript figures")
|
(synopsis "Replace strings in encapsulated PostScript figures")
|
||||||
(description
|
(description
|
||||||
"This package allows LaTeX constructions (equations, picture
|
"This package allows LaTeX constructions (equations, picture
|
||||||
environments, etc.) to be precisely superimposed over Encapsulated PostScript
|
environments, etc.) to be precisely superimposed over Encapsulated PostScript
|
||||||
figures, using your own favorite drawing tool to create an EPS figure and
|
figures, using your own favorite drawing tool to create an EPS figure and
|
||||||
placing simple text \"tags\" where each replacement is to be placed, with
|
placing simple text tags where each replacement is to be placed, with PSfrag
|
||||||
PSfrag automatically removing these tags from the figure and replacing them
|
automatically removing these tags from the figure and replacing them with
|
||||||
with a user specified LaTeX construction, properly aligned, scaled, and/or
|
a user specified LaTeX construction, properly aligned, scaled, and/or
|
||||||
rotated.")
|
rotated.")
|
||||||
(license (license:fsf-free "file://psfrag.dtx"))))
|
(license (license:fsf-free "file://psfrag.dtx"))))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-psfrag texlive-psfrag)
|
||||||
|
|
||||||
(define-public texlive-pstool
|
(define-public texlive-pstool
|
||||||
(package
|
(package
|
||||||
(inherit (simple-texlive-package
|
(inherit (simple-texlive-package
|
||||||
|
@ -5492,7 +5497,7 @@ rotated.")
|
||||||
texlive-ifplatform
|
texlive-ifplatform
|
||||||
texlive-l3kernel ; for expl3
|
texlive-l3kernel ; for expl3
|
||||||
texlive-oberdiek
|
texlive-oberdiek
|
||||||
texlive-latex-psfrag
|
texlive-psfrag
|
||||||
texlive-tools ; for shellesc
|
texlive-tools ; for shellesc
|
||||||
texlive-trimspaces
|
texlive-trimspaces
|
||||||
texlive-latex-xkeyval))
|
texlive-latex-xkeyval))
|
||||||
|
|
Reference in a new issue