gnu: texlive-latex-needspace -> texlive-needspace.
* gnu/packages/tex.scm (texlive-needspace): New variable. (texlive-latex-needspace): Deprecate variable. * gnu/packages/maths.scm (hypre)[native-inputs]: * gnu/packages/sphinx.scm (python-sphinx)[propagated-inputs]: Use new name.
parent
58d6740f0c
commit
50e49cf9b4
|
@ -5803,7 +5803,7 @@ set.")
|
||||||
texlive-listofitems
|
texlive-listofitems
|
||||||
texlive-multirow
|
texlive-multirow
|
||||||
texlive-natbib
|
texlive-natbib
|
||||||
texlive-latex-needspace
|
texlive-needspace
|
||||||
texlive-newunicodechar
|
texlive-newunicodechar
|
||||||
texlive-parskip
|
texlive-parskip
|
||||||
texlive-sectsty
|
texlive-sectsty
|
||||||
|
|
|
@ -122,7 +122,7 @@
|
||||||
texlive-kvoptions
|
texlive-kvoptions
|
||||||
texlive-latex-base ;alltt, atbegshi, makeidx, textcomp
|
texlive-latex-base ;alltt, atbegshi, makeidx, textcomp
|
||||||
texlive-ltxcmds
|
texlive-ltxcmds
|
||||||
texlive-latex-needspace
|
texlive-needspace
|
||||||
texlive-oberdiek ;hypcap
|
texlive-oberdiek ;hypcap
|
||||||
texlive-parskip
|
texlive-parskip
|
||||||
texlive-preview
|
texlive-preview
|
||||||
|
|
|
@ -9240,31 +9240,32 @@ and after the formatted number.")
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-numprint texlive-numprint)
|
(define-deprecated-package texlive-latex-numprint texlive-numprint)
|
||||||
|
|
||||||
(define-public texlive-latex-needspace
|
(define-public texlive-needspace
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-needspace")
|
(name "texlive-needspace")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin name version
|
||||||
(method svn-fetch)
|
(list "doc/latex/needspace/"
|
||||||
(uri (texlive-ref "latex" "needspace"))
|
"source/latex/needspace/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"tex/latex/needspace/")
|
||||||
(sha256
|
|
||||||
(base32
|
(base32
|
||||||
"0kw80f5jh4gdpa2ka815abza3gr5z8b929w0745vrlc59pl0017y"))))
|
"12hbvv1w6b1k29qjvp72bkpnzsxpvrimzshllwinrxh9rx1mn550")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tex-directory "latex/needspace"
|
(list #:tex-format "latex"))
|
||||||
#:tex-format "latex"))
|
(native-inputs
|
||||||
(inputs
|
|
||||||
(list texlive-filecontents))
|
(list texlive-filecontents))
|
||||||
(home-page "https://www.ctan.org/pkg/needspace")
|
(home-page "https://ctan.org/pkg/needspace")
|
||||||
(synopsis "Insert pagebreak if not enough space")
|
(synopsis "Insert pagebreak if not enough space")
|
||||||
(description
|
(description
|
||||||
"Provides commands to disable pagebreaking within a given vertical
|
"This package provides commands to disable pagebreaking within a given
|
||||||
space. If there is not enough space between the command and the bottom of the
|
vertical space. If there is not enough space between the command and the
|
||||||
page, a new page will be started.")
|
bottom of the page, a new page will be started.")
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-needspace texlive-needspace)
|
||||||
|
|
||||||
(define-public texlive-latex-changepage
|
(define-public texlive-latex-changepage
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-changepage")
|
(name "texlive-latex-changepage")
|
||||||
|
@ -12271,7 +12272,7 @@ Polish of standard ``LaTeX names''.")
|
||||||
"tex/latex/mdframed/")
|
"tex/latex/mdframed/")
|
||||||
(base32 "1i5rm946wg43rjckxlfhx79zfx5cgd3bxk71206hd1dqkrgpdpa8")
|
(base32 "1i5rm946wg43rjckxlfhx79zfx5cgd3bxk71206hd1dqkrgpdpa8")
|
||||||
#:trivial? #t))
|
#:trivial? #t))
|
||||||
(propagated-inputs (list texlive-latex-needspace
|
(propagated-inputs (list texlive-needspace
|
||||||
texlive-zref))
|
texlive-zref))
|
||||||
(home-page "https://ctan.org/pkg/mdframed")
|
(home-page "https://ctan.org/pkg/mdframed")
|
||||||
(synopsis "Framed environments that can split at page boundaries")
|
(synopsis "Framed environments that can split at page boundaries")
|
||||||
|
|
Reference in New Issue