me
/
guix
Archived
1
0
Fork 0

gnu: texlive-soul: Remove SIMPLE-TEXLIVE-PACKAGE call.

* gnu/packages/tex.scm (texlive-soul!): Remove SIMPLE-TEXLIVE-PACKAGE
call.
Nicolas Goaziou 2023-05-18 14:32:43 +02:00
parent bcabbce9ff
commit a15ff31ebd
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 16 additions and 19 deletions

View File

@ -13744,30 +13744,27 @@ defined tab stop.")
(define-deprecated-package texlive-latex-tabto-ltx texlive-tabto-ltx) (define-deprecated-package texlive-latex-tabto-ltx texlive-tabto-ltx)
(define-public texlive-soul (define-public texlive-soul
(let ((template (simple-texlive-package (package
"texlive-soul" (name "texlive-soul")
(list "doc/generic/soul/" (version (number->string %texlive-revision))
"source/generic/soul/" (source (texlive-origin
"tex/generic/soul/") name version
(base32 (list "doc/generic/soul/" "source/generic/soul/"
"0ikipdswzsafi4rr6q9xh3hkxk2n2683ym1879qcax41xs6cizdl")))) "tex/generic/soul/")
(package (base32
(inherit template) "0ikipdswzsafi4rr6q9xh3hkxk2n2683ym1879qcax41xs6cizdl")))
(outputs '("out" "doc")) (outputs '("out" "doc"))
(arguments (build-system texlive-build-system)
(substitute-keyword-arguments (package-arguments template) (home-page "https://ctan.org/pkg/soul")
((#:tex-directory _ #t) "generic/soul") (synopsis "Hyphenation for letterspacing, underlining, and more")
((#:build-targets _ '()) '(list "soul.ins")))) (description
(home-page "http://www.ctan.org/pkg/soul") "The @code{soul} package enables hyphenatable spacing out (letterspacing),
(synopsis "Hyphenation for letterspacing, underlining, and more")
(description
"@code{soul} enables hyphenatable spacing out (letterspacing),
underlining, striking out, etc., using the TeX hyphenation algorithm to find underlining, striking out, etc., using the TeX hyphenation algorithm to find
the proper hyphens automatically. The package also provides a mechanism that the proper hyphens automatically. The package also provides a mechanism that
can be used to implement similar tasks, that have to treat text syllable by can be used to implement similar tasks, that have to treat text syllable by
syllable. The package itself does not support UTF-8 input in ordinary 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-deprecated-package texlive-generic-soul texlive-soul)