mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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 @@ (define-public texlive-latex-tabto-ltx
|
|||
defined ``tab stop''.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
(define-public texlive-generic-soul
|
||||
(define-public texlive-soul
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-generic-soul"
|
||||
(list "/doc/generic/soul/"
|
||||
"/tex/generic/soul/")
|
||||
"texlive-soul"
|
||||
(list "doc/generic/soul/"
|
||||
"source/generic/soul/"
|
||||
"tex/generic/soul/")
|
||||
(base32
|
||||
"11jdgvfpcv10y5j898495lf29k2m03x39v9jzb4v79w4cgxcmfps")
|
||||
#:trivial? #t)))
|
||||
"0ikipdswzsafi4rr6q9xh3hkxk2n2683ym1879qcax41xs6cizdl"))))
|
||||
(package
|
||||
(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")
|
||||
(synopsis "Hyphenation for letterspacing, underlining, and more")
|
||||
(description
|
||||
|
@ -12112,6 +12130,8 @@ (define-public texlive-generic-soul
|
|||
(PDF)LaTeX; some UTF-8 support is offered by package @code{soulutf8}.")
|
||||
(license license:lppl))))
|
||||
|
||||
(define-deprecated-package texlive-generic-soul texlive-soul)
|
||||
|
||||
(define-public texlive-generic-xstring
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-generic-xstring"
|
||||
|
|
Loading…
Reference in a new issue