diff options
author | Leo Famulari <leo@famulari.name> | 2016-09-04 02:53:37 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-09-05 20:35:21 -0400 |
commit | 43bec6d06d8dcc4c0f865e492d370a8724bba2ce (patch) | |
tree | 503e8868566cf06d0c4daa6328c890b235278042 | |
parent | c2b411c288637d2877aaa2785500fea235f6fd32 (diff) | |
download | guix-43bec6d06d8dcc4c0f865e492d370a8724bba2ce.tar.gz guix-43bec6d06d8dcc4c0f865e492d370a8724bba2ce.zip |
gnu: qemu: Update to 2.7.0 [fixes CVE-2016-7116].
* gnu/packages/qemu.scm (qemu): Update to 2.7.0.
[arguments]: Adjust path in 'disable-test-qga' phase.
-rw-r--r-- | gnu/packages/qemu.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/qemu.scm b/gnu/packages/qemu.scm index 1b9f0add25..aee6a75f0e 100644 --- a/gnu/packages/qemu.scm +++ b/gnu/packages/qemu.scm @@ -69,14 +69,14 @@ (define-public qemu (package (name "qemu") - (version "2.6.1") + (version "2.7.0") (source (origin (method url-fetch) (uri (string-append "http://wiki.qemu-project.org/download/qemu-" version ".tar.bz2")) (sha256 (base32 - "1l88iqk0swqccrnjwczgl9arqsvy77bis862zxajy7z3dqdzshj9")))) + "0lqyz01z90nvxpc3nx4djbci7hx62cwvs5zwd6phssds0sap6vij")))) (build-system gnu-build-system) (arguments '(;; Running tests in parallel can occasionally lead to failures, like: @@ -125,7 +125,7 @@ (setenv "V" "1"))) (add-before 'check 'disable-test-qga (lambda _ - (substitute* "tests/Makefile" + (substitute* "tests/Makefile.include" ;; Comment out the test-qga test, which needs /sys and ;; fails within the build environment. (("check-unit-.* tests/test-qga" all) |