[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
85/435: gnu: texlive-latex-parskip -> texlive-parskip.
From: |
guix-commits |
Subject: |
85/435: gnu: texlive-latex-parskip -> texlive-parskip. |
Date: |
Tue, 6 Jun 2023 11:39:22 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 826cf48eae92b4c6ad956a9bb99de1e9fa6bf17e
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat May 13 16:42:51 2023 +0200
gnu: texlive-latex-parskip -> texlive-parskip.
* gnu/packages/tex.scm (texlive-parskip): New variable.
(texlive-latex-parskip): Deprecate variable.
* gnu/packages/maths.scm (hypre):
* gnu/packages/plotutils.scm (asymptote):
* gnu/packages/python-xyz.scm (python-nbconvert):
* gnu/packages/sphinx.scm (python-sphinx): Use new name.
---
gnu/packages/maths.scm | 2 +-
gnu/packages/plotutils.scm | 2 +-
gnu/packages/python-xyz.scm | 2 +-
gnu/packages/sphinx.scm | 2 +-
gnu/packages/tex.scm | 42 +++++++++++++++++-------------------------
5 files changed, 21 insertions(+), 29 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 4fe3d55495..b1ae974266 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -5781,7 +5781,7 @@ set.")
texlive-natbib
texlive-latex-needspace
texlive-newunicodechar
- texlive-latex-parskip
+ texlive-parskip
texlive-stackengine
texlive-latex-tabulary
texlive-tocloft
diff --git a/gnu/packages/plotutils.scm b/gnu/packages/plotutils.scm
index 6e4256ea99..6f052d2a04 100644
--- a/gnu/packages/plotutils.scm
+++ b/gnu/packages/plotutils.scm
@@ -323,7 +323,7 @@ colors, styles, options and details.")
texlive-latex-media9
texlive-oberdiek ;for ifluatex
texlive-latex-ocgx2
- texlive-latex-parskip
+ texlive-parskip
texlive-pdftexcmds
texlive-tex-texinfo))))
(inputs
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b24ed7af20..9cdb97ee7f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14852,7 +14852,7 @@ time.")
texlive-geometry
texlive-jknapltx
texlive-ms
- texlive-latex-parskip
+ texlive-parskip
texlive-trimspaces
texlive-upquote
texlive-stringenc
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index a69a8b44ed..97c05234ea 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -123,7 +123,7 @@
texlive-graphics ;graphicx, color
texlive-kvoptions
texlive-latex-needspace
- texlive-latex-parskip
+ texlive-parskip
texlive-latex-preview
texlive-latex-tabulary
texlive-titlesec
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index a71573f17d..bd17c8f89f 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -7422,40 +7422,32 @@ positions; a grid for orientation is available.")
(define-deprecated-package texlive-latex-overpic texlive-overpic)
-(define-public texlive-latex-parskip
+(define-public texlive-parskip
(package
- (name "texlive-latex-parskip")
+ (name "texlive-parskip")
(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/parskip"))
- (revision %texlive-revision)))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "1zll8jci8lsd7y44j567akf6y8fp2p7qq23rs527zhr0br9mn3sh"))))
- (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/parskip")))
- (mkdir-p target)
- (copy-recursively (assoc-ref %build-inputs "source") target)
- #t))))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/parskip/"
+ "source/latex/parskip/"
+ "tex/latex/parskip/")
+ (base32
+ "18yygddxv3kblvf4jhzqa8h1js0n8g1bw723r6ss2hlz4lj64kf0")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (propagated-inputs
+ (list texlive-etoolbox
+ texlive-kvoptions))
(home-page "https://www.ctan.org/pkg/parskip")
- (synopsis "Layout with zero \\parindent, non-zero \\parskip")
+ (synopsis "Layout with zero @code{\\parindent}, non-zero @code{\\parskip}")
(description
"Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout
that is untidy; this package (though it is no substitute for a properly
designed class) helps alleviate this untidiness.")
(license license:lppl)))
+(define-deprecated-package texlive-latex-parskip texlive-parskip)
+
(define-public texlive-latex-pbox
(package
(inherit (simple-texlive-package
- 63/435: gnu: texlive-latex-upquote -> texlive-upquote., (continued)
- 63/435: gnu: texlive-latex-upquote -> texlive-upquote., guix-commits, 2023/06/06
- 70/435: gnu: texlive-latex-xkeyval -> texlive-xkeyval., guix-commits, 2023/06/06
- 73/435: gnu: texlive-latex-changebar -> texlive-changebar., guix-commits, 2023/06/06
- 59/435: gnu: texlive-latex-geometry -> texlive-geometry., guix-commits, 2023/06/06
- 60/435: gnu: texlive-latex-mdwtools -> texlive-mdwtools., guix-commits, 2023/06/06
- 66/435: gnu: Add texlive-atenddvi., guix-commits, 2023/06/06
- 75/435: gnu: texlive-latex-colortbl -> texlive-colortbl., guix-commits, 2023/06/06
- 76/435: gnu: texlive-latex-fancybox -> texlive-fancybox., guix-commits, 2023/06/06
- 81/435: gnu: texlive-latex-translations -> texlive-translations., guix-commits, 2023/06/06
- 82/435: gnu: texlive-latex-enotez -> texlive-enotez., guix-commits, 2023/06/06
- 85/435: gnu: texlive-latex-parskip -> texlive-parskip.,
guix-commits <=
- 86/435: gnu: texlive-latex-pbox -> texlive-pbox., guix-commits, 2023/06/06
- 96/435: gnu: Add texlive-luacode., guix-commits, 2023/06/06
- 101/435: gnu: texlive-latex-preview -> texlive-preview., guix-commits, 2023/06/06
- 103/435: gnu: texlive-latex-media9 -> texlive-media9., guix-commits, 2023/06/06
- 104/435: gnu: texlive-latex-ocgx2 -> texlive-ocgx2., guix-commits, 2023/06/06
- 106/435: gnu: texlive-latex-eukdate -> texlive-eukdate., guix-commits, 2023/06/06
- 107/435: gnu: texlive-latex-readarray -> texlive-readarray., guix-commits, 2023/06/06
- 108/435: gnu: texlive-latex-verbatimbox -> texlive-verbatimbox., guix-commits, 2023/06/06
- 112/435: gnu: texlive-latex-bussproofs -> texlive-bussproofs., guix-commits, 2023/06/06
- 113/435: gnu: texlive-latex-textpos -> texlive-textpos., guix-commits, 2023/06/06