Archived
1
0
Fork 0

gnu: texlive-atveryend: Refresh package definition.

* gnu/packages/tex.scm (texlive-atveryend): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-16 00:17:54 +02:00
parent e9af0271fd
commit dab531f4a0
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -3379,29 +3379,28 @@ customize their appearance in the enclosing document.")
(license license:lppl1.3+))) (license license:lppl1.3+)))
(define-public texlive-atveryend (define-public texlive-atveryend
(let ((template (simple-texlive-package (package
"texlive-atveryend" (name "texlive-atveryend")
(list "doc/latex/atveryend/" (version (number->string %texlive-revision))
"source/latex/atveryend/" (source (texlive-origin
"tex/latex/atveryend/") name version
(base32 "1rp805h0m99rxs107a798l951lyahlnp7irfklfadn2a2ljzhafn")))) (list "doc/latex/atveryend/"
(package "source/latex/atveryend/"
(inherit template) "tex/latex/atveryend/")
(outputs '("out" "doc")) (base32
(arguments "1rp805h0m99rxs107a798l951lyahlnp7irfklfadn2a2ljzhafn")))
(substitute-keyword-arguments (package-arguments template) (outputs '("out" "doc"))
((#:build-targets _ #t) (build-system texlive-build-system)
#~(list "atveryend.dtx")))) (home-page "https://ctan.org/pkg/atveryend")
(home-page "https://ctan.org/macros/latex/contrib/atveryend") (synopsis "Hooks at the very end of a document")
(synopsis "Hooks at the very end of a document") (description
(description "This LaTeX packages provides two hooks for @code{\\end{document}} that
"This LaTeX packages provides two hooks for @code{\\end{document}} that
are executed after the hook of @code{\\AtEndDocument}: are executed after the hook of @code{\\AtEndDocument}:
@code{\\AfterLastShipout} can be used for code that is to be executed right @code{\\AfterLastShipout} can be used for code that is to be executed right
after the last @code{\\clearpage} before the @file{.aux} file is closed. after the last @code{\\clearpage} before the @file{.aux} file is closed.
@code{\\AtVeryEndDocument} is used for code after closing and final reading of @code{\\AtVeryEndDocument} is used for code after closing and final reading of
the @file{.aux} file.") the @file{.aux} file.")
(license license:lppl1.3+)))) (license license:lppl1.3+)))
(define-deprecated-package texlive-latex-atveryend texlive-atveryend) (define-deprecated-package texlive-latex-atveryend texlive-atveryend)