[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
325/452: gnu: texlive-kpathsea: Refresh package definition.
From: |
guix-commits |
Subject: |
325/452: gnu: texlive-kpathsea: Refresh package definition. |
Date: |
Fri, 9 Jun 2023 13:43:51 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit f6c1565cc16aaca4880c09bf8f908d099e31eb6c
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 16 22:48:50 2023 +0200
gnu: texlive-kpathsea: Refresh package definition.
* gnu/packages/tex.scm (texlive-kpathsea): Remove SIMPLE-TEXLIVE-PACKAGE
call.
---
gnu/packages/tex.scm | 137 +++++++++++++++++++++++++++++----------------------
1 file changed, 78 insertions(+), 59 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 02530abd43..36d43a5f1e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3084,65 +3084,84 @@ package.")
(license license:lppl1.3+)))
(define-public texlive-kpathsea
- (let ((template (simple-texlive-package
- "texlive-kpathsea"
- (list "/web2c/amiga-pl.tcx"
- "/web2c/cp1250cs.tcx"
- "/web2c/cp1250pl.tcx"
- "/web2c/cp1250t1.tcx"
- "/web2c/cp227.tcx"
- "/web2c/cp852-cs.tcx"
- "/web2c/cp852-pl.tcx"
- "/web2c/cp8bit.tcx"
- "/web2c/empty.tcx"
- "/web2c/fmtutil.cnf"
- "/web2c/il1-t1.tcx"
- "/web2c/il2-cs.tcx"
- "/web2c/il2-pl.tcx"
- "/web2c/il2-t1.tcx"
- "/web2c/kam-cs.tcx"
- "/web2c/kam-t1.tcx"
- "/web2c/macce-pl.tcx"
- "/web2c/macce-t1.tcx"
- "/web2c/maz-pl.tcx"
- "/web2c/mktex.cnf"
- "/web2c/mktex.opt"
- "/web2c/mktexdir"
- "/web2c/mktexdir.opt"
- "/web2c/mktexnam"
- "/web2c/mktexnam.opt"
- "/web2c/mktexupd"
- "/web2c/natural.tcx"
- "/web2c/tcvn-t5.tcx"
- "/web2c/viscii-t5.tcx")
- (base32
- "08nfk5hicqbvnz73rjbxi97lcakd9i1k2cy4qi2cwghan92650jq")
- #:trivial? #t)))
- (package
- (inherit template)
- (arguments
- (substitute-keyword-arguments (package-arguments template)
- ((#:phases phases '%standard-phases)
- `(modify-phases ,phases
- (add-after 'unpack 'patch-references
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((dirs (map dirname (list (which "sed")
- (which "awk")))))
- (substitute* '("web2c/mktexdir"
- "web2c/mktexnam"
- "web2c/mktexupd")
- (("^version=" m)
- (format #false "PATH=\"~{~a:~}$PATH\"; export PATH~%~a"
- dirs m))))))))))
- (inputs
- (list sed gawk))
- (home-page "https://www.tug.org/texlive/")
- (synopsis "Files related to the path searching library for TeX")
- (description "Kpathsea is a library and utility programs which provide
-path searching facilities for TeX file types, including the self-locating
-feature required for movable installations, layered on top of a general search
-mechanism. This package provides supporting files.")
- (license license:lgpl3+))))
+ (package
+ (name "texlive-kpathsea")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/info/dir"
+ "doc/info/kpathsea.info"
+ "doc/info/tds.info"
+ "doc/info/web2c.info"
+ "doc/kpathsea/"
+ "doc/man/man1/kpseaccess.1"
+ "doc/man/man1/kpseaccess.man1.pdf"
+ "doc/man/man1/kpsereadlink.1"
+ "doc/man/man1/kpsereadlink.man1.pdf"
+ "doc/man/man1/kpsestat.1"
+ "doc/man/man1/kpsestat.man1.pdf"
+ "doc/man/man1/kpsewhich.1"
+ "doc/man/man1/kpsewhich.man1.pdf"
+ "doc/web2c/web2c.html"
+ "doc/web2c/web2c.pdf"
+ "web2c/amiga-pl.tcx"
+ "web2c/cp1250cs.tcx"
+ "web2c/cp1250pl.tcx"
+ "web2c/cp1250t1.tcx"
+ "web2c/cp227.tcx"
+ "web2c/cp852-cs.tcx"
+ "web2c/cp852-pl.tcx"
+ "web2c/cp8bit.tcx"
+ "web2c/empty.tcx"
+ "web2c/fmtutil.cnf"
+ "web2c/il1-t1.tcx"
+ "web2c/il2-cs.tcx"
+ "web2c/il2-pl.tcx"
+ "web2c/il2-t1.tcx"
+ "web2c/kam-cs.tcx"
+ "web2c/kam-t1.tcx"
+ "web2c/macce-pl.tcx"
+ "web2c/macce-t1.tcx"
+ "web2c/maz-pl.tcx"
+ "web2c/mktex.cnf"
+ "web2c/mktex.opt"
+ "web2c/mktexdir"
+ "web2c/mktexdir.opt"
+ "web2c/mktexnam"
+ "web2c/mktexnam.opt"
+ "web2c/mktexupd"
+ "web2c/natural.tcx"
+ "web2c/tcvn-t5.tcx"
+ "web2c/texmf.cnf"
+ "web2c/viscii-t5.tcx")
+ (base32
+ "0wfixvszpmri2j19wbg69fqw2iiqmn7blrbxhq17qddbwinm1dbq")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (arguments
+ (list
+ #:texlive-latex-base #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-references
+ (lambda _
+ (let ((dirs (map dirname (list (which "sed")
+ (which "awk")))))
+ (substitute* '("web2c/mktexdir"
+ "web2c/mktexnam"
+ "web2c/mktexupd")
+ (("^version=" m)
+ (format #false "PATH=\"~{~a:~}$PATH\"; export PATH~%~a"
+ dirs m)))))))))
+ (inputs (list sed gawk))
+ (home-page "https://ctan.org/pkg/kpathsea")
+ (synopsis "Files related to the path searching library for TeX")
+ (description
+ "Kpathsea is a library and utility programs which provide path searching
+facilities for TeX file types, including the self-locating feature required
+for movable installations, layered on top of a general search mechanism. This
+package provides supporting files.")
+ (license license:lgpl3+)))
(define-public texlive-kpfonts
(package
- 298/452: gnu: texlive-inconsolata: Refresh package definition., (continued)
- 298/452: gnu: texlive-inconsolata: Refresh package definition., guix-commits, 2023/06/09
- 297/452: gnu: texlive-times: Refresh package definition., guix-commits, 2023/06/09
- 299/452: gnu: texlive-ae: Refresh package definition., guix-commits, 2023/06/09
- 301/452: gnu: texlive-etoolbox: Refresh package definition., guix-commits, 2023/06/09
- 307/452: gnu: texlive-pstool: Refresh package definition., guix-commits, 2023/06/09
- 310/452: gnu: Add texlive-cmexb., guix-commits, 2023/06/09
- 313/452: gnu: texlive-lua-alt-getopt: Refresh package definition., guix-commits, 2023/06/09
- 316/452: gnu: texlive-url: Refresh package definition., guix-commits, 2023/06/09
- 320/452: gnu: texlive-glyphlist: Refresh package definition., guix-commits, 2023/06/09
- 321/452: gnu: texlive-fancyvrb: Refresh package definition., guix-commits, 2023/06/09
- 325/452: gnu: texlive-kpathsea: Refresh package definition.,
guix-commits <=
- 324/452: gnu: texlive-kpfonts: Refresh package definition., guix-commits, 2023/06/09
- 328/452: gnu: texlive-ukrhyph: Refresh package definition., guix-commits, 2023/06/09
- 335/452: gnu: texlive-knuth-lib: Refresh package definition., guix-commits, 2023/06/09
- 338/452: gnu: texlive-tex-gyre: Refresh package definition., guix-commits, 2023/06/09
- 343/452: gnu: texlive-cbfonts-fd: Refresh package definition., guix-commits, 2023/06/09
- 356/452: gnu: texlive-siunitx: Refresh package definition., guix-commits, 2023/06/09
- 362/452: gnu: texlive-hyph-utf8: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/06/09
- 358/452: gnu: texlive-latex-base: Refresh package definition., guix-commits, 2023/06/09
- 368/452: gnu: texlive-morefloats: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/06/09
- 363/452: gnu: texlive-amsmath: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/06/09