Archived
1
0
Fork 0

gnu: texlive-filecontents: Refresh package definition.

* gnu/packages/tex.scm (texlive-filecontents): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-16 00:20:02 +02:00
parent 5c0d75bf1e
commit 8a7628247e
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -3454,18 +3454,18 @@ a process to convert the EPS to PDF, using the script @command{epstopdf}.")
(define-deprecated-package texlive-latex-epstopdf-pkg texlive-epstopdf-pkg) (define-deprecated-package texlive-latex-epstopdf-pkg texlive-epstopdf-pkg)
(define-public texlive-filecontents (define-public texlive-filecontents
(let ((template (simple-texlive-package (package
"texlive-filecontents" (name "texlive-filecontents")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/filecontents/" (list "doc/latex/filecontents/"
"source/latex/filecontents/" "source/latex/filecontents/"
"tex/latex/filecontents/") "tex/latex/filecontents/")
(base32 (base32
"0ifhqfdzx91hrmndhg5441rpmv9k4lxrql02kd5yx75xpplxryzw")))) "0ifhqfdzx91hrmndhg5441rpmv9k4lxrql02kd5yx75xpplxryzw")))
(package (outputs '("out" "doc"))
(inherit template) (build-system texlive-build-system)
(arguments
(substitute-keyword-arguments (package-arguments template)
((#:tex-directory _ '()) "latex/filecontents")))
(home-page "https://ctan.org/pkg/filecontents") (home-page "https://ctan.org/pkg/filecontents")
(synopsis "Create an external file from within a LaTeX document") (synopsis "Create an external file from within a LaTeX document")
(description (description
@ -3476,7 +3476,7 @@ to overwrite existing files, and they can only be used in the preamble of
a document. The filecontents package removes these limitations, letting you a document. The filecontents package removes these limitations, letting you
overwrite existing files and letting you use @code{filecontents} overwrite existing files and letting you use @code{filecontents}
@code{filecontents*} anywhere.") @code{filecontents*} anywhere.")
(license license:lppl1.3c+)))) (license license:lppl1.3c+)))
(define-deprecated-package texlive-latex-filecontents texlive-filecontents) (define-deprecated-package texlive-latex-filecontents texlive-filecontents)