gnu: texlive-epstopdf-pkg: Refresh package definition.

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

View file

@ -3426,33 +3426,30 @@ (define-public texlive-auxhook
(define-deprecated-package texlive-latex-auxhook texlive-auxhook) (define-deprecated-package texlive-latex-auxhook texlive-auxhook)
(define-public texlive-epstopdf-pkg (define-public texlive-epstopdf-pkg
(let ((template (simple-texlive-package (package
"texlive-epstopdf-pkg" (name "texlive-epstopdf-pkg")
(list "doc/latex/epstopdf-pkg/" (version (number->string %texlive-revision))
"source/latex/epstopdf-pkg/" (source (texlive-origin
"tex/latex/epstopdf-pkg/") name version
(base32 (list "doc/latex/epstopdf-pkg/"
"1ajyc5pkn1niifz5asyf09vbdqvmy05xwl0vxcdl7ik0ll0jcaxp")))) "source/latex/epstopdf-pkg/"
(package "tex/latex/epstopdf-pkg/")
(inherit template) (base32
(arguments "1ajyc5pkn1niifz5asyf09vbdqvmy05xwl0vxcdl7ik0ll0jcaxp")))
(substitute-keyword-arguments (package-arguments template) (outputs '("out" "doc"))
((#:tex-directory _ '()) (build-system texlive-build-system)
"latex/epstopdf-pkg") (propagated-inputs
((#:build-targets _ '()) (list texlive-grfext
#~(list "epstopdf.ins")))) texlive-infwarerr
(propagated-inputs texlive-kvoptions
(list texlive-grfext texlive-pdftexcmds))
texlive-infwarerr (home-page "https://www.ctan.org/pkg/epstopdf-pkg")
texlive-kvoptions (synopsis "Call @command{epstopdf} on the fly")
texlive-pdftexcmds)) (description
(home-page "https://www.ctan.org/pkg/epstopdf-pkg") "The package adds support for EPS files in the @code{graphicx} package
(synopsis "Call @command{epstopdf} on the fly")
(description
"The package adds support for EPS files in the @code{graphicx} package
when running under pdfTeX. If an EPS graphic is detected, the package spawns when running under pdfTeX. If an EPS graphic is detected, the package spawns
a process to convert the EPS to PDF, using the script @command{epstopdf}.") a process to convert the EPS to PDF, using the script @command{epstopdf}.")
(license license:lppl1.3c+)))) (license license:lppl1.3c+)))
(define-deprecated-package texlive-latex-epstopdf-pkg texlive-epstopdf-pkg) (define-deprecated-package texlive-latex-epstopdf-pkg texlive-epstopdf-pkg)