diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index a462a413ac..6466d1b8c7 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -5798,7 +5798,7 @@ (define-public hypre texlive-xcolor texlive-xypic texlive-listofitems - texlive-latex-cmap + texlive-cmap texlive-latex-colortbl texlive-latex-float texlive-fncychap diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 4e912ae252..906b05e979 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -113,7 +113,7 @@ (define-public python-sphinx texlive-ltxcmds texlive-hyperref texlive-latex-base ;alltt, atbegshi, makeidx, textcomp - texlive-latex-cmap + texlive-cmap texlive-fancyhdr texlive-fancyvrb texlive-latex-float diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3390978bdf..a1b70ac463 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6569,40 +6569,27 @@ (define-public texlive-changebar (define-deprecated-package texlive-latex-changebar texlive-changebar) -(define-public texlive-latex-cmap +(define-public texlive-cmap (package - (name "texlive-latex-cmap") + (name "texlive-cmap") (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/latex/cmap")) - (revision %texlive-revision))) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "0m4r52gw9vwsi1pzwh0cy03jxhwizymi4a2fj3jfs5rrvh105r5y")))) - (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/latex/cmap"))) - (mkdir-p target) - (copy-recursively (assoc-ref %build-inputs "source") target) - #t)))) - (home-page "https://www.tug.org/svn/texlive/tags/texlive-2017.1/\ -Master/texmf-dist/tex/latex/cmap/") - (synopsis "CMap support for PDF files") + (source (texlive-origin + name version + (list "doc/latex/cmap/" + "tex/latex/cmap/") + (base32 + "1hag26l3g9mpmmy1kn7lrnfzzr8k0hpm259qp087smggykvsjc4v"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/cmap") + (synopsis "Make PDF files searchable and copyable") (description "This package embeds CMap tables into PDF files to make search and copy-and-paste functions work properly.") (license license:lppl))) +(define-deprecated-package texlive-latex-cmap texlive-cmap) + (define-public texlive-latex-colortbl (package (name "texlive-latex-colortbl")