Archived
1
0
Fork 0

gnu: texlive-latex-overpic -> texlive-overpic.

* gnu/packages/tex.scm (texlive-overpic): New variable.
(texlive-latex-overpic): Deprecate variable.
* gnu/packages/docbook.scm (dblatex): Use new name.
This commit is contained in:
Nicolas Goaziou 2023-05-13 16:39:53 +02:00
parent f0a491f717
commit fae2a0f075
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D
2 changed files with 16 additions and 25 deletions

View file

@ -549,7 +549,7 @@ the in DocBook SGML DTDs.")
texlive-jknapltx texlive-jknapltx
texlive-listings texlive-listings
texlive-multirow texlive-multirow
texlive-latex-overpic texlive-overpic
texlive-pdfpages texlive-pdfpages
texlive-refcount texlive-refcount
texlive-subfigure texlive-subfigure

View file

@ -7387,32 +7387,21 @@ advantage with @code{\\multirow} cells.")
(define-deprecated-package texlive-latex-multirow texlive-multirow) (define-deprecated-package texlive-latex-multirow texlive-multirow)
(define-public texlive-latex-overpic (define-public texlive-overpic
(package (package
(name "texlive-latex-overpic") (name "texlive-overpic")
(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/overpic/"
(url (string-append "svn://www.tug.org/texlive/tags/" "source/latex/overpic/"
%texlive-tag "/Master/texmf-dist/" "tex/latex/overpic/")
"/tex/latex/overpic"))
(revision %texlive-revision)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32 (base32
"1ygsr0rsdabj61zask3346xrwiphz5i6f1nfb9k4d3234psh09kb")))) "0z6jkn54b4yfk2ia8cxcb5is3qyg64r0na05ixd8xbirrks9ir7w")))
(build-system trivial-build-system) (outputs '("out" "doc"))
(arguments (build-system texlive-build-system)
`(#:modules ((guix build utils)) (propagated-inputs
#:builder (list texlive-eepic texlive-graphics))
(begin
(use-modules (guix build utils))
(let ((target (string-append (assoc-ref %outputs "out")
"/share/texmf-dist/tex/latex/overpic")))
(mkdir-p target)
(copy-recursively (assoc-ref %build-inputs "source") target)
#t))))
(home-page "https://www.ctan.org/pkg/overpic") (home-page "https://www.ctan.org/pkg/overpic")
(synopsis "Combine LaTeX commands over included graphics") (synopsis "Combine LaTeX commands over included graphics")
(description (description
@ -7423,6 +7412,8 @@ the included graphic. LaTeX commands can be placed on the graphic at defined
positions; a grid for orientation is available.") positions; a grid for orientation is available.")
(license license:lppl1.0+))) (license license:lppl1.0+)))
(define-deprecated-package texlive-latex-overpic texlive-overpic)
(define-public texlive-latex-parskip (define-public texlive-latex-parskip
(package (package
(name "texlive-latex-parskip") (name "texlive-latex-parskip")