[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
79/409: gnu: texlive-latex-jknapltx -> texlive-jknapltx.
From: |
guix-commits |
Subject: |
79/409: gnu: texlive-latex-jknapltx -> texlive-jknapltx. |
Date: |
Sat, 20 May 2023 04:02:26 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 2819bdb7908f27dd0140c1479394c6d66d47c027
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat May 13 16:22:19 2023 +0200
gnu: texlive-latex-jknapltx -> texlive-jknapltx.
* gnu/packages/tex.scm (texlive-jknapltx): New variable.
(texlive-latex-jknapltx): Deprecate variable.
* gnu/packages/docbook.scm (dblatex):
* gnu/packages/python-xyz.scm (python-nbconvert): Use new name.
---
gnu/packages/docbook.scm | 2 +-
gnu/packages/python-xyz.scm | 2 +-
gnu/packages/tex.scm | 46 ++++++++++++++++++---------------------------
3 files changed, 20 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm
index 7ff920409e..b214dbc9df 100644
--- a/gnu/packages/docbook.scm
+++ b/gnu/packages/docbook.scm
@@ -546,7 +546,7 @@ the in DocBook SGML DTDs.")
texlive-float
texlive-footmisc
texlive-hyperref
- texlive-latex-jknapltx
+ texlive-jknapltx
texlive-listings
texlive-latex-multirow
texlive-latex-overpic
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b2b3ba4033..15c4904d4c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14789,7 +14789,7 @@ time.")
texlive-fancyvrb
texlive-float
texlive-geometry
- texlive-latex-jknapltx
+ texlive-jknapltx
texlive-ms
texlive-latex-parskip
texlive-trimspaces
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 73f6843268..1f6f798eda 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -6847,44 +6847,34 @@ styles. Support for @code{hyperref} is provided.")
(define-deprecated-package texlive-latex-listings texlive-listings)
-(define-public texlive-latex-jknapltx
+(define-public texlive-jknapltx
(package
- (name "texlive-latex-jknapltx")
+ (name "texlive-jknapltx")
(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/jknapltx"))
- (revision %texlive-revision)))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "0m034x72f2g07icr50gacyxfb9g1lz2rmqh4kqr1qjb421x2kds9"))))
- (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/jknapltx")))
- (mkdir-p target)
- (copy-recursively (assoc-ref %build-inputs "source") target)
- #t))))
- (home-page "https://www.ctan.org/pkg/jknappen")
+ (source (texlive-origin
+ name version
+ (list "doc/latex/jknapltx/"
+ "tex/latex/jknapltx/")
+ (base32
+ "0as43yqq123cacxhvp4sbdp4ka3cyp2spmxwayqny0fh5rsk6qaq")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (propagated-inputs
+ (list texlive-graphics))
+ (home-page "https://ctan.org/pkg/jknapltx")
(synopsis "Miscellaneous packages by Joerg Knappen")
(description
- "This package provides miscellaneous macros by Joerg Knappen, including:
-represent counters in greek; Maxwell's non-commutative division;
+ "This package provides miscellaneous macros by Joerg Knappen,
+including: represent counters in greek; Maxwell's non-commutative division;
@code{latin1jk}, @code{latin2jk} and @code{latin3jk}, which are
@code{inputenc} definition files that allow verbatim input in the respective
ISO Latin codes; blackboard bold fonts in maths; use of RSFS fonts in maths;
extra alignments for @code{\\parboxes}; swap Roman and Sans fonts;
transliterate semitic languages; patches to make (La)TeX formulae embeddable
in SGML; use maths minus in text as appropriate; simple Young tableaux.")
- (license license:gpl2)))
+ (license license:gpl3+)))
+
+(define-deprecated-package texlive-latex-jknapltx texlive-jknapltx)
(define-public texlive-kvoptions
(let ((template (simple-texlive-package
- 104/409: gnu: texlive-latex-ocgx2 -> texlive-ocgx2., (continued)
- 104/409: gnu: texlive-latex-ocgx2 -> texlive-ocgx2., guix-commits, 2023/05/20
- 107/409: gnu: texlive-latex-readarray -> texlive-readarray., guix-commits, 2023/05/20
- 109/409: gnu: texlive-latex-examplep -> texlive-examplep., guix-commits, 2023/05/20
- 102/409: gnu: texlive-latex-needspace -> texlive-needspace., guix-commits, 2023/05/20
- 132/409: gnu: texlive-kastrup: Refresh package definition., guix-commits, 2023/05/20
- 45/409: gnu: texlive-latex-newunicodechar -> texlive-newunicodechar., guix-commits, 2023/05/20
- 61/409: gnu: texlive-latex-marginfix -> texlive-marginfix., guix-commits, 2023/05/20
- 64/409: gnu: texlive-latex-anysize -> texlive-anysize., guix-commits, 2023/05/20
- 67/409: gnu: texlive-stringenc: Fix build., guix-commits, 2023/05/20
- 73/409: gnu: texlive-latex-changebar -> texlive-changebar., guix-commits, 2023/05/20
- 79/409: gnu: texlive-latex-jknapltx -> texlive-jknapltx.,
guix-commits <=
- 101/409: gnu: texlive-latex-preview -> texlive-preview., guix-commits, 2023/05/20
- 103/409: gnu: texlive-latex-media9 -> texlive-media9., guix-commits, 2023/05/20
- 105/409: gnu: texlive-latex-changepage -> texlive-changepage., guix-commits, 2023/05/20
- 115/409: gnu: texlive-latex-tabto-ltx -> texlive-tabto-ltx., guix-commits, 2023/05/20
- 116/409: gnu: Add texlive-regexpatch., guix-commits, 2023/05/20
- 119/409: gnu: texlive-generic-babel-norsk -> texlive-babel-norsk., guix-commits, 2023/05/20
- 129/409: gnu: Add texlive-gincltex., guix-commits, 2023/05/20
- 133/409: gnu: texlive-collectbox: Refresh package definition., guix-commits, 2023/05/20
- 135/409: gnu: texlive-storebox: Refresh package definition., guix-commits, 2023/05/20
- 140/409: gnu: texlive-docstrip: Refresh package definition., guix-commits, 2023/05/20