gnu: texlive-etexcmds: Refresh package definition.

* gnu/packages/tex.scm (texlive-etexcmds): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-15 23:45:37 +02:00
parent 5e346d44b3
commit 29b903133e
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -9543,32 +9543,27 @@ (define-public texlive-bitset
(define-deprecated-package texlive-generic-bitset texlive-bitset) (define-deprecated-package texlive-generic-bitset texlive-bitset)
(define-public texlive-etexcmds (define-public texlive-etexcmds
(let ((template (simple-texlive-package (package
"texlive-etexcmds" (name "texlive-etexcmds")
(list "doc/latex/etexcmds/" (version (number->string %texlive-revision))
"source/latex/etexcmds/" (source (texlive-origin
"tex/generic/etexcmds/") name version
(base32 (list "doc/latex/etexcmds/" "source/latex/etexcmds/"
"13cf1fs5x9d8749b2jgxmgnkrx0r4hwpl389r15kq3ldz9jfl627")))) "tex/generic/etexcmds/")
(package (base32
(inherit template) "13cf1fs5x9d8749b2jgxmgnkrx0r4hwpl389r15kq3ldz9jfl627")))
(outputs '("out" "doc")) (outputs '("out" "doc"))
(arguments (build-system texlive-build-system)
(substitute-keyword-arguments (package-arguments template) (propagated-inputs
((#:tex-directory _ '()) (list texlive-iftex texlive-infwarerr))
"generic/etexcmds") (home-page "https://ctan.org/pkg/etexcmds")
((#:build-targets _ '()) (synopsis "Avoid name clashes with e-TeX commands")
#~(list "etexcmds.dtx")))) (description
(propagated-inputs "New primitive commands are introduced in e-TeX; sometimes the names
(list texlive-iftex texlive-infwarerr)) collide with existing macros. This package solves the name clashes by adding
(home-page "https://www.ctan.org/pkg/etexcmds") a prefix to e-TeXs commands. For example, ε-TeXs @code{\\unexpanded} is
(synopsis "Avoid name clashes with e-TeX commands") provided as @code{\\etex@@unexpanded}.")
(description (license license:lppl1.3c+)))
"New primitive commands are introduced in e-TeX; sometimes the names
collide with existing macros. This package solves the name clashes by
adding a prefix to e-TeXs commands. For example, ε-TeXs
@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}.")
(license license:lppl1.3c+))))
(define-deprecated-package texlive-generic-etexcmds texlive-etexcmds) (define-deprecated-package texlive-generic-etexcmds texlive-etexcmds)