mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 21:29:09 -05:00
gnu: Replace texlive-latex-lh with texlive-lh.
* gnu/packages/tex.scm (texlive-latex-lh): Deprecate in favor of... (texlive-lh): ...this new variable.
This commit is contained in:
parent
a72499b3a5
commit
7899a10e8e
1 changed files with 30 additions and 18 deletions
|
@ -5575,19 +5575,28 @@ (define-public texlive-latex-type1cm
|
|||
@code{ec} fonts.")
|
||||
(license license:lppl)))
|
||||
|
||||
(define-public texlive-latex-lh
|
||||
(package
|
||||
(name "texlive-latex-lh")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (origin
|
||||
(method svn-fetch)
|
||||
(uri (texlive-ref "latex" "lh"))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(define-public texlive-lh
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-lh"
|
||||
(list "/doc/fonts/lh/"
|
||||
"/source/fonts/lh/"
|
||||
"/source/latex/lh/"
|
||||
"/fonts/source/lh/"
|
||||
"/tex/plain/lh/")
|
||||
(base32
|
||||
"00gdiwh3sfhh1iimjhpja7lm7k4vzqzql2irgwnpz94qvh25zwi5"))))
|
||||
(build-system texlive-build-system)
|
||||
(arguments '(#:tex-directory "latex/lh"))
|
||||
"0vw75i52asi5sssp8k9r8dy4ihvqbvmbsl3dini3ls8cky15lz37"))))
|
||||
(package
|
||||
(inherit template)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:tex-directory _ #t)
|
||||
"latex/lh")
|
||||
((#:build-targets _ '())
|
||||
''("nfssfox.ins" "lcyfonts.ins" "ot2fonts.ins" "t2ccfonts.ins"))
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "source/latex/lh") #t))))))
|
||||
(home-page "https://www.ctan.org/pkg/lh")
|
||||
(synopsis "Cyrillic fonts that support LaTeX standard encodings")
|
||||
(description
|
||||
|
@ -5600,7 +5609,10 @@ (define-public texlive-latex-lh
|
|||
standard T2* and X2 encodings are available in Adobe Type 1 format, in the
|
||||
CM-Super family of fonts. The package also offers its own LaTeX support for
|
||||
OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts.")
|
||||
(license license:lppl)))
|
||||
(license license:lppl))))
|
||||
|
||||
(define-public texlive-latex-lh
|
||||
(deprecated-package "texlive-latex-lh" texlive-lh))
|
||||
|
||||
(define-public texlive-metapost
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue