[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
89/416: gnu: texlive-latex-threeparttable -> texlive-threeparttable.
From: |
guix-commits |
Subject: |
89/416: gnu: texlive-latex-threeparttable -> texlive-threeparttable. |
Date: |
Sun, 28 May 2023 02:32:18 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 480891a9b74d7ac5f3c218889074740d23927544
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun May 14 10:28:34 2023 +0200
gnu: texlive-latex-threeparttable -> texlive-threeparttable.
* gnu/packages/tex.scm (texlive-threeparttable): New variable.
(texlive-latex-threeparttable): Deprecate variable.
* gnu/packages/cran.scm (r-prereg)[propagated-inputs]: Use new name.
Re-order alphabetically.
---
gnu/packages/cran.scm | 56 +++++++++++++++++++++++++--------------------------
gnu/packages/tex.scm | 39 +++++++++++++----------------------
2 files changed, 42 insertions(+), 53 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 39bea6b380..21579832fd 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -35552,40 +35552,40 @@ package online.")
(name "r-prereg")
(version "0.6.0")
(source
- (origin
- (method url-fetch)
- (uri (cran-uri "prereg" version))
- (sha256
- (base32
- "039nrl5cirsx1ysh214dr6xnn1h6h3f90im6k9dgmzfksxdqigpw"))))
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "prereg" version))
+ (sha256
+ (base32
+ "039nrl5cirsx1ysh214dr6xnn1h6h3f90im6k9dgmzfksxdqigpw"))))
(properties `((upstream-name . "prereg")))
(build-system r-build-system)
(propagated-inputs
- (list r-rmarkdown
- ;; The package provides a custom LaTex template in
- ;; inst/rmd/prereg_form.tex, which depends on these packages:
- texlive-amsmath
- texlive-booktabs
- texlive-etoolbox
- texlive-iftex
- texlive-fancyhdr
- texlive-fancyvrb
- texlive-geometry
- texlive-graphics
- texlive-latex-threeparttable
- texlive-titlesec
- texlive-upquote
- texlive-listings
- texlive-polyglossia
- texlive-titling
- texlive-tools
- texlive-ulem
- (texlive-updmap.cfg (list texlive-amsfonts texlive-lm))))
+ (list r-rmarkdown
+ ;; The package provides a custom LaTex template in
+ ;; inst/rmd/prereg_form.tex, which depends on these packages:
+ texlive-amsmath
+ texlive-booktabs
+ texlive-etoolbox
+ texlive-fancyhdr
+ texlive-fancyvrb
+ texlive-geometry
+ texlive-graphics
+ texlive-iftex
+ texlive-listings
+ texlive-polyglossia
+ texlive-threeparttable
+ texlive-titlesec
+ texlive-titling
+ texlive-tools
+ texlive-ulem
+ texlive-upquote
+ (texlive-updmap.cfg (list texlive-amsfonts texlive-lm))))
(home-page "https://github.com/crsh/prereg")
(synopsis
- "R Markdown Templates to preregister Scientific Studies")
+ "R Markdown Templates to preregister Scientific Studies")
(description
- "This package provides a collection of templates to author
+ "This package provides a collection of templates to author
preregistration documents for scientific studies in PDF format.")
(license license:gpl3)))
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index d60df62ebe..cd1bec2a48 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -7691,33 +7691,22 @@ according to the natural width of the widest cell in
the column.")
(define-deprecated-package texlive-latex-tabulary texlive-tabulary)
-(define-public texlive-latex-threeparttable
+(define-public texlive-threeparttable
(package
- (name "texlive-latex-threeparttable")
+ (name "texlive-threeparttable")
(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/threeparttable"))
- (revision %texlive-revision)))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "10vy9k150w2lviw8h22s2mcykff38xci653m5823s2vv44pwbmzq"))))
- (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/threeparttable")))
- (mkdir-p target)
- (copy-recursively (assoc-ref %build-inputs "source") target)
- #t))))
- (home-page "https://www.ctan.org/pkg/threeparttable")
+ (source (texlive-origin
+ name version
+ (list "doc/latex/threeparttable/"
+ "tex/latex/threeparttable/")
+ (base32
+ "05i50k1y736m52903nz4kf2xl23w6y7rrzyacs4kgd1w6kmjm6f7")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (propagated-inputs
+ (list texlive-bookmark
+ texlive-hyperref))
+ (home-page "https://ctan.org/pkg/threeparttable")
(synopsis "Tables with captions and notes all the same width")
(description
"This package facilitates tables with titles (captions) and notes. The
- 114/416: gnu: texlive-latex-hyphenat -> texlive-hyphenat., (continued)
- 114/416: gnu: texlive-latex-hyphenat -> texlive-hyphenat., guix-commits, 2023/05/28
- 70/416: gnu: texlive-latex-xkeyval -> texlive-xkeyval., guix-commits, 2023/05/28
- 69/416: gnu: texlive-fonts-ec -> texlive-ec., guix-commits, 2023/05/28
- 64/416: gnu: texlive-latex-anysize -> texlive-anysize., guix-commits, 2023/05/28
- 68/416: gnu: texlive-latex-footmisc -> texlive-footmisc., guix-commits, 2023/05/28
- 63/416: gnu: texlive-latex-upquote -> texlive-upquote., guix-commits, 2023/05/28
- 78/416: gnu: texlive-latex-frankenstein -> texlive-frankenstein., guix-commits, 2023/05/28
- 75/416: gnu: texlive-latex-colortbl -> texlive-colortbl., guix-commits, 2023/05/28
- 74/416: gnu: texlive-latex-cmap -> texlive-cmap., guix-commits, 2023/05/28
- 82/416: gnu: texlive-latex-enotez -> texlive-enotez., guix-commits, 2023/05/28
- 89/416: gnu: texlive-latex-threeparttable -> texlive-threeparttable.,
guix-commits <=
- 91/416: gnu: texlive-booktabs: Fix build., guix-commits, 2023/05/28
- 101/416: gnu: texlive-latex-preview -> texlive-preview., guix-commits, 2023/05/28
- 94/416: gnu: Add texlive-ctablestack., guix-commits, 2023/05/28
- 104/416: gnu: texlive-latex-ocgx2 -> texlive-ocgx2., guix-commits, 2023/05/28
- 93/416: gnu: texlive-preprint: Fix build., guix-commits, 2023/05/28
- 100/416: gnu: texlive-latex-ucs -> texlive-ucs., guix-commits, 2023/05/28
- 123/416: gnu: texlive-tex-plain -> texlive-plain., guix-commits, 2023/05/28
- 86/416: gnu: texlive-latex-pbox -> texlive-pbox., guix-commits, 2023/05/28
- 110/416: gnu: texlive-latex-xmpincl -> texlive-xmpincl., guix-commits, 2023/05/28
- 85/416: gnu: texlive-latex-parskip -> texlive-parskip., guix-commits, 2023/05/28