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.
This commit is contained in:
parent
c81b4d6002
commit
06bc5b28b0
2 changed files with 42 additions and 53 deletions
|
@ -36179,40 +36179,40 @@ package online.")
|
||||||
(name "r-prereg")
|
(name "r-prereg")
|
||||||
(version "0.6.0")
|
(version "0.6.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (cran-uri "prereg" version))
|
(uri (cran-uri "prereg" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"039nrl5cirsx1ysh214dr6xnn1h6h3f90im6k9dgmzfksxdqigpw"))))
|
"039nrl5cirsx1ysh214dr6xnn1h6h3f90im6k9dgmzfksxdqigpw"))))
|
||||||
(properties `((upstream-name . "prereg")))
|
(properties `((upstream-name . "prereg")))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list r-rmarkdown
|
(list r-rmarkdown
|
||||||
;; The package provides a custom LaTex template in
|
;; The package provides a custom LaTex template in
|
||||||
;; inst/rmd/prereg_form.tex, which depends on these packages:
|
;; inst/rmd/prereg_form.tex, which depends on these packages:
|
||||||
texlive-amsmath
|
texlive-amsmath
|
||||||
texlive-booktabs
|
texlive-booktabs
|
||||||
texlive-etoolbox
|
texlive-etoolbox
|
||||||
texlive-iftex
|
texlive-fancyhdr
|
||||||
texlive-fancyhdr
|
texlive-fancyvrb
|
||||||
texlive-fancyvrb
|
texlive-geometry
|
||||||
texlive-geometry
|
texlive-graphics
|
||||||
texlive-graphics
|
texlive-iftex
|
||||||
texlive-latex-threeparttable
|
texlive-listings
|
||||||
texlive-titlesec
|
texlive-polyglossia
|
||||||
texlive-upquote
|
texlive-threeparttable
|
||||||
texlive-listings
|
texlive-titlesec
|
||||||
texlive-polyglossia
|
texlive-titling
|
||||||
texlive-titling
|
texlive-tools
|
||||||
texlive-tools
|
texlive-ulem
|
||||||
texlive-ulem
|
texlive-upquote
|
||||||
(texlive-updmap.cfg (list texlive-amsfonts texlive-lm))))
|
(texlive-updmap.cfg (list texlive-amsfonts texlive-lm))))
|
||||||
(home-page "https://github.com/crsh/prereg")
|
(home-page "https://github.com/crsh/prereg")
|
||||||
(synopsis
|
(synopsis
|
||||||
"R Markdown Templates to preregister Scientific Studies")
|
"R Markdown Templates to preregister Scientific Studies")
|
||||||
(description
|
(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.")
|
preregistration documents for scientific studies in PDF format.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
|
|
@ -7683,33 +7683,22 @@ according to the natural width of the widest cell in the column.")
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-tabulary texlive-tabulary)
|
(define-deprecated-package texlive-latex-tabulary texlive-tabulary)
|
||||||
|
|
||||||
(define-public texlive-latex-threeparttable
|
(define-public texlive-threeparttable
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-threeparttable")
|
(name "texlive-threeparttable")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (svn-reference
|
(list "doc/latex/threeparttable/"
|
||||||
(url (string-append "svn://www.tug.org/texlive/tags/"
|
"tex/latex/threeparttable/")
|
||||||
%texlive-tag "/Master/texmf-dist/"
|
(base32
|
||||||
"/tex/latex/threeparttable"))
|
"05i50k1y736m52903nz4kf2xl23w6y7rrzyacs4kgd1w6kmjm6f7")))
|
||||||
(revision %texlive-revision)))
|
(outputs '("out" "doc"))
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(build-system texlive-build-system)
|
||||||
(sha256
|
(propagated-inputs
|
||||||
(base32
|
(list texlive-bookmark
|
||||||
"10vy9k150w2lviw8h22s2mcykff38xci653m5823s2vv44pwbmzq"))))
|
texlive-hyperref))
|
||||||
(build-system trivial-build-system)
|
(home-page "https://ctan.org/pkg/threeparttable")
|
||||||
(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")
|
|
||||||
(synopsis "Tables with captions and notes all the same width")
|
(synopsis "Tables with captions and notes all the same width")
|
||||||
(description
|
(description
|
||||||
"This package facilitates tables with titles (captions) and notes. The
|
"This package facilitates tables with titles (captions) and notes. The
|
||||||
|
|
Reference in a new issue