mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 16:57:55 +01:00
gnu: texlive-latex-readarray -> texlive-readarray.
* gnu/packages/tex.scm (texlive-readarray): New variable. (texlive-latex-readarray): Deprecate variable. (texlive-latex-verbatimbox)[propagated-inputs]: Use new name.
This commit is contained in:
parent
e80460f398
commit
bb86f82185
1 changed files with 14 additions and 27 deletions
|
@ -9776,43 +9776,30 @@ (define-public texlive-uniquecounter
|
||||||
|
|
||||||
(define-deprecated-package texlive-generic-uniquecounter texlive-uniquecounter)
|
(define-deprecated-package texlive-generic-uniquecounter texlive-uniquecounter)
|
||||||
|
|
||||||
(define-public texlive-latex-readarray
|
(define-public texlive-readarray
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-readarray")
|
(name "texlive-readarray")
|
||||||
(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/readarray/" "tex/latex/readarray/")
|
||||||
(url (string-append "svn://www.tug.org/texlive/tags/"
|
(base32
|
||||||
%texlive-tag "/Master/texmf-dist/"
|
"05yi37j8jq5a9pp9n6qg76m2fw899vpmwafzgnxbg0qp2fmch2ch")))
|
||||||
"/tex/latex/readarray"))
|
(outputs '("out" "doc"))
|
||||||
(revision %texlive-revision)))
|
(build-system texlive-build-system)
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0c53k180ivn1n7fz3ngvd2w1i5dw3kxml0n64vhki88xsylz7lxp"))))
|
|
||||||
(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/readarray")))
|
|
||||||
(mkdir-p target)
|
|
||||||
(copy-recursively (assoc-ref %build-inputs "source") target)
|
|
||||||
#t))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list texlive-listofitems))
|
(list texlive-listofitems))
|
||||||
(home-page "https://www.ctan.org/pkg/readarray")
|
(home-page "https://www.ctan.org/pkg/readarray")
|
||||||
(synopsis "Read, store and recall array-formatted data")
|
(synopsis "Read, store and recall array-formatted data")
|
||||||
(description
|
(description
|
||||||
"This package allows the user to input formatted data into elements of a
|
"This package allows the user to input formatted data into elements of
|
||||||
2-D or 3-D array and to recall that data at will by individual cell number.
|
a 2-D or 3-D array and to recall that data at will by individual cell number.
|
||||||
The data can be but need not be numerical in nature. It can be, for example,
|
The data can be but need not be numerical in nature. It can be, for example,
|
||||||
formatted text.")
|
formatted text.")
|
||||||
(license license:lppl1.3)))
|
(license license:lppl1.3)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-readarray texlive-readarray)
|
||||||
|
|
||||||
(define-public texlive-latex-verbatimbox
|
(define-public texlive-latex-verbatimbox
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-verbatimbox")
|
(name "texlive-latex-verbatimbox")
|
||||||
|
@ -9840,7 +9827,7 @@ (define-public texlive-latex-verbatimbox
|
||||||
(copy-recursively (assoc-ref %build-inputs "source") target)
|
(copy-recursively (assoc-ref %build-inputs "source") target)
|
||||||
#t))))
|
#t))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list texlive-latex-readarray))
|
(list texlive-readarray))
|
||||||
(home-page "https://www.ctan.org/pkg/verbatimbox")
|
(home-page "https://www.ctan.org/pkg/verbatimbox")
|
||||||
(synopsis "Deposit verbatim text in a box")
|
(synopsis "Deposit verbatim text in a box")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue