me
/
guix
Archived
1
0
Fork 0

gnu: texlive-latex-media9 -> texlive-media9.

* gnu/packages/tex.scm (texlive-media9): New variable.
(texlive-latex-media9): Deprecate variable.
* gnu/packages/plotutils.scm (asymptote)[native-inputs]: Use new name.
Nicolas Goaziou 2023-05-14 11:42:24 +02:00
parent 50e49cf9b4
commit d7fc4cec07
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
2 changed files with 22 additions and 31 deletions

View File

@ -320,7 +320,7 @@ colors, styles, options and details.")
texlive-kvoptions texlive-kvoptions
texlive-l3backend texlive-l3backend
texlive-latex-base texlive-latex-base
texlive-latex-media9 texlive-media9
texlive-oberdiek ;for ifluatex texlive-oberdiek ;for ifluatex
texlive-latex-ocgx2 texlive-latex-ocgx2
texlive-parskip texlive-parskip

View File

@ -9037,46 +9037,37 @@ with documents of any length in which the usual processing abilities are
required: automatic sectioning and pagination, spell checking and so forth.") required: automatic sectioning and pagination, spell checking and so forth.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public texlive-latex-media9 (define-public texlive-media9
(package (package
(name "texlive-latex-media9") (name "texlive-media9")
(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/media9/"
(url (string-append "svn://www.tug.org/texlive/tags/" "source/latex/media9/files/"
%texlive-tag "/Master/texmf-dist/" "source/latex/media9/players/"
"/tex/latex/media9")) "tex/latex/media9/javascript/"
(revision %texlive-revision))) "tex/latex/media9/players/")
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32 (base32
"0a1v70k6231323y1lazfda1y9568w8hn7c8jhc7rblkhdfv3slw7")))) "1kx0zbwd7pd4mah0b8l595hyjc03g505kfmn6fv7iaqvkixqrgbi")))
(build-system trivial-build-system) (outputs '("out" "doc"))
(arguments (build-system texlive-build-system)
`(#:modules ((guix build utils)) (home-page "https://ctan.org/pkg/media9")
#:builder
(begin
(use-modules (guix build utils))
(let ((target (string-append (assoc-ref %outputs "out")
"/share/texmf-dist/tex/latex/media9")))
(mkdir-p target)
(copy-recursively (assoc-ref %build-inputs "source") target)
#t))))
(home-page "https://www.ctan.org/pkg/media9")
(synopsis "Multimedia inclusion package with Adobe Reader-9/X compatibility") (synopsis "Multimedia inclusion package with Adobe Reader-9/X compatibility")
(description (description
"The package provides an interface to embed interactive Flash (SWF) and 3D "The package provides an interface to embed interactive Flash (SWF) and
objects (Adobe U3D & PRC), as well as video and sound files or streams in the 3D objects (Adobe U3D & PRC), as well as video and sound files or streams in
popular MP4, FLV and MP3 formats into PDF documents with Acrobat-9/X the popular MP4, FLV and MP3 formats into PDF documents with Acrobat-9/X
compatibility. Playback of multimedia files uses the built-in Flash Player of compatibility. Playback of multimedia files uses the built-in Flash Player of
Adobe Reader and does, therefore, not depend on external plug-ins. Flash Player Adobe Reader and does, therefore, not depend on external plug-ins. Flash
supports the efficient H.264 codec for video compression. Player supports the efficient H.264 codec for video compression.
The package is based on the RichMedia Annotation, an Adobe addition to the PDF The package is based on the RichMedia Annotation, an Adobe addition to the PDF
specification. It replaces the now obsolete @code{movie15} package.") specification. It replaces the now obsolete @code{movie15} package.")
(license license:lppl))) (license license:lppl)))
(define-deprecated-package texlive-latex-media9 texlive-media9)
(define-public texlive-latex-ocgx2 (define-public texlive-latex-ocgx2
(package (package
(name "texlive-latex-ocgx2") (name "texlive-latex-ocgx2")