[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
51/418: gnu: texlive-latex-fncychap -> texlive-fncychap.
From: |
guix-commits |
Subject: |
51/418: gnu: texlive-latex-fncychap -> texlive-fncychap. |
Date: |
Fri, 2 Jun 2023 17:23:54 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit a576443e9480a617941746bd9fa9e6b1e100920f
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat May 13 08:00:21 2023 +0200
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.
---
gnu/packages/maths.scm | 2 +-
gnu/packages/sphinx.scm | 4 ++--
gnu/packages/tex.scm | 40 +++++++++++++++-------------------------
3 files changed, 18 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 45598b116c..6badae778a 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5772,7 +5772,7 @@ set.")
texlive-latex-cmap
texlive-latex-colortbl
texlive-latex-float
- texlive-latex-fncychap
+ texlive-fncychap
texlive-latex-framed
texlive-latex-geometry
texlive-hanging
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 65b3dc4ec5..58957c44bb 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -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 @@
texlive-fancyhdr
texlive-fancyvrb
texlive-latex-float
- texlive-latex-fncychap
+ texlive-fncychap
texlive-latex-framed
texlive-latex-geometry
texlive-graphics ;graphicx, color
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 509648de84..8d03fed6f5 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -5880,33 +5880,21 @@ of the LaTeX kernel.")
(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 @@ modify the formatting routines in order to create
additional chapter
headings.")
(license license:lppl1.3+)))
+(define-deprecated-package texlive-latex-fncychap texlive-fncychap)
+
(define-public texlive-latex-framed
(package
(name "texlive-latex-framed")
- 19/418: gnu: Add texlive-xfor., (continued)
- 19/418: gnu: Add texlive-xfor., guix-commits, 2023/06/02
- 21/418: gnu: Add texlive-filehook., guix-commits, 2023/06/02
- 25/418: gnu: Add texlive-dehyph., guix-commits, 2023/06/02
- 29/418: gnu: Add texlive-euenc., guix-commits, 2023/06/02
- 31/418: gnu: Add texlive-chngcntr., guix-commits, 2023/06/02
- 32/418: gnu: Add texlive-multido., guix-commits, 2023/06/02
- 33/418: gnu: Add texlive-attachfile., guix-commits, 2023/06/02
- 45/418: gnu: texlive-latex-newunicodechar -> texlive-newunicodechar., guix-commits, 2023/06/02
- 47/418: gnu: texlive-latex-seqsplit -> texlive-seqsplit., guix-commits, 2023/06/02
- 50/418: gnu: texlive-latex-tocloft -> texlive-tocloft., guix-commits, 2023/06/02
- 51/418: gnu: texlive-latex-fncychap -> texlive-fncychap.,
guix-commits <=
- 57/418: gnu: texlive-fonts-latex -> texlive-latex-fonts., guix-commits, 2023/06/02
- 65/418: gnu: texlive-latex-appendix -> texlive-appendix., guix-commits, 2023/06/02
- 28/418: gnu: Add texlive-refstyle., guix-commits, 2023/06/02
- 36/418: gnu: texlive-latex-backend -> texlive-backend., guix-commits, 2023/06/02
- 38/418: gnu: texlive-latex-l3packages -> texlive-l3packages., guix-commits, 2023/06/02
- 41/418: gnu: texlive-latex-hanging -> texlive-hanging., guix-commits, 2023/06/02
- 42/418: gnu: texlive-latex-ifplatform -> texlive-ifplatform., guix-commits, 2023/06/02
- 49/418: gnu: texlive-latex-stackengine -> texlive-stackengine., guix-commits, 2023/06/02
- 55/418: gnu: texlive-latex-gcite -> texlive-gcite., guix-commits, 2023/06/02
- 56/418: gnu: texlive-generic-babel-english -> texlive-babel-english., guix-commits, 2023/06/02