Archived
1
0
Fork 0

gnu: texlive-xypic: Refresh package definition.

* gnu/packages/tex.scm (texlive-xypic): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-GRAPHICS, TEXLIVE-IFTEX.
This commit is contained in:
Nicolas Goaziou 2023-05-15 21:38:48 +02:00
parent dcbc87de6a
commit 6e535c932d
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -10132,35 +10132,34 @@ glyphs.")
(license license:lppl1.3+))) (license license:lppl1.3+)))
(define-public texlive-xypic (define-public texlive-xypic
(let ((template (simple-texlive-package (package
"texlive-xypic" (name "texlive-xypic")
(list "/doc/generic/xypic/" (version (number->string %texlive-revision))
"/dvips/xypic/xy389dict.pro" (source (texlive-origin
"/fonts/enc/dvips/xypic/" name version
"/fonts/map/dvips/xypic/xypic.map" (list "doc/generic/xypic/"
"dvips/xypic/"
"/fonts/source/public/xypic/" "fonts/afm/public/xypic/"
"/fonts/afm/public/xypic/" "fonts/enc/dvips/xypic/"
"/fonts/tfm/public/xypic/" "fonts/map/dvips/xypic/"
"/fonts/type1/public/xypic/" "fonts/source/public/xypic/"
"/tex/generic/xypic/") "fonts/tfm/public/xypic/"
(base32 "fonts/type1/public/xypic/"
"09b51bbm189xh7039h5n8nmab5nn2bybhh26qjn08763m80zdhjg") "tex/generic/xypic/")
#:trivial? #t))) (base32
(package "09b51bbm189xh7039h5n8nmab5nn2bybhh26qjn08763m80zdhjg")))
(inherit template) (outputs '("out" "doc"))
(arguments (build-system texlive-build-system)
(substitute-keyword-arguments (package-arguments template) (propagated-inputs
((#:phases phases) (list texlive-graphics texlive-iftex))
`(modify-phases ,phases (home-page "https://ctan.org/pkg/xypic")
(delete 'reset-gzip-timestamps))))) (synopsis "Flexible diagramming macros")
(home-page "https://www.ctan.org/pkg/xypic") (description
(synopsis "Flexible diagramming macros") "This package provides a package for typesetting a variety of graphs and
(description "This is a package for typesetting a variety of graphs and
diagrams with TeX. Xy-pic works with most formats (including LaTeX, diagrams with TeX. Xy-pic works with most formats (including LaTeX,
AMS-LaTeX, AMS-TeX, and plain TeX). The distribution includes Michael Barr's AMS-LaTeX, AMS-TeX, and plain TeX). The distribution includes Michael Barr's
@code{diag} package, which was previously distributed stand-alone.") @code{diag} package, which was previously distributed stand-alone.")
(license license:gpl3+)))) (license license:gpl3+)))
(define-deprecated-package texlive-fonts-xypic texlive-xypic) (define-deprecated-package texlive-fonts-xypic texlive-xypic)