gnu: libva: Update to 1.8.3.

GitHub is now the canonical distribution point of libva:
<https://github.com/01org/libva/issues/52#issuecomment-303465588>

* gnu/packages/video.scm (libva): Update to 1.8.3.
[source](uri): Add new download location.
This commit is contained in:
Marius Bakke 2017-07-29 16:27:33 +02:00
parent 4028fd395e
commit 7035d2dd69
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 9 additions and 5 deletions

View File

@ -530,15 +530,19 @@ libebml is a C++ library to read and write EBML files.")
(define-public libva (define-public libva
(package (package
(name "libva") (name "libva")
(version "1.8.2") (version "1.8.3")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (list
"https://www.freedesktop.org/software/vaapi/releases/libva/libva-" ;; Newer releases are only available on GitHub.
version".tar.bz2")) (string-append "https://github.com/01org/libva/releases/download/"
version "/libva-" version ".tar.bz2")
;; Keep the old URL around for compatibility.
(string-append "https://www.freedesktop.org/software/vaapi/releases/"
"libva/libva-" version "/libva-" version ".tar.bz2")))
(sha256 (sha256
(base32 "1pnfl3q7dzxs26l3jk9xi97gr0qwnaz6dhvf9ifp2yplr3fy7lwy")))) (base32 "16xbk0awl7wp0vy0nyjvxk11spbw25mp8kwd9bmhd6x9xffi5vjn"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))