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,21 +3426,18 @@ (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")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/epstopdf-pkg/" (list "doc/latex/epstopdf-pkg/"
"source/latex/epstopdf-pkg/" "source/latex/epstopdf-pkg/"
"tex/latex/epstopdf-pkg/") "tex/latex/epstopdf-pkg/")
(base32 (base32
"1ajyc5pkn1niifz5asyf09vbdqvmy05xwl0vxcdl7ik0ll0jcaxp")))) "1ajyc5pkn1niifz5asyf09vbdqvmy05xwl0vxcdl7ik0ll0jcaxp")))
(package (outputs '("out" "doc"))
(inherit template) (build-system texlive-build-system)
(arguments
(substitute-keyword-arguments (package-arguments template)
((#:tex-directory _ '())
"latex/epstopdf-pkg")
((#:build-targets _ '())
#~(list "epstopdf.ins"))))
(propagated-inputs (propagated-inputs
(list texlive-grfext (list texlive-grfext
texlive-infwarerr texlive-infwarerr
@ -3452,7 +3449,7 @@ (define-public texlive-epstopdf-pkg
"The package adds support for EPS files in the @code{graphicx} package "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)