[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/07: gnu: Replace texlive-generic-pdftex with texlive-pdftex.
From: |
guix-commits |
Subject: |
03/07: gnu: Replace texlive-generic-pdftex with texlive-pdftex. |
Date: |
Tue, 27 Oct 2020 04:29:30 -0400 (EDT) |
rekado pushed a commit to branch wip-texlive
in repository guix.
commit 0b1e42873f7fa594b0ff91932fda63d50853fdc5
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Oct 27 09:14:28 2020 +0100
gnu: Replace texlive-generic-pdftex with texlive-pdftex.
* gnu/packages/tex.scm (texlive-generic-pdftex): Deprecate in favor of...
(texlive-pdftex): ...this new variable.
---
gnu/packages/tex.scm | 62 +++++++++++++++++-----------------------------------
1 file changed, 20 insertions(+), 42 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 58f3699..9d3459b 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -5851,49 +5851,24 @@ requires the suffix package, which in turn requires
that it runs under
e-TeX.")
(license license:lppl1.3+)))
-(define-public texlive-generic-pdftex
+(define-public texlive-pdftex
(package
- (name "texlive-generic-pdftex")
- (version (number->string %texlive-revision))
- (source (origin
- (method svn-fetch)
- (uri (svn-reference
- (url (string-append "svn://www.tug.org/texlive/tags/"
- %texlive-tag "/Master/texmf-dist/"
- "/tex/generic/pdftex"))
- (revision %texlive-revision)))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "0k68zmqzs4qvrqxdwsrawbjb14hxqjfamq649azvai0jjxdpkljd"))))
- (build-system trivial-build-system)
- (arguments
- `(#:modules ((guix build utils))
- #:builder
- (begin
- (use-modules (guix build utils))
- (let ((target (string-append (assoc-ref %outputs "out")
- "/share/texmf-dist/tex/generic/pdftex"))
- (target-map (string-append (assoc-ref %outputs "out")
- "/share/texmf-dist/fonts/map/pdftex")))
- (mkdir-p target)
- (copy-recursively (assoc-ref %build-inputs "source") target)
- (mkdir-p target-map)
- (copy-recursively (assoc-ref %build-inputs "pdftex-map") target-map)
- #t))))
- (native-inputs
- `(("pdftex-map"
- ,(origin
- (method svn-fetch)
- (uri (svn-reference
- (url (string-append "svn://www.tug.org/texlive/tags/"
- %texlive-tag "/Master/texmf-dist/"
- "/fonts/map/pdftex"))
- (revision %texlive-revision)))
- (file-name (string-append name "-map-" version "-checkout"))
- (sha256
- (base32
- "03rfif2631pgd8g1ar4xblcdh078kky7fvw3kfsj5a47rxxgicp2"))))))
+ (inherit (simple-texlive-package
+ "texlive-pdftex"
+ (list "/doc/pdftex/"
+ "/doc/man/man1/pdfetex.1"
+ "/doc/man/man1/pdftex.1"
+
+ "/fonts/map/dvips/dummy-space/dummy-space.map"
+ "/fonts/tfm/public/pdftex/dummy-space.tfm"
+ "/fonts/type1/public/pdftex/dummy-space.pfb"
+ "/scripts/simpdftex/simpdftex"
+
+ "/tex/generic/config/pdftex-dvi.tex"
+ "/tex/generic/pdftex/")
+ (base32
+ "0wsgbl0jrqc1qzgf23dla6b95lv2h8x6xvs5466d8jdrih6pwriq")
+ #:trivial? #t))
(home-page "https://www.ctan.org/pkg/pdftex")
(synopsis "TeX extension for direct creation of PDF")
(description
@@ -5901,6 +5876,9 @@ e-TeX.")
directly generate PDF documents instead of DVI.")
(license license:gpl2+)))
+(define-public texlive-generic-pdftex
+ (deprecated-package "texlive-generic-pdftex" texlive-pdftex))
+
(define texlive-texmf
(package
(name "texlive-texmf")
- branch wip-texlive updated (79cf9fc -> 3e6908d), guix-commits, 2020/10/27
- 02/07: gnu: lilypond: Use new name of texlive-lh., guix-commits, 2020/10/27
- 07/07: gnu: chez-web: Use new names of TeX Live packages., guix-commits, 2020/10/27
- 01/07: gnu: lilypond: Remove obsolete build phase., guix-commits, 2020/10/27
- 03/07: gnu: Replace texlive-generic-pdftex with texlive-pdftex.,
guix-commits <=
- 04/07: gnu: teximpatient: Use new name for texlive-pdftex., guix-commits, 2020/10/27
- 05/07: gnu: chez-web: Remove obsolete build phase., guix-commits, 2020/10/27
- 06/07: gnu: chez-sockets: Use new name of texlive-pdftex., guix-commits, 2020/10/27