gnu: texlive-latex-ucs -> texlive-ucs.

* gnu/packages/tex.scm (texlive-ucs): New variable.
(texlive-latex-ucs): Deprecate variable.
* gnu/packages/python-xyz.scm (python-nbconvert)[propagated-inputs]: Use new
name.
This commit is contained in:
Nicolas Goaziou 2023-05-14 11:27:50 +02:00
parent 3c3bb270da
commit 91461e95d4
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D
2 changed files with 21 additions and 32 deletions

View file

@ -15205,11 +15205,11 @@ (define-public python-nbconvert
texlive-eurosym texlive-eurosym
texlive-fonts-rsfs texlive-fonts-rsfs
texlive-jknappen texlive-jknappen
texlive-latex-ucs
texlive-lm texlive-lm
texlive-lm-math texlive-lm-math
texlive-mathpazo texlive-mathpazo
texlive-oberdiek texlive-oberdiek
texlive-ucs
texlive-zapfding)))) texlive-zapfding))))
(home-page "https://jupyter.org") (home-page "https://jupyter.org")
(synopsis "Converting Jupyter Notebooks") (synopsis "Converting Jupyter Notebooks")

View file

@ -8373,46 +8373,35 @@ (define-public texlive-wrapfig
(define-deprecated-package texlive-latex-wrapfig texlive-wrapfig) (define-deprecated-package texlive-latex-wrapfig texlive-wrapfig)
(define-public texlive-latex-ucs (define-public texlive-ucs
(package (package
(name "texlive-latex-ucs") (name "texlive-ucs")
(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/ucs/" "tex/latex/ucs/data/"
(url (string-append "svn://www.tug.org/texlive/tags/" "tex/latex/ucs/utils/")
%texlive-tag "/Master/texmf-dist/" (base32
"/tex/latex/ucs")) "1hr7dsfx7vggai1j7saba48lsm1a003my9qkbr6qmazgc3lbcvl8")))
(revision %texlive-revision))) (outputs '("out" "doc"))
(file-name (string-append name "-" version "-checkout")) (build-system texlive-build-system)
(sha256 (propagated-inputs
(base32 (list texlive-graphics
"0rrxwi60wmz5dfjifl4fwk66plf7wix85qnhfv4ylvmj6qi6hw37")))) texlive-hyperref))
(build-system trivial-build-system) (home-page "https://ctan.org/pkg/ucs")
(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/ucs")))
(mkdir-p target)
(copy-recursively (assoc-ref %build-inputs "source") target)
#t))))
(home-page "https://www.ctan.org/pkg/ucs")
(synopsis "Extended UTF-8 input encoding support for LaTeX") (synopsis "Extended UTF-8 input encoding support for LaTeX")
(description (description
"The bundle provides the @code{ucs} package, and @code{utf8x.def}, "The bundle provides the @code{ucs} package, and @file{utf8x.def},
together with a large number of support files. The @code{utf8x.def} together with a large number of support files. The @file{utf8x.def}
definition file for use with @code{inputenc} covers a wider range of Unicode definition file for use with @code{inputenc} covers a wider range of Unicode
characters than does @code{utf8.def} in the LaTeX distribution. The package characters than does @file{utf8.def} in the LaTeX distribution. The package
provides facilities for efficient use of its large sets of Unicode characters. provides facilities for efficient use of its large sets of Unicode characters.
Glyph production may be controlled by various options, which permits use of Glyph production may be controlled by various options, which permits use of
non-ASCII characters when coding mathematical formulae. Note that the bundle non-ASCII characters when coding mathematical formulae.")
previously had an alias unicode; that alias has now been withdrawn, and no
package of that name now exists.")
(license license:lppl1.3+))) (license license:lppl1.3+)))
(define-deprecated-package texlive-latex-ucs texlive-ucs)
(define-public texlive-latex-preview (define-public texlive-latex-preview
(package (package
(name "texlive-latex-preview") (name "texlive-latex-preview")