[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/09: gnu: libva: Update to 1.8.3.
From: |
Marius Bakke |
Subject: |
01/09: gnu: libva: Update to 1.8.3. |
Date: |
Sat, 2 Sep 2017 09:58:29 -0400 (EDT) |
mbakke pushed a commit to branch staging
in repository guix.
commit 7035d2dd698a8a4af07894670bbc2f504089d2c7
Author: Marius Bakke <address@hidden>
Date: Sat Jul 29 16:27:33 2017 +0200
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.
---
gnu/packages/video.scm | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 4ce2a8f..0ab6442 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -530,15 +530,19 @@ libebml is a C++ library to read and write EBML files.")
(define-public libva
(package
(name "libva")
- (version "1.8.2")
+ (version "1.8.3")
(source
(origin
(method url-fetch)
- (uri (string-append
- "https://www.freedesktop.org/software/vaapi/releases/libva/libva-"
- version".tar.bz2"))
+ (uri (list
+ ;; Newer releases are only available on GitHub.
+ (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
- (base32 "1pnfl3q7dzxs26l3jk9xi97gr0qwnaz6dhvf9ifp2yplr3fy7lwy"))))
+ (base32 "16xbk0awl7wp0vy0nyjvxk11spbw25mp8kwd9bmhd6x9xffi5vjn"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
- branch staging updated (4028fd3 -> 30dfac2), Marius Bakke, 2017/09/02
- 06/09: Revert "gnu: lzip: Update to 1.19.", Marius Bakke, 2017/09/02
- 03/09: gnu: util-linux: Update to 2.30.1., Marius Bakke, 2017/09/02
- 04/09: gnu: libdrm: Update to 2.4.83., Marius Bakke, 2017/09/02
- 02/09: gnu: dbus: Update to 1.10.22., Marius Bakke, 2017/09/02
- 08/09: gnu: pango: Update to 1.40.11., Marius Bakke, 2017/09/02
- 07/09: gnu: harfbuzz: Update to 1.5.0., Marius Bakke, 2017/09/02
- 05/09: gnu: mesa: Update to 17.1.8., Marius Bakke, 2017/09/02
- 01/09: gnu: libva: Update to 1.8.3.,
Marius Bakke <=
- 09/09: Merge branch 'master' into staging, Marius Bakke, 2017/09/02