gnu: texlive-ltxcmds: Refresh package definition.

* gnu/packages/tex.scm (texlive-ltxcmds): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-15 23:50:28 +02:00
parent d9d72c834e
commit 1053084b23
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -9735,29 +9735,25 @@ (define-public texlive-listofitems
(define-deprecated-package texlive-generic-listofitems texlive-listofitems) (define-deprecated-package texlive-generic-listofitems texlive-listofitems)
(define-public texlive-ltxcmds (define-public texlive-ltxcmds
(let ((template (simple-texlive-package (package
"texlive-ltxcmds" (name "texlive-ltxcmds")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/generic/ltxcmds/" (list "doc/generic/ltxcmds/"
"source/generic/ltxcmds/" "source/generic/ltxcmds/"
"tex/generic/ltxcmds/") "tex/generic/ltxcmds/")
(base32 (base32
"1izcw9jl64iij541183hc156sjwamvxm7q9fkpfnz8sppyg31fkb")))) "1izcw9jl64iij541183hc156sjwamvxm7q9fkpfnz8sppyg31fkb")))
(package
(inherit template)
(outputs '("out" "doc")) (outputs '("out" "doc"))
(arguments (build-system texlive-build-system)
(substitute-keyword-arguments (package-arguments template) (home-page "https://ctan.org/pkg/ltxcmds")
((#:tex-directory _ '()) (synopsis "Some LaTeX kernel commands for general use")
"generic/ltxcmds")
((#:build-targets _ '())
#~(list "ltxcmds.dtx"))))
(home-page "https://www.ctan.org/pkg/ltxcmds")
(synopsis "LaTeX kernel commands extracted for general use")
(description (description
"This package exports some utility macros from the LaTeX kernel into "This package exports some utility macros from the LaTeX kernel into
a separate namespace and also makes them available for other formats such a separate namespace and also makes them available for other formats such as
as plain TeX.") plain TeX.")
(license license:lppl1.3c+)))) (license license:lppl1.3+)))
(define-deprecated-package texlive-generic-ltxcmds texlive-ltxcmds) (define-deprecated-package texlive-generic-ltxcmds texlive-ltxcmds)