[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/72: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE.
From: |
guix-commits |
Subject: |
04/72: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE. |
Date: |
Mon, 3 Jun 2024 08:59:34 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 6a9cfce2b3de557be08178f13c03df681dec2374
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 10:42:34 2024 +0200
gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE.
* gnu/packages/tex.scm (texlive-libkpathsea)[version]: Refer to
%TEXLIVE-REVISION.
[source]: Inherit from TEXLIVE-SOURCE. Refactor snippet.
Change-Id: Ia370203f5fd7a0f2090d8d0b67c24ce5118b2a26
---
gnu/packages/tex.scm | 38 ++++++++++++++------------------------
1 file changed, 14 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 800dd17cfb..e50b713ea7 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -176,35 +176,25 @@
(define-public texlive-libkpathsea
(package
(name "texlive-libkpathsea")
- (version "20230313")
+ (version (number->string %texlive-revision))
(source
(origin
- (method url-fetch)
- (uri (string-append "ftp://tug.org/historic/systems/texlive/"
- (string-take version 4)
- "/texlive-" version "-source.tar.xz"))
- (sha256
- (base32
- "1fbrkv7g9j6ipmwjx27l8l9l974rmply8bhf7c2iqc6h3q7aly1q"))
+ (inherit texlive-source)
(modules '((guix build utils)
(ice-9 ftw)))
(snippet
- #~(begin
- (with-directory-excursion "libs"
- (for-each
- delete-file-recursively
- (scandir "."
- (lambda (file)
- (and (not (member file '("." "..")))
- (eq? 'directory (stat:type (stat file))))))))
- (with-directory-excursion "texk"
- (let ((preserved-directories '("." ".." "kpathsea")))
- (for-each
- delete-file-recursively
- (scandir "."
- (lambda (file)
- (and (not (member file preserved-directories))
- (eq? 'directory (stat:type (stat
file)))))))))))))
+ #~(let ((delete-other-directories
+ (lambda (root dirs)
+ (with-directory-excursion root
+ (for-each
+ delete-file-recursively
+ (scandir "."
+ (lambda (file)
+ (and (not (member file (append '("." "..")
dirs)))
+ (eq? 'directory (stat:type (stat
file)))))))))))
+ (delete-other-directories "libs" '())
+ (delete-other-directories "utils" '())
+ (delete-other-directories "texk" '("kpathsea"))))))
(build-system gnu-build-system)
(arguments
(list
- branch tex-team created (now 84b33a73c7), guix-commits, 2024/06/03
- 01/72: gnu: texlive-libkpathsea: Fix TEXMFCACHE location., guix-commits, 2024/06/03
- 02/72: gnu: texlive-libkpathsea: Remove duplicate documentation., guix-commits, 2024/06/03
- 03/72: gnu: Add texlive-source., guix-commits, 2024/06/03
- 05/72: gnu: texlive-libkpathsea: Better default values in "texmf.cnf"., guix-commits, 2024/06/03
- 04/72: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE.,
guix-commits <=
- 06/72: gnu: texlive-luatex: Set proper default values for "texmfcnf.lua"., guix-commits, 2024/06/03
- 07/72: gnu: texlive-context: Fix "context" call., guix-commits, 2024/06/03
- 08/72: gnu: Add texlive-libptexenc., guix-commits, 2024/06/03
- 09/72: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/06/03
- 10/72: gnu: tex.scm: Remove completed TODO., guix-commits, 2024/06/03
- 11/72: gnu: texlive-latex-bin: Create symlinks for "latex" variants., guix-commits, 2024/06/03
- 12/72: gnu: Add texlive-mfware-bin., guix-commits, 2024/06/03
- 13/72: gnu: Add texlive-omegaware-bin., guix-commits, 2024/06/03
- 15/72: gnu: Add texlive-texware-bin., guix-commits, 2024/06/03
- 17/72: gnu: Add texlive-uptex-bin., guix-commits, 2024/06/03