[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
226/452: gnu: texlive-xmltex: Fix build.
From: |
guix-commits |
Subject: |
226/452: gnu: texlive-xmltex: Fix build. |
Date: |
Fri, 9 Jun 2023 13:43:27 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 64a232b1bd8a41cf5f1979fab82cfc1bed5fe796
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 15 22:27:56 2023 +0200
gnu: texlive-xmltex: Fix build.
* gnu/packages/tex.scm (texlive-xmltex): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[arguments]: Remove unnecessary #:TEX-DIRECTORY keyword.
[native-inputs]: Add TEXLIVE-XMLTEXCONFIG.
---
gnu/packages/tex.scm | 142 +++++++++++++++++++++++++++------------------------
1 file changed, 76 insertions(+), 66 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index b4f73e5bf1..0603994dea 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3726,72 +3726,82 @@ and @code{pdfxmltex}.")
(license license:public-domain)))
(define-public texlive-xmltex
- (let ((template (simple-texlive-package
- "texlive-xmltex"
- (list
- "/doc/otherformats/xmltex/"
- "/tex/xmltex/")
- (base32
- "023gv9axq05vwqz50fnkig24dzahwlc4raks2s8xc4pzrv2dv1zy"))))
- (package
- (inherit template)
- (arguments
- (substitute-keyword-arguments (package-arguments template)
- ((#:tex-directory _ #t)
- "tex/xmltex/base")
- ((#:phases phases '%standard-phases)
- `(modify-phases ,phases
- (add-before 'install 'generate-formats
- (lambda* (#:key inputs #:allow-other-keys)
- (mkdir "web2c")
- (for-each (lambda (f)
- (copy-file f (basename f)))
- (find-files "tex" "\\.(ini|tex)$"))
- (invoke "fmtutil-sys" "--byfmt" "xmltex"
- "--fmtdir=web2c")
- (invoke "fmtutil-sys" "--byfmt" "pdfxmltex"
- "--fmtdir=web2c")))
- (add-after 'install 'install-formats-and-wrappers
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (texlive-bin (assoc-ref inputs "texlive-bin"))
- (pdftex (string-append texlive-bin "/bin/pdftex"))
- (web2c (string-append out "/share/texmf-dist/web2c")))
- (mkdir-p web2c)
- (copy-recursively "web2c" web2c)
- ;; Create convenience command wrappers.
- (mkdir-p (string-append out "/bin"))
- (symlink pdftex (string-append out "/bin/xmltex"))
- (symlink pdftex (string-append out "/bin/pdfxmltex"))
- #t)))))))
- (propagated-inputs
- ;; The following fonts are propagated as a texlive-updmap.cfg as the
font
- ;; maps need to be recreated for the fonts to be usable. They are
- ;; required by xmltex through mlnames.sty and unicode.sty.
- `(("texlive" ,(texlive-updmap.cfg
- (list
- texlive-amsfonts
- texlive-babel
- texlive-courier
- texlive-helvetic
- texlive-hyperref
- texlive-symbol
- texlive-tipa
- texlive-times
- texlive-zapfding
- ;; The following fonts, while not required, are used if
- ;; available:
- texlive-stmaryrd
- texlive-wasy)))))
- (native-inputs
- (list texlive-tex-ini-files))
- (home-page "https://www.ctan.org/pkg/xmltex/")
- (synopsis "Support for parsing XML documents")
- (description "The package provides an implementation of a parser for
-documents matching the XML 1.0 and XML Namespace Recommendations. Element and
-attribute names, as well as character data, may use any characters allowed in
-XML, using UTF-8 or a suitable 8-bit encoding.")
- (license license:lppl1.0+)))) ;per xmltex/base/readme.txt
+ (package
+ (name "texlive-xmltex")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/otherformats/xmltex/base/"
+ "tex/xmltex/base/")
+ (base32
+ "1rqwsapba8zs2ijjs7lpzksm20jqb8zbmanpw7wmdp2rq26ahylh")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'install 'generate-formats
+ (lambda _
+ (let ((web2c (string-append (getcwd) "/web2c")))
+ (mkdir "web2c")
+ (with-directory-excursion "tex/xmltex/base/"
+ (invoke "fmtutil-sys"
+ "--byfmt" "xmltex"
+ (string-append"--fmtdir=" web2c))
+ (invoke "fmtutil-sys"
+ "--byfmt" "pdfxmltex"
+ (string-append "--fmtdir=" web2c))))))
+ (add-after 'install 'install-formats-and-wrappers
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((pdftex (search-input-file inputs "/bin/pdftex"))
+ (web2c (string-append #$output "/share/texmf-dist/web2c")))
+ (mkdir-p web2c)
+ (copy-recursively "web2c" web2c)
+ (for-each delete-file (find-files web2c "\\.log$"))
+ ;; Create convenience command wrappers.
+ (mkdir-p (string-append #$output "/bin"))
+ (symlink pdftex (string-append #$output "/bin/xmltex"))
+ (symlink pdftex (string-append #$output
"/bin/pdfxmltex"))))))))
+ (native-inputs
+ (list texlive-tex-ini-files
+ texlive-xmltexconfig))
+ (propagated-inputs
+ (list (texlive-updmap.cfg
+ (list texlive-amsfonts
+ texlive-babel
+ texlive-courier
+ texlive-helvetic
+ texlive-hyperref
+ texlive-latex-fonts
+ texlive-stmaryrd
+ texlive-symbol
+ texlive-times
+ texlive-tipa
+ texlive-wasy
+ texlive-zapfding))
+ texlive-atbegshi
+ texlive-atveryend
+ texlive-babel
+ texlive-cm
+ texlive-dehyph
+ texlive-everyshi
+ texlive-firstaid
+ texlive-hyph-utf8
+ texlive-hyphen-base
+ texlive-l3backend
+ texlive-l3kernel
+ texlive-l3packages
+ texlive-tex-ini-files
+ texlive-xmltexconfig))
+ (home-page "https://ctan.org/pkg/xmltex")
+ (synopsis "Support for parsing XML documents")
+ (description
+ "The package provides an implementation of a parser for documents
+matching the XML 1.0 and XML Namespace Recommendations. Element and attribute
+names, as well as character data, may use any characters allowed in XML, using
+UTF-8 or a suitable 8-bit encoding.")
+ (license license:lppl1.0+))) ;per xmltex/base/readme.txt
(define-public texlive-hyperref
(let ((template (simple-texlive-package
- 175/452: gnu: texlive-nth: Refresh package definition., (continued)
- 175/452: gnu: texlive-nth: Refresh package definition., guix-commits, 2023/06/09
- 171/452: gnu: texlive-apa6: Refresh package definition., guix-commits, 2023/06/09
- 182/452: gnu: texlive-ly1: Refresh package definition., guix-commits, 2023/06/09
- 185/452: gnu: texlive-newtx: Refresh package definition., guix-commits, 2023/06/09
- 184/452: gnu: Add texlive-etextools., guix-commits, 2023/06/09
- 188/452: gnu: texlive-utopia: Refresh package definition., guix-commits, 2023/06/09
- 202/452: gnu: texlive-biblatex-apa: Refresh package definition., guix-commits, 2023/06/09
- 218/452: gnu: texlive-marvosym: Refresh package definition., guix-commits, 2023/06/09
- 208/452: gnu: texlive-pstricks: Refresh package definition., guix-commits, 2023/06/09
- 219/452: gnu: texlive-titlesec: Refresh package definition., guix-commits, 2023/06/09
- 226/452: gnu: texlive-xmltex: Fix build.,
guix-commits <=
- 240/452: gnu: texlive-makecmds: Refresh package definition., guix-commits, 2023/06/09
- 242/452: gnu: texlive-bidi: Fix build., guix-commits, 2023/06/09
- 247/452: gnu: texlive-listings: Refresh package definition., guix-commits, 2023/06/09
- 249/452: gnu: texlive-eso-pic: Refresh package definition., guix-commits, 2023/06/09
- 277/452: gnu: texlive-auxhook: Refresh package definition., guix-commits, 2023/06/09
- 275/452: gnu: texlive-halloweenmath: Refresh package definition., guix-commits, 2023/06/09
- 270/452: gnu: texlive-pdfx: Refresh package definition., guix-commits, 2023/06/09
- 254/452: gnu: texlive-ms: Refresh package definition., guix-commits, 2023/06/09
- 294/452: gnu: texlive-zhspacing: Refresh package definition., guix-commits, 2023/06/09
- 305/452: gnu: texlive-calrsfs: Refresh package definition., guix-commits, 2023/06/09