me
/
guix
Archived
1
0
Fork 0

gnu: texlive-latex-cmap -> texlive-cmap.

* gnu/packages/tex.scm (texlive-cmap): New variable.
(texlive-latex-cmap): Deprecate variable.
* gnu/packages/maths.scm (hypre):
* gnu/packages/sphinx.scm (python-sphinx): Use new name.
Nicolas Goaziou 2023-05-13 16:15:07 +02:00
parent 1558776ae7
commit e5e13d03f0
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
3 changed files with 16 additions and 29 deletions

View File

@ -5798,7 +5798,7 @@ set.")
texlive-xcolor texlive-xcolor
texlive-xypic texlive-xypic
texlive-listofitems texlive-listofitems
texlive-latex-cmap texlive-cmap
texlive-latex-colortbl texlive-latex-colortbl
texlive-latex-float texlive-latex-float
texlive-fncychap texlive-fncychap

View File

@ -113,7 +113,7 @@
texlive-ltxcmds texlive-ltxcmds
texlive-hyperref texlive-hyperref
texlive-latex-base ;alltt, atbegshi, makeidx, textcomp texlive-latex-base ;alltt, atbegshi, makeidx, textcomp
texlive-latex-cmap texlive-cmap
texlive-fancyhdr texlive-fancyhdr
texlive-fancyvrb texlive-fancyvrb
texlive-latex-float texlive-latex-float

View File

@ -6569,40 +6569,27 @@ drivers, and VTeX and pdfTeX.")
(define-deprecated-package texlive-latex-changebar texlive-changebar) (define-deprecated-package texlive-latex-changebar texlive-changebar)
(define-public texlive-latex-cmap (define-public texlive-cmap
(package (package
(name "texlive-latex-cmap") (name "texlive-cmap")
(version (number->string %texlive-revision)) (version (number->string %texlive-revision))
(source (origin (source (texlive-origin
(method svn-fetch) name version
(uri (svn-reference (list "doc/latex/cmap/"
(url (string-append "svn://www.tug.org/texlive/tags/" "tex/latex/cmap/")
%texlive-tag "/Master/texmf-dist/" (base32
"/tex/latex/cmap")) "1hag26l3g9mpmmy1kn7lrnfzzr8k0hpm259qp087smggykvsjc4v")))
(revision %texlive-revision))) (outputs '("out" "doc"))
(file-name (string-append name "-" version "-checkout")) (build-system texlive-build-system)
(sha256 (home-page "https://ctan.org/pkg/cmap")
(base32 (synopsis "Make PDF files searchable and copyable")
"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")
(description (description
"This package embeds CMap tables into PDF files to make search and "This package embeds CMap tables into PDF files to make search and
copy-and-paste functions work properly.") copy-and-paste functions work properly.")
(license license:lppl))) (license license:lppl)))
(define-deprecated-package texlive-latex-cmap texlive-cmap)
(define-public texlive-latex-colortbl (define-public texlive-latex-colortbl
(package (package
(name "texlive-latex-colortbl") (name "texlive-latex-colortbl")