gnu: texlive-soul: Supersede texlive-generic-soul.
* gnu/packages/tex.scm (texlive-soul): New variable. (texlive-generic-soul): Deprecate in favour of the above.
This commit is contained in:
parent
01fd830f2f
commit
d03ad1a8b3
1 changed files with 26 additions and 6 deletions
|
@ -12091,16 +12091,34 @@ which the command @code{\\tab} advances typesetting position to the next
|
||||||
defined ``tab stop''.")
|
defined ``tab stop''.")
|
||||||
(license license:lppl1.3+)))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
(define-public texlive-generic-soul
|
(define-public texlive-soul
|
||||||
(let ((template (simple-texlive-package
|
(let ((template (simple-texlive-package
|
||||||
"texlive-generic-soul"
|
"texlive-soul"
|
||||||
(list "/doc/generic/soul/"
|
(list "doc/generic/soul/"
|
||||||
"/tex/generic/soul/")
|
"source/generic/soul/"
|
||||||
|
"tex/generic/soul/")
|
||||||
(base32
|
(base32
|
||||||
"11jdgvfpcv10y5j898495lf29k2m03x39v9jzb4v79w4cgxcmfps")
|
"0ikipdswzsafi4rr6q9xh3hkxk2n2683ym1879qcax41xs6cizdl"))))
|
||||||
#:trivial? #t)))
|
|
||||||
(package
|
(package
|
||||||
(inherit template)
|
(inherit template)
|
||||||
|
(outputs '("out" "doc"))
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments template)
|
||||||
|
((#:tex-directory _ #t) "generic/soul")
|
||||||
|
((#:build-targets _ '()) '(list "soul.ins"))
|
||||||
|
((#:phases phases)
|
||||||
|
#~(modify-phases #$phases
|
||||||
|
(add-after 'unpack 'chdir
|
||||||
|
(lambda _ (chdir "source/generic/soul/")))
|
||||||
|
(replace 'copy-files
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let ((origin (assoc-ref inputs "source"))
|
||||||
|
(source (string-append #$output
|
||||||
|
"/share/texmf-dist/source"))
|
||||||
|
(doc (string-append #$output:doc
|
||||||
|
"/share/texmf-dist/doc")))
|
||||||
|
(copy-recursively (string-append origin "/source") source)
|
||||||
|
(copy-recursively (string-append origin "/doc") doc))))))))
|
||||||
(home-page "http://www.ctan.org/pkg/soul")
|
(home-page "http://www.ctan.org/pkg/soul")
|
||||||
(synopsis "Hyphenation for letterspacing, underlining, and more")
|
(synopsis "Hyphenation for letterspacing, underlining, and more")
|
||||||
(description
|
(description
|
||||||
|
@ -12112,6 +12130,8 @@ syllable. The package itself does not support UTF-8 input in ordinary
|
||||||
(PDF)LaTeX; some UTF-8 support is offered by package @code{soulutf8}.")
|
(PDF)LaTeX; some UTF-8 support is offered by package @code{soulutf8}.")
|
||||||
(license license:lppl))))
|
(license license:lppl))))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-generic-soul texlive-soul)
|
||||||
|
|
||||||
(define-public texlive-generic-xstring
|
(define-public texlive-generic-xstring
|
||||||
(let ((template (simple-texlive-package
|
(let ((template (simple-texlive-package
|
||||||
"texlive-generic-xstring"
|
"texlive-generic-xstring"
|
||||||
|
|
Reference in a new issue