Archived
1
0
Fork 0

gnu: Replace texlive-latex-amscls with texlive-amscls.

* gnu/packages/tex.scm (texlive-latex-amscls): Deprecate in favor of...
(texlive-amscls): ...this new variable.
This commit is contained in:
Ricardo Wurmus 2020-10-28 22:02:16 +01:00
parent 4c1de416b2
commit 6056dc110f
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3256,20 +3256,24 @@ mathematics, and @code{ntheoremntheorem}, for specifying theorem (and similar)
definitions.") definitions.")
(license license:lppl1.3c+))) (license license:lppl1.3c+)))
(define-public texlive-latex-amscls (define-public texlive-amscls
(package (let ((template (simple-texlive-package
(name "texlive-latex-amscls") "texlive-amscls"
(version (number->string %texlive-revision)) (list "/doc/latex/amscls/"
(source (origin "/source/latex/amscls/"
(method svn-fetch) "/bibtex/bst/amscls/")
(uri (texlive-ref "latex" "amscls"))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32 (base32
"0c2j9xh4qpi0x1vvcxdjxq6say0zhyr569fryi5cmhp8bclh4kca")))) "1mv96i5372257zaciv06n1wwa7v09q0fa9pbq9kck826a0syidvs"))))
(build-system texlive-build-system) (package
(inherit template)
(arguments (arguments
`(#:tex-directory "latex/amscls")) (substitute-keyword-arguments (package-arguments template)
((#:tex-directory _ #t)
"latex/amscls")
((#:phases phases)
`(modify-phases ,phases
(add-after 'unpack 'chdir
(lambda _ (chdir "source/latex/amscls/") #t))))))
(home-page "https://www.ctan.org/pkg/amscls") (home-page "https://www.ctan.org/pkg/amscls")
(synopsis "AMS document classes for LaTeX") (synopsis "AMS document classes for LaTeX")
(description (description
@ -3278,7 +3282,10 @@ articles for the AMS), @code{amsbookamsbook} (for books) and
@code{amsprocamsproc} (for proceedings), together with some supporting @code{amsprocamsproc} (for proceedings), together with some supporting
material. The material is made available as part of the AMS-LaTeX material. The material is made available as part of the AMS-LaTeX
distribution.") distribution.")
(license license:lppl1.3c+))) (license license:lppl1.3c+))))
(define-public texlive-latex-amscls
(deprecated-package "texlive-latex-amscls" texlive-amscls))
(define-public texlive-latex-babel (define-public texlive-latex-babel
(package (package