me
/
guix
Archived
1
0
Fork 0

gnu: texlive-atbegshi: Refresh package definition.

* gnu/packages/tex.scm (texlive-atbegshi): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-IFTEX, TEXLIVE-INFWARERR, TEXLIVE-LTXCMDS.
Nicolas Goaziou 2023-05-15 23:42:30 +02:00
parent 260140f331
commit 0c45eb5be8
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 18 additions and 21 deletions

View File

@ -9470,30 +9470,27 @@ not only with KOMA-Script classes but also with the standard classes.")
(define-deprecated-package texlive-latex-koma-script texlive-koma-script) (define-deprecated-package texlive-latex-koma-script texlive-koma-script)
(define-public texlive-atbegshi (define-public texlive-atbegshi
(let ((template (simple-texlive-package (package
"texlive-atbegshi" (name "texlive-atbegshi")
(list "doc/latex/atbegshi/" (version (number->string %texlive-revision))
"source/latex/atbegshi/" (source (texlive-origin
"tex/generic/atbegshi/") name version
(base32 (list "doc/latex/atbegshi/" "source/latex/atbegshi/"
"0vd90wdjwj5w4g4xka4nms3rgixjw63iwf0hj0v1akcfflwvgn69")))) "tex/generic/atbegshi/")
(package (base32
(inherit template) "0vd90wdjwj5w4g4xka4nms3rgixjw63iwf0hj0v1akcfflwvgn69")))
(outputs '("out" "doc")) (outputs '("out" "doc"))
(arguments (build-system texlive-build-system)
(substitute-keyword-arguments (package-arguments template) (propagated-inputs
((#:tex-directory _ '()) (list texlive-iftex texlive-infwarerr texlive-ltxcmds))
"generic/atbegshi") (home-page "https://ctan.org/pkg/atbegshi")
((#:build-targets _ '()) (synopsis "Execute commands at @code{\\shipout} time")
#~(list "atbegshi.dtx")))) (description
(home-page "https://www.ctan.org/pkg/atbegshi") "This package is a modern reimplementation of package @code{everyshi},
(synopsis "Execute commands at @code{\\shipout} time")
(description
"This package is a modern reimplementation of package @code{everyshi},
providing various commands to be executed before a @code{\\shipout} command. providing various commands to be executed before a @code{\\shipout} command.
It makes use of e-TeXs facilities if they are available. The package may It makes use of e-TeXs facilities if they are available. The package may
be used either with LaTeX or with plain TeX.") be used either with LaTeX or with plain TeX.")
(license license:lppl1.3c+)))) (license license:lppl1.3c+)))
(define-deprecated-package texlive-generic-atbegshi texlive-atbegshi) (define-deprecated-package texlive-generic-atbegshi texlive-atbegshi)