Archived
1
0
Fork 0

gnu: texlive-latex-upquote -> texlive-upquote.

* gnu/packages/tex.scm (texlive-upquote): New variable.
(texlive-latex-upquote): Deprecate variable.
* gnu/packages/cran.scm (r-prereg):
* gnu/packages/maths.scm (hypre):
* gnu/packages/python-xyz.scm (python-nbconvert):
* gnu/packages/sphinx.scm (python-sphinx):
* gnu/packages/statistics.scm (r-with-tests): Use new name.
This commit is contained in:
Nicolas Goaziou 2023-05-13 12:09:15 +02:00
parent 8dba450404
commit 9550a20361
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D
6 changed files with 21 additions and 19 deletions

View file

@ -36201,7 +36201,7 @@ package online.")
texlive-graphics texlive-graphics
texlive-latex-threeparttable texlive-latex-threeparttable
texlive-titlesec texlive-titlesec
texlive-latex-upquote texlive-upquote
texlive-listings texlive-listings
texlive-polyglossia texlive-polyglossia
texlive-titling texlive-titling

View file

@ -5814,7 +5814,7 @@ set.")
texlive-stackengine texlive-stackengine
texlive-latex-tabulary texlive-latex-tabulary
texlive-tocloft texlive-tocloft
texlive-latex-upquote texlive-upquote
texlive-latex-varwidth texlive-latex-varwidth
texlive-titlesec texlive-titlesec
texlive-ulem texlive-ulem

View file

@ -15192,7 +15192,7 @@ time.")
texlive-ms texlive-ms
texlive-latex-parskip texlive-latex-parskip
texlive-trimspaces texlive-trimspaces
texlive-latex-upquote texlive-upquote
texlive-stringenc texlive-stringenc
texlive-tcolorbox texlive-tcolorbox
texlive-titling texlive-titling

View file

@ -128,7 +128,7 @@
texlive-latex-tabulary texlive-latex-tabulary
texlive-titlesec texlive-titlesec
texlive-tools ;multicol, longtable texlive-tools ;multicol, longtable
texlive-latex-upquote texlive-upquote
texlive-latex-varwidth texlive-latex-varwidth
texlive-oberdiek ;hypcap texlive-oberdiek ;hypcap
texlive-wrapfig texlive-wrapfig

View file

@ -399,7 +399,7 @@ as.POSIXct(if (\"\" != Sys.getenv(\"SOURCE_DATE_EPOCH\")) {\
texlive-hyperref texlive-hyperref
texlive-oberdiek texlive-oberdiek
texlive-tools texlive-tools
texlive-latex-upquote texlive-upquote
texlive-url texlive-url
texlive-latex-xkeyval)) texlive-latex-xkeyval))
tzdata-for-tests tzdata-for-tests

View file

@ -6413,26 +6413,26 @@ might say:
@end example\n") @end example\n")
(license license:lppl))) (license license:lppl)))
(define-public texlive-latex-upquote (define-public texlive-upquote
(package (package
(name "texlive-latex-upquote") (name "texlive-upquote")
(version (number->string %texlive-revision)) (version (number->string %texlive-revision))
(source (origin (source (texlive-origin
(method svn-fetch) name version
(uri (texlive-ref "latex" "upquote")) (list "doc/latex/upquote/"
(file-name (string-append name "-" version "-checkout")) "source/latex/upquote/"
(sha256 "tex/latex/upquote/")
(base32 (base32
"0d1050i973wnxigy0xpky5l7vn4ff7ldhkjpdqsw5s653gagwixp")))) "1manbljqx2859wq9by6bpcx4rnxvc596a05d21cw464484f8a8z2")))
(outputs '("out" "doc"))
(build-system texlive-build-system) (build-system texlive-build-system)
(arguments '(#:tex-directory "latex/upquote"))
(home-page "https://www.ctan.org/pkg/upquote") (home-page "https://www.ctan.org/pkg/upquote")
(synopsis "Show \"realistic\" quotes in verbatim") (synopsis "Show realistic quotes in verbatim")
(description (description
"Typewriter-style fonts are best for program listings, but Computer "Typewriter-style fonts are best for program listings, but Computer
Modern Typewriter prints @code{`} and @code{'} as bent opening and closing Modern Typewriter prints @samp{`} and @samp{'} as bent opening and closing
single quotes. Other fonts, and most programming languages, print @code{`} as single quotes. Other fonts, and most programming languages, print @samp{`} as
a grave accent and @code{'} upright; @code{'} is used both to open and to a grave accent and @samp{'} upright; @samp{'} is used both to open and to
close quoted strings. The package switches the typewriter font to Computer close quoted strings. The package switches the typewriter font to Computer
Modern Typewriter in OT1 encoding, and modifies the behaviour of Modern Typewriter in OT1 encoding, and modifies the behaviour of
@code{verbatim}, @code{verbatim*}, @code{\\verb}, and @code{\\verb*} to print @code{verbatim}, @code{verbatim*}, @code{\\verb}, and @code{\\verb*} to print
@ -6441,6 +6441,8 @@ use, so long as the package is loaded after the other fonts were. The package
does not affect @code{\\tt}, @code{\\texttt}, etc.") does not affect @code{\\tt}, @code{\\texttt}, etc.")
(license license:lppl1.2+))) (license license:lppl1.2+)))
(define-deprecated-package texlive-latex-upquote texlive-upquote)
(define-public texlive-latex-anysize (define-public texlive-latex-anysize
(package (package
(name "texlive-latex-anysize") (name "texlive-latex-anysize")