From 42e1394b11d1da7dd8c73bdeb1ad602b728d865b Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Fri, 11 Jul 2014 10:58:56 -0500 Subject: gnu: texlive: Upgrade to 2014. * gnu/packages/texlive.scm (texlive-extra-src, texlive-texmf-src, texlive): Upgrade to 2014. (texlive)[arguments]: Remove 'patch-perl-shebang' phase. --- gnu/packages/texlive.scm | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/texlive.scm b/gnu/packages/texlive.scm index f562732318..b136c99979 100644 --- a/gnu/packages/texlive.scm +++ b/gnu/packages/texlive.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Andreas Enge +;;; Copyright © 2014 Eric Bavier ;;; ;;; This file is part of GNU Guix. ;;; @@ -43,26 +44,26 @@ (define texlive-extra-src (origin (method url-fetch) - (uri "ftp://tug.org/historic/systems/texlive/2013/texlive-20130530-extra.tar.xz") + (uri "ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-extra.tar.xz") (sha256 (base32 - "15r1qyn7x1iamiiycylx8vzsg27h1r962v6dz9q70f9pdp2rjr6s")))) + "1zlnjysvxskcy05iva6jfklirwv12wqyn3ia119a7xnqlvhpqz33")))) (define texlive-texmf-src (origin (method url-fetch) - (uri "ftp://tug.org/historic/systems/texlive/2013/texlive-20130530-texmf.tar.xz") + (uri "ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-texmf.tar.xz") (sha256 (base32 - "09kza0ha0x9cm4k2qm9w31h3g94y9hy17jahnnsirqyy8rpdqgwg")))) + "0qsr55ms1278dhmgixs5qqwd4fxhh369ihkki6wgh8xaqm8p48p0")))) (define-public texlive (package (name "texlive") - (version "2013") + (version "2014") (source (origin (method url-fetch) - (uri "ftp://tug.org/historic/systems/texlive/2013/texlive-20130530-source.tar.xz") + (uri "ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-source.tar.xz") (sha256 (base32 - "1m3ripkmra53jwkaqcxxhabc3yvqrfm7pfxldnqirp849hp861d9")))) + "1glmaw2jv42grbsn05kay825j66scimjqqc32776bb1356q4xfq8")))) (build-system gnu-build-system) (inputs `(("texlive-extra-src" ,texlive-extra-src) ("texlive-texmf-src" ,texlive-texmf-src) @@ -115,11 +116,6 @@ "--with-system-zlib" "--with-system-zziplib") #:phases - (alist-cons-before - 'configure 'patch-perl-shebang - (lambda _ - (substitute* "utils/psutils/Makefile.in" - (("/usr/bin/env perl") (which "perl")))) (alist-cons-after 'install 'postinst (lambda* (#:key inputs outputs #:allow-other-keys #:rest args) @@ -174,7 +170,7 @@ (system* "updmap-sys" "--nohash" "--syncwithtrees") (system* "mktexlsr") (system* "fmtutil-sys" "--all"))) - %standard-phases))))) + %standard-phases)))) (synopsis "Tex Live, a package of the TeX typesetting system") (description "TeX Live provides a comprehensive TeX document production system. -- cgit v1.2.3