mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-05 19:11:43 -05:00
gnu: texlive-generic-babel-english -> texlive-babel-english.
* gnu/packages/tex.scm (texlive-babel-english): New variable. (texlive-generic-babel-english): Deprecate variable. (texlive-base): Use new name.
This commit is contained in:
parent
9ced20c4a9
commit
764085d4c2
1 changed files with 18 additions and 16 deletions
|
@ -4441,28 +4441,30 @@ (define-public texlive-csplain
|
||||||
;; that says the package must be renamed from 'csplain' if it is modified.
|
;; that says the package must be renamed from 'csplain' if it is modified.
|
||||||
(license (license:non-copyleft "file:///tex/csplain/base/csplain.ini"))))
|
(license (license:non-copyleft "file:///tex/csplain/base/csplain.ini"))))
|
||||||
|
|
||||||
(define-public texlive-generic-babel-english
|
(define-public texlive-babel-english
|
||||||
(package
|
(package
|
||||||
(name "texlive-generic-babel-english")
|
(name "texlive-babel-english")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "generic" "babel-english"))
|
(list "doc/generic/babel-english/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"source/generic/babel-english/"
|
||||||
(sha256
|
"tex/generic/babel-english/")
|
||||||
(base32
|
(base32
|
||||||
"1s404wbx91z5w65hm024kyl4h56zsa096irx18vsx8jvlmwsr5wc"))))
|
"0fh8xxxh79za80yvgypf8clzj0lk237lfyqfkl233id9rlias08d")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments '(#:tex-directory "generic/babel-english"))
|
(home-page "https://ctan.org/pkg/babel-english")
|
||||||
(home-page "https://www.ctan.org/pkg/babel-english")
|
|
||||||
(synopsis "Babel support for English")
|
(synopsis "Babel support for English")
|
||||||
(description
|
(description
|
||||||
"This package provides the language definition file for support of
|
"The package provides the language definition file for support of
|
||||||
English in @code{babel}. Care is taken to select British hyphenation patterns
|
English in @code{babel}. Care is taken to select british hyphenation patterns
|
||||||
for British English and Australian text, and default (\"american\") patterns
|
for British English and Australian text, and default (american) patterns for
|
||||||
for Canadian and USA text.")
|
Canadian and USA text.")
|
||||||
(license license:lppl1.3+)))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-generic-babel-english texlive-babel-english)
|
||||||
|
|
||||||
(define-public texlive-babel-french
|
(define-public texlive-babel-french
|
||||||
(let ((template
|
(let ((template
|
||||||
(simple-texlive-package
|
(simple-texlive-package
|
||||||
|
@ -4773,7 +4775,7 @@ (define-public texlive-base
|
||||||
texlive-amsmath
|
texlive-amsmath
|
||||||
texlive-amscls
|
texlive-amscls
|
||||||
texlive-babel
|
texlive-babel
|
||||||
texlive-generic-babel-english
|
texlive-babel-english
|
||||||
texlive-cyrillic
|
texlive-cyrillic
|
||||||
texlive-psnfss
|
texlive-psnfss
|
||||||
texlive-tools
|
texlive-tools
|
||||||
|
|
Loading…
Reference in a new issue