mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-24 19:27:44 +01:00
gnu: texlive-latex-float -> texlive-float.
* gnu/packages/tex.scm (texlive-float): New variable. (texlive-latex-float): Deprecate variable. (texlive-showexpl): (texlive-minted): (texlive-apa6): * gnu/packages/docbook.scm (dblatex): * gnu/packages/maths.scm (hypre): * gnu/packages/python-xyz.scm (python-nbconvert): * gnu/packages/sphinx.scm (python-sphinx): Use new name.
This commit is contained in:
parent
30302ded0d
commit
bd12824e56
5 changed files with 25 additions and 24 deletions
|
@ -543,7 +543,7 @@ (define-public dblatex
|
||||||
texlive-fancybox
|
texlive-fancybox
|
||||||
texlive-fancyhdr
|
texlive-fancyhdr
|
||||||
texlive-fancyvrb
|
texlive-fancyvrb
|
||||||
texlive-latex-float
|
texlive-float
|
||||||
texlive-footmisc
|
texlive-footmisc
|
||||||
texlive-hyperref
|
texlive-hyperref
|
||||||
texlive-latex-jknapltx
|
texlive-latex-jknapltx
|
||||||
|
|
|
@ -5800,7 +5800,7 @@ (define-public hypre
|
||||||
texlive-listofitems
|
texlive-listofitems
|
||||||
texlive-cmap
|
texlive-cmap
|
||||||
texlive-colortbl
|
texlive-colortbl
|
||||||
texlive-latex-float
|
texlive-float
|
||||||
texlive-fncychap
|
texlive-fncychap
|
||||||
texlive-framed
|
texlive-framed
|
||||||
texlive-geometry
|
texlive-geometry
|
||||||
|
|
|
@ -15186,7 +15186,7 @@ (define-public python-nbconvert
|
||||||
texlive-grffile
|
texlive-grffile
|
||||||
texlive-hyperref
|
texlive-hyperref
|
||||||
texlive-fancyvrb
|
texlive-fancyvrb
|
||||||
texlive-latex-float
|
texlive-float
|
||||||
texlive-geometry
|
texlive-geometry
|
||||||
texlive-latex-jknapltx
|
texlive-latex-jknapltx
|
||||||
texlive-ms
|
texlive-ms
|
||||||
|
|
|
@ -116,7 +116,7 @@ (define-public python-sphinx
|
||||||
texlive-cmap
|
texlive-cmap
|
||||||
texlive-fancyhdr
|
texlive-fancyhdr
|
||||||
texlive-fancyvrb
|
texlive-fancyvrb
|
||||||
texlive-latex-float
|
texlive-float
|
||||||
texlive-fncychap
|
texlive-fncychap
|
||||||
texlive-framed
|
texlive-framed
|
||||||
texlive-geometry
|
texlive-geometry
|
||||||
|
|
|
@ -5632,7 +5632,7 @@ (define-public texlive-showexpl
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list texlive-attachfile
|
(list texlive-attachfile
|
||||||
texlive-latex-float
|
texlive-float
|
||||||
texlive-graphics
|
texlive-graphics
|
||||||
texlive-listings
|
texlive-listings
|
||||||
texlive-refcount
|
texlive-refcount
|
||||||
|
@ -6665,30 +6665,31 @@ (define-public texlive-fancyhdr
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-fancyhdr texlive-fancyhdr)
|
(define-deprecated-package texlive-latex-fancyhdr texlive-fancyhdr)
|
||||||
|
|
||||||
(define-public texlive-latex-float
|
(define-public texlive-float
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-float")
|
(name "texlive-float")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "float"))
|
(list "doc/latex/float/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"source/latex/float/"
|
||||||
(sha256
|
"tex/latex/float/")
|
||||||
(base32
|
(base32
|
||||||
"0nbl7wylkv22fcdv4p8byhhj575fli6jnqjpkhrkbv8dzwah84nq"))))
|
"1rfyvk1n83zsmrrp0x643052nrjb00cj935d2cpm37x4pz649f5d")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments '(#:tex-directory "latex/float"))
|
(home-page "https://ctan.org/pkg/float")
|
||||||
(home-page "https://www.ctan.org/pkg/float")
|
|
||||||
(synopsis "Improved interface for floating objects")
|
(synopsis "Improved interface for floating objects")
|
||||||
(description
|
(description
|
||||||
"This package improves the interface for defining floating objects such
|
"The @code{float} package improves the interface for defining floating
|
||||||
as figures and tables. It introduces the boxed float, the ruled float and the
|
objects such as figures and tables. It introduces the boxed float, the ruled
|
||||||
plaintop float. You can define your own floats and improve the behaviour of
|
float and the plaintop float. You can define your own floats and improve the
|
||||||
the old ones. The package also provides the @code{H} float modifier option of
|
behaviour of the old ones. The package also provides the @samp{H} float
|
||||||
the obsolete @code{here} package. You can select this as automatic default
|
modifier option of the obsolete @code{here} package.")
|
||||||
with @code{\\floatplacement{figure}{H}}.")
|
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-float texlive-float)
|
||||||
|
|
||||||
(define-public texlive-footmisc
|
(define-public texlive-footmisc
|
||||||
(package
|
(package
|
||||||
(name "texlive-footmisc")
|
(name "texlive-footmisc")
|
||||||
|
@ -10657,7 +10658,7 @@ (define-public texlive-minted
|
||||||
(propagated-inputs (list python-pygments
|
(propagated-inputs (list python-pygments
|
||||||
texlive-etoolbox
|
texlive-etoolbox
|
||||||
texlive-fancyvrb
|
texlive-fancyvrb
|
||||||
texlive-latex-float
|
texlive-float
|
||||||
texlive-framed
|
texlive-framed
|
||||||
texlive-fvextra
|
texlive-fvextra
|
||||||
texlive-ifplatform
|
texlive-ifplatform
|
||||||
|
@ -11878,7 +11879,7 @@ (define-public texlive-apa6
|
||||||
texlive-fancyhdr
|
texlive-fancyhdr
|
||||||
texlive-xstring
|
texlive-xstring
|
||||||
texlive-graphics
|
texlive-graphics
|
||||||
texlive-latex-float
|
texlive-float
|
||||||
texlive-lm
|
texlive-lm
|
||||||
texlive-substr
|
texlive-substr
|
||||||
texlive-times
|
texlive-times
|
||||||
|
|
Loading…
Reference in a new issue