Archived
1
0
Fork 0

gnu: texlive-oberdiek: Refresh package definition.

* gnu/packages/tex.scm (texlive-oberdiek): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-16 00:27:46 +02:00
parent 3de942e71e
commit fbbb79acad
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -3941,39 +3941,33 @@ is compatible with pdfLaTeX, XeLaTeX, LaTeX+dvipdfm, and LaTeX+dvips+ps2pdf.")
(license license:lppl1.3c))) (license license:lppl1.3c)))
(define-public texlive-oberdiek (define-public texlive-oberdiek
(let ((template (simple-texlive-package (package
"texlive-oberdiek" (name "texlive-oberdiek")
(list "bibtex/bib/oberdiek/" (version (number->string %texlive-revision))
"doc/latex/oberdiek/" (source (texlive-origin
"source/latex/oberdiek/" name version
"tex/generic/oberdiek/" (list "bibtex/bib/oberdiek/" "doc/latex/oberdiek/"
"tex/latex/oberdiek/") "source/latex/oberdiek/"
(base32 "tex/generic/oberdiek/" "tex/latex/oberdiek/")
"00lp24fckawpy997j7zagsxv89jif40wgjq8fw502v06d225ikp3")))) (base32
(package "00lp24fckawpy997j7zagsxv89jif40wgjq8fw502v06d225ikp3")))
(inherit template) (outputs '("out" "doc"))
(outputs '("out" "doc")) (build-system texlive-build-system)
(arguments (propagated-inputs
(substitute-keyword-arguments (package-arguments template) (list texlive-auxhook
((#:tex-directory _ '()) texlive-grfext
"latex/oberdiek") texlive-grffile
((#:build-targets _ '()) texlive-iftex
#~(list "oberdiek.ins")))) texlive-infwarerr
(propagated-inputs texlive-kvoptions
(list texlive-auxhook texlive-pdftexcmds))
texlive-grfext (home-page "https://www.ctan.org/pkg/oberdiek")
texlive-grffile (synopsis "Bundle of packages submitted by Heiko Oberdiek")
texlive-iftex (description
texlive-infwarerr "The bundle comprises various LaTeX packages, providing among others:
texlive-kvoptions
texlive-pdftexcmds))
(home-page "https://www.ctan.org/pkg/oberdiek")
(synopsis "Bundle of packages submitted by Heiko Oberdiek")
(description
"The bundle comprises various LaTeX packages, providing among others:
better accessibility support for PDF files; extensible chemists reaction better accessibility support for PDF files; extensible chemists reaction
arrows; record information about document class(es) used; and many more.") arrows; record information about document class(es) used; and many more.")
(license license:lppl1.3+)))) (license license:lppl1.3+)))
(define-deprecated-package texlive-latex-oberdiek texlive-oberdiek) (define-deprecated-package texlive-latex-oberdiek texlive-oberdiek)