mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: texlive-latex-trimspaces -> texlive-trimspaces.
* gnu/packages/tex.scm (texlive-trimspaces): New variable. (texlive-latex-trimspaces): (texlive-pstool): * gnu/packages/python-xyz.scm (python-nbconvert):
This commit is contained in:
parent
1cca15cf73
commit
ab95125765
2 changed files with 30 additions and 28 deletions
|
@ -15191,7 +15191,7 @@ time.")
|
||||||
texlive-latex-jknapltx
|
texlive-latex-jknapltx
|
||||||
texlive-ms
|
texlive-ms
|
||||||
texlive-latex-parskip
|
texlive-latex-parskip
|
||||||
texlive-latex-trimspaces
|
texlive-trimspaces
|
||||||
texlive-latex-upquote
|
texlive-latex-upquote
|
||||||
texlive-stringenc
|
texlive-stringenc
|
||||||
texlive-tcolorbox
|
texlive-tcolorbox
|
||||||
|
|
|
@ -5234,8 +5234,8 @@ rotated.")
|
||||||
texlive-l3kernel ; for expl3
|
texlive-l3kernel ; for expl3
|
||||||
texlive-oberdiek
|
texlive-oberdiek
|
||||||
texlive-latex-psfrag
|
texlive-latex-psfrag
|
||||||
texlive-tools ; for shellesc
|
texlive-tools ; for shellesc
|
||||||
texlive-latex-trimspaces
|
texlive-trimspaces
|
||||||
texlive-latex-xkeyval))
|
texlive-latex-xkeyval))
|
||||||
(home-page "https://www.ctan.org/pkg/pstool")
|
(home-page "https://www.ctan.org/pkg/pstool")
|
||||||
(synopsis "Process PostScript graphics within pdfLaTeX documents")
|
(synopsis "Process PostScript graphics within pdfLaTeX documents")
|
||||||
|
@ -5354,40 +5354,42 @@ and the ability to create new ‘List of ...’. The ToC @code{\\parskip} may
|
||||||
be changed.")
|
be changed.")
|
||||||
(license license:lppl1.3c+)))
|
(license license:lppl1.3c+)))
|
||||||
|
|
||||||
(define-public texlive-latex-trimspaces
|
(define-public texlive-trimspaces
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-trimspaces")
|
(name "texlive-trimspaces")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "trimspaces"))
|
(list "doc/latex/trimspaces/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"source/latex/trimspaces/"
|
||||||
(sha256
|
"tex/latex/trimspaces/")
|
||||||
(base32
|
(base32
|
||||||
"0da00lb32am4g63mn96625wg48p3pj3spx79lajrk17d549apwqa"))))
|
"0if7pqaib533fbrj9r62mmr4h012hrpszdxs759rwhmyycikg6dk")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tex-directory "latex/trimspaces"
|
(list
|
||||||
#:tex-format "latex"
|
#:tex-format "latex"
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'fix-bug
|
(add-after 'unpack 'fix-bug
|
||||||
(lambda _
|
(lambda _
|
||||||
;; The "ins" file refers to the wrong source file.
|
;; The "ins" file refers to the wrong source file.
|
||||||
(substitute* "trimspaces.ins"
|
(substitute* "source/latex/trimspaces/trimspaces.ins"
|
||||||
(("pstool.tex") "trimspaces.tex"))
|
(("pstool\\.tex") "trimspaces.tex")))))))
|
||||||
#t)))))
|
(propagated-inputs
|
||||||
(inputs
|
|
||||||
(list texlive-filecontents))
|
(list texlive-filecontents))
|
||||||
(home-page "https://www.ctan.org/pkg/trimspaces")
|
(home-page "https://ctan.org/pkg/trimspaces")
|
||||||
(synopsis "Trim spaces around an argument or within a macro")
|
(synopsis "Trim spaces around an argument or within a macro")
|
||||||
(description
|
(description
|
||||||
"This very short package allows you to expandably remove spaces around a
|
"This package provides a very short package that allows you to expandably
|
||||||
token list (commands are provided to remove spaces before, spaces after, or
|
remove spaces around a token list (commands are provided to remove spaces
|
||||||
both); or to remove surrounding spaces within a macro definition, or to define
|
before, spaces after, or both); or to remove surrounding spaces within a macro
|
||||||
space-stripped macros.")
|
definition, or to define space-stripped macros.")
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-trimspaces texlive-trimspaces)
|
||||||
|
|
||||||
(define-public texlive-calrsfs
|
(define-public texlive-calrsfs
|
||||||
(package
|
(package
|
||||||
(inherit
|
(inherit
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue