Archived
1
0
Fork 0

gnu: texlive-acronym: Refresh package definition.

* gnu/packages/tex.scm (texlive-acronym): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-15 23:39:06 +02:00
parent fad4fdafff
commit ada78c49fe
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -8479,31 +8479,28 @@ files.")
(define-deprecated-package texlive-latex-preview texlive-preview) (define-deprecated-package texlive-latex-preview texlive-preview)
(define-public texlive-acronym (define-public texlive-acronym
(let ((template (simple-texlive-package (package
"texlive-acronym" (name "texlive-acronym")
(list "doc/latex/acronym/" (version (number->string %texlive-revision))
"source/latex/acronym/" (source (texlive-origin
name version
(list "doc/latex/acronym/" "source/latex/acronym/"
"tex/latex/acronym/") "tex/latex/acronym/")
(base32 (base32
"0p2sws3qy7wv0v6bsy6c5j36n9s1ps7b1z7dmg1370schrjpqnfh")))) "0p2sws3qy7wv0v6bsy6c5j36n9s1ps7b1z7dmg1370schrjpqnfh")))
(package
(inherit template)
(outputs '("out" "doc")) (outputs '("out" "doc"))
(arguments (build-system texlive-build-system)
(substitute-keyword-arguments (package-arguments template)
((#:tex-directory _ #t) "latex/acronym")
((#:build-targets _ '()) '(list "acronym.ins"))))
(propagated-inputs (propagated-inputs
(list texlive-bigfoot texlive-relsize texlive-xstring)) (list texlive-bigfoot texlive-relsize texlive-xstring))
(home-page "https://ctan.org/pkg/acronym") (home-page "https://ctan.org/pkg/acronym")
(synopsis "Expand acronyms at least once") (synopsis "Expand acronyms at least once")
(description (description
"This package ensures that all acronyms used in the text are spelled "This package ensures that all acronyms used in the text are spelled out
out in full at least once. It also provides an environment to build a list of in full at least once. It also provides an environment to build a list of
acronyms used. The package is compatible with PDF bookmarks. The package acronyms used. The package is compatible with PDF bookmarks. The package
requires the @code{suffix} package, which in turn requires that it runs under requires the @code{suffix} package, which in turn requires that it runs under
e-TeX.") e-TeX.")
(license license:lppl1.3+)))) (license license:lppl1.3+)))
(define-deprecated-package texlive-latex-acronym texlive-acronym) (define-deprecated-package texlive-latex-acronym texlive-acronym)