mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 17:53:26 -05:00
gnu: texlive-latex-expdlist -> texlive-expdlist.
* gnu/packages/tex.scm (texlive-expdlist): New variable. (texlive-latex-expdlist): Deprecate variable. * gnu/packages/python-xyz.scm (python-numpy-documentation): (python-matplotlib-documentation): Apply renaming.
This commit is contained in:
parent
376059576e
commit
92c0962c5a
2 changed files with 20 additions and 26 deletions
|
@ -7250,8 +7250,8 @@ (define-public python-numpy-documentation
|
||||||
texlive-bin
|
texlive-bin
|
||||||
texlive-cbfonts
|
texlive-cbfonts
|
||||||
texlive-cm-super
|
texlive-cm-super
|
||||||
|
texlive-expdlist
|
||||||
texlive-greek-fontenc
|
texlive-greek-fontenc
|
||||||
texlive-latex-expdlist
|
|
||||||
texlive-polyglossia
|
texlive-polyglossia
|
||||||
texlive-xindy))
|
texlive-xindy))
|
||||||
(inputs '())
|
(inputs '())
|
||||||
|
@ -8044,10 +8044,10 @@ (define-public python-matplotlib-documentation
|
||||||
texlive-amsfonts
|
texlive-amsfonts
|
||||||
texlive-amsmath
|
texlive-amsmath
|
||||||
texlive-babel
|
texlive-babel
|
||||||
|
texlive-expdlist
|
||||||
texlive-fontspec
|
texlive-fontspec
|
||||||
texlive-unicode-math
|
texlive-unicode-math
|
||||||
texlive-etoolbox
|
texlive-etoolbox
|
||||||
texlive-latex-expdlist
|
|
||||||
texlive-underscore
|
texlive-underscore
|
||||||
texlive-latex-type1cm
|
texlive-latex-type1cm
|
||||||
texlive-times
|
texlive-times
|
||||||
|
|
|
@ -4972,37 +4972,31 @@ (define-public texlive-etoc
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-etoc texlive-etoc)
|
(define-deprecated-package texlive-latex-etoc texlive-etoc)
|
||||||
|
|
||||||
(define-public texlive-latex-expdlist
|
(define-public texlive-expdlist
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-expdlist")
|
(name "texlive-expdlist")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "expdlist"))
|
(list "doc/latex/expdlist/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"source/latex/expdlist/"
|
||||||
(sha256
|
"tex/latex/expdlist/")
|
||||||
(base32
|
(base32
|
||||||
"1x7byk6x10njir3y9rm56glhdzrxwqag7gsnw2sqn1czlq525w7r"))))
|
"1kylmj615hmbmjbynn5bfzhfz0wk1drxmg0kjqljnglffkb6irv6")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments
|
(home-page "https://ctan.org/pkg/expdlist")
|
||||||
'(#:tex-directory "latex/expdlist"
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'remove-generated-file
|
|
||||||
(lambda _
|
|
||||||
(for-each delete-file
|
|
||||||
(find-files "." "\\.drv$"))
|
|
||||||
#t)))))
|
|
||||||
(home-page "https://www.ctan.org/pkg/expdlist")
|
|
||||||
(synopsis "Expanded description environments")
|
(synopsis "Expanded description environments")
|
||||||
(description
|
(description
|
||||||
"The package provides additional features for the LaTeX
|
"The package provides additional features for the LaTeX @code{description} environment,
|
||||||
@code{description} environment, including adjustable left margin. The package
|
including adjustable left margin. The package also allows the user to break
|
||||||
also allows the user to \"break\" a list (for example, to interpose a comment)
|
a list (for example, to interpose a comment) without affecting the structure
|
||||||
without affecting the structure of the list (this works for @code{itemize} and
|
of the list (this works for itemize and eumerate lists and numbered lists
|
||||||
@code{enumerate} lists, and numbered lists remain in sequence).")
|
remain in sequence).")
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-expdlist texlive-expdlist)
|
||||||
|
|
||||||
(define-public texlive-filemod
|
(define-public texlive-filemod
|
||||||
(package
|
(package
|
||||||
(inherit (simple-texlive-package
|
(inherit (simple-texlive-package
|
||||||
|
|
Loading…
Reference in a new issue