[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
42/418: gnu: texlive-latex-ifplatform -> texlive-ifplatform.
From: |
guix-commits |
Subject: |
42/418: gnu: texlive-latex-ifplatform -> texlive-ifplatform. |
Date: |
Fri, 2 Jun 2023 17:23:53 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 723b6adadf929234ebd691afe48f6a0a2e0c519e
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat May 13 00:22:48 2023 +0200
gnu: texlive-latex-ifplatform -> texlive-ifplatform.
* gnu/packages/tex.scm (texlive-ifplatform): New variable.
(texlive-latex-ifplatform): Deprecate variable.
(texlive-pstool):
(texlive-minted): Use new name.
---
gnu/packages/tex.scm | 49 ++++++++++++++++++++++++++++---------------------
1 file changed, 28 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index df36ecb2b8..66652bdfe7 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -5318,31 +5318,38 @@ not yet reflected in the package's or class's code.
The file
meant to be loaded during format generation and not by the user.")
(license license:lppl1.3c))))
-(define-public texlive-latex-ifplatform
+(define-public texlive-ifplatform
(package
- (name "texlive-latex-ifplatform")
+ (name "texlive-ifplatform")
(version (number->string %texlive-revision))
- (source (origin
- (method svn-fetch)
- (uri (texlive-ref "latex" "ifplatform"))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "157pplavvm2z97b3jl4x41w11k6q9wgy074mfg0dwmsx5lm328jy"))))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/ifplatform/"
+ "source/latex/ifplatform/"
+ "tex/latex/ifplatform/")
+ (base32
+ "1llas0xwq3y9nk7gblg40l99cgmkl9r7rbfazrhpnbaz5cshl8pl")))
+ (outputs '("out" "doc"))
(build-system texlive-build-system)
- (propagated-inputs (list texlive-catchfile))
- (arguments '(#:tex-directory "latex/ifplatform"))
- (home-page "https://www.ctan.org/pkg/ifplatform")
+ (propagated-inputs
+ (list texlive-catchfile
+ texlive-iftex
+ texlive-pdftexcmds
+ texlive-tools))
+ (home-page "https://ctan.org/pkg/ifplatform")
(synopsis "Conditionals to test which platform is being used")
(description
- "This package uses the (La)TeX extension @code{-shell-escape} to
-establish whether the document is being processed on a Windows or on a
-Unix-like system, or on Cygwin (Unix environment over a Windows system).
+ "This package uses the (La)TeX extension @samp{-shell-escape} to
+establish whether the document is being processed on a Windows or on
+a Unix-like system, or on Cygwin.
+
Booleans provided are: @code{\\ifwindows}, @code{\\iflinux}, @code{\\ifmacosx}
-and @code{\\ifcygwin}. The package also preserves the output of @code{uname}
-on a Unix-like system, which may be used to distinguish between various
-classes of systems.")
- (license license:lppl)))
+and @code{\\ifcygwin}. The package also preserves the output of
+@command{uname} on a Unix-like system, which may be used to distinguish
+between various classes of Unix systems.")
+ (license license:lppl1.3c)))
+
+(define-deprecated-package texlive-latex-ifplatform texlive-ifplatform)
(define-public texlive-latex-natbib
(package
@@ -5467,7 +5474,7 @@ rotated.")
(list texlive-bigfoot ; for suffix
texlive-filemod
texlive-graphics
- texlive-latex-ifplatform
+ texlive-ifplatform
texlive-l3kernel ; for expl3
texlive-oberdiek
texlive-latex-psfrag
@@ -10663,7 +10670,7 @@ configuration of its own fixed names, using @file{.mld}
files.")
texlive-fvextra
texlive-latex-float
texlive-latex-framed
- texlive-latex-ifplatform
+ texlive-ifplatform
texlive-latex-newfloat
texlive-lineno
texlive-xstring))
- 45/418: gnu: texlive-latex-newunicodechar -> texlive-newunicodechar., (continued)
- 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, 2023/06/02
- 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 <=
- 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
- 58/418: gnu: texlive-grffile: Fix build., guix-commits, 2023/06/02
- 60/418: gnu: texlive-latex-mdwtools -> texlive-mdwtools., guix-commits, 2023/06/02
- 61/418: gnu: texlive-latex-marginfix -> texlive-marginfix., guix-commits, 2023/06/02
- 79/418: gnu: texlive-latex-jknapltx -> texlive-jknapltx., guix-commits, 2023/06/02
- 82/418: gnu: texlive-latex-enotez -> texlive-enotez., guix-commits, 2023/06/02
- 34/418: gnu: Add texlive-showexpl., guix-commits, 2023/06/02
- 71/418: gnu: texlive-zref: Fix build., guix-commits, 2023/06/02