mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: texlive-latex-fncychap -> texlive-fncychap.
* gnu/packages/tex.scm (texlive-fncychap): New variable. (texlive-latex-fncychap): Deprecate variable. * gnu/packages/maths.scm (hypre): * gnu/packages/sphinx.scm (python-sphinx): Use new name.
This commit is contained in:
parent
c0b3254568
commit
ec56993c84
3 changed files with 18 additions and 28 deletions
|
@ -5801,7 +5801,7 @@ (define-public hypre
|
|||
texlive-latex-cmap
|
||||
texlive-latex-colortbl
|
||||
texlive-latex-float
|
||||
texlive-latex-fncychap
|
||||
texlive-fncychap
|
||||
texlive-latex-framed
|
||||
texlive-latex-geometry
|
||||
texlive-hanging
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
;;; Copyright © 2017 Christine Lemmer-Webber <cwebber@dustycloud.org>
|
||||
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
||||
;;; Copyright © 2019, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||
;;; Copyright © 2019, 2021, 2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||
;;; Copyright © 2019 Alexandros Theodotou <alex@zrythm.org>
|
||||
;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
|
||||
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||
|
@ -117,7 +117,7 @@ (define-public python-sphinx
|
|||
texlive-fancyhdr
|
||||
texlive-fancyvrb
|
||||
texlive-latex-float
|
||||
texlive-latex-fncychap
|
||||
texlive-fncychap
|
||||
texlive-latex-framed
|
||||
texlive-latex-geometry
|
||||
texlive-graphics ;graphicx, color
|
||||
|
|
|
@ -5880,33 +5880,21 @@ (define-public texlive-etoolbox
|
|||
|
||||
(define-deprecated-package texlive-latex-etoolbox texlive-etoolbox)
|
||||
|
||||
(define-public texlive-latex-fncychap
|
||||
(define-public texlive-fncychap
|
||||
(package
|
||||
(name "texlive-latex-fncychap")
|
||||
(name "texlive-fncychap")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (origin
|
||||
(method svn-fetch)
|
||||
(uri (svn-reference
|
||||
(url (string-append "svn://www.tug.org/texlive/tags/"
|
||||
%texlive-tag "/Master/texmf-dist/"
|
||||
"/tex/latex/fncychap"))
|
||||
(revision %texlive-revision)))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(base32
|
||||
"0fdk84dbicfjfprkz6vk15x36mvlhaw9isjmgkc56jp2khwjswwq"))))
|
||||
(build-system trivial-build-system)
|
||||
(arguments
|
||||
`(#:modules ((guix build utils))
|
||||
#:builder
|
||||
(begin
|
||||
(use-modules (guix build utils))
|
||||
(let ((target (string-append (assoc-ref %outputs "out")
|
||||
"/share/texmf-dist/tex/latex/fncychap")))
|
||||
(mkdir-p target)
|
||||
(copy-recursively (assoc-ref %build-inputs "source") target)
|
||||
#t))))
|
||||
(home-page "https://www.ctan.org/pkg/fncychap")
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/fncychap/"
|
||||
"tex/latex/fncychap/")
|
||||
(base32
|
||||
"1javlws18ncrf7rz7qfbx1db9jwk45lm6sa0s67hlr6hqnyjxf94")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(propagated-inputs
|
||||
(list texlive-graphics))
|
||||
(home-page "https://ctan.org/pkg/fncychap")
|
||||
(synopsis "Seven predefined chapter heading styles")
|
||||
(description
|
||||
"This package provides seven predefined chapter heading styles. Each
|
||||
|
@ -5915,6 +5903,8 @@ (define-public texlive-latex-fncychap
|
|||
headings.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
(define-deprecated-package texlive-latex-fncychap texlive-fncychap)
|
||||
|
||||
(define-public texlive-latex-framed
|
||||
(package
|
||||
(name "texlive-latex-framed")
|
||||
|
|
Loading…
Reference in a new issue