* [PATCH] gnu: texlive: Drop input texlive-extra.
@ 2015-01-08 21:11 Andreas Enge
2015-01-08 22:50 ` Andreas Enge
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Enge @ 2015-01-08 21:11 UTC (permalink / raw)
To: guix-devel
Hello,
I am currently working a bit on texlive with the goal of simplifying the
recipe and disentangling its two outputs.
This first patch drops texlive-extra-src. We use it only to install its
subdirectory tlpkg, which contains perl files for tlmgr, which we do not
need. According to
https://www.tug.org/texlive/distro.html :
"System distributions all have their own packaging systems, so tlmgr is not
used for TeX-related package updates by any distro that we know of."
Notice that tlmgr does not work currently either, as it does not find the
perl include files from tlpkg anyway:
$ tlmgr
Can't locate TeXLive/TLConfig.pm in @INC (@INC contains: /gnu/store/texmf-dist/scripts/texlive /gnu/store/tlpkg /home/enge/.guix-profile/lib/perl5/site_perl/5.16.1/x86_64-linux ...
Currently I am trying the build; okay to push if the build succeeds?
Andreas
* gnu/packages/texlive.scm (texlive-extra-src): Drop variable.
* gnu/packages/texlive.scm (texlive): Drop input texlive-extra-src; it is
only useful for tlmgr, which is not used in distribution-wide
installations.
---
gnu/packages/texlive.scm | 19 ++-----------------
1 file changed, 2 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/texlive.scm b/gnu/packages/texlive.scm
index f14bbb8..720fa31 100644
--- a/gnu/packages/texlive.scm
+++ b/gnu/packages/texlive.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
+;;; Copyright © 2013, 2014, 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
;;;
;;; This file is part of GNU Guix.
@@ -42,13 +42,6 @@
#:use-module (gnu packages zip)
#:autoload (gnu packages texinfo) (texinfo))
-(define texlive-extra-src
- (origin
- (method url-fetch)
- (uri "ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-extra.tar.xz")
- (sha256 (base32
- "1zlnjysvxskcy05iva6jfklirwv12wqyn3ia119a7xnqlvhpqz33"))))
-
(define texlive-texmf-src
(origin
(method url-fetch)
@@ -66,8 +59,7 @@
(sha256 (base32
"1glmaw2jv42grbsn05kay825j66scimjqqc32776bb1356q4xfq8"))))
(build-system gnu-build-system)
- (inputs `(("texlive-extra-src" ,texlive-extra-src)
- ("texlive-texmf-src" ,texlive-texmf-src)
+ (inputs `(("texlive-texmf-src" ,texlive-texmf-src)
("cairo" ,cairo)
("fontconfig" ,fontconfig)
("fontforge" ,fontforge)
@@ -147,13 +139,6 @@
;; Delete texmf-dist from "data", since it will be reinstalled
;; from texlive-texmf.
(system* "rm" "-r" (string-append data "/texmf-dist"))
- ;; Unpack texlive-extra and install tlpkg.
- (mkdir "texlive-extra")
- (with-directory-excursion "texlive-extra"
- (apply unpack (list #:source texlive-extra))
- (apply patch-source-shebangs (list #:source texlive-extra))
- (system* "mv" "tlpkg" data)
- (chdir ".."))
;; Unpack and install texlive-texmf.
(mkdir "texlive-texmf")
(with-directory-excursion "texlive-texmf"
--
2.2.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: texlive: Drop input texlive-extra.
2015-01-08 21:11 [PATCH] gnu: texlive: Drop input texlive-extra Andreas Enge
@ 2015-01-08 22:50 ` Andreas Enge
2015-01-09 13:31 ` Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Enge @ 2015-01-08 22:50 UTC (permalink / raw)
To: guix-devel
Actually, it turns out that tlpkg is also used by updmap; so please disregard
my previous message.
Andreas
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: texlive: Drop input texlive-extra.
2015-01-08 22:50 ` Andreas Enge
@ 2015-01-09 13:31 ` Ludovic Courtès
0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2015-01-09 13:31 UTC (permalink / raw)
To: Andreas Enge; +Cc: guix-devel
Andreas Enge <andreas@enge.fr> skribis:
> Actually, it turns out that tlpkg is also used by updmap; so please disregard
> my previous message.
Oh, that’s unexpected if tlmgr is some sort of package/update manager.
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-09 13:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-08 21:11 [PATCH] gnu: texlive: Drop input texlive-extra Andreas Enge
2015-01-08 22:50 ` Andreas Enge
2015-01-09 13:31 ` Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).