gnu: virt-manager: Update to 3.2.0.
* gnu/packages/virtualization.scm (virt-manager): Update to 3.2.0. [arguments]: Remove #:test-target. Remove fix-qemu-img-reference phase. Adapt check phase to use pytest, although they still do not run. [native-inputs]: Add python-docutils. Suggest adding python-pytest to enable tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
7573ab22d7
commit
5eb05ede0b
|
@ -1230,7 +1230,7 @@ virtualization library.")
|
|||
(define-public virt-manager
|
||||
(package
|
||||
(name "virt-manager")
|
||||
(version "2.2.1")
|
||||
(version "3.2.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://virt-manager.org/download/sources"
|
||||
|
@ -1238,11 +1238,10 @@ virtualization library.")
|
|||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"06ws0agxlip6p6n3n43knsnjyd91gqhh2dadgc33wl9lx1k8vn6g"))))
|
||||
"11kvpzcmyir91qz0dsnk7748jbb4wr8mrc744w117qc91pcy6vrb"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:use-setuptools? #f ; uses custom distutils 'install' command
|
||||
#:test-target "test_ui"
|
||||
#:tests? #f ; TODO The tests currently fail
|
||||
; RuntimeError: Loop condition wasn't
|
||||
; met
|
||||
|
@ -1260,12 +1259,6 @@ virtualization library.")
|
|||
(substitute* "virtinst/buildconfig.py"
|
||||
(("/usr") (assoc-ref outputs "out")))
|
||||
#t))
|
||||
(add-after 'unpack 'fix-qemu-img-reference
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "virtconv/formats.py"
|
||||
(("/usr(/bin/qemu-img)" _ suffix)
|
||||
(string-append (assoc-ref inputs "qemu") suffix)))
|
||||
#t))
|
||||
(add-after 'unpack 'fix-default-uri
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; Xen is not available for now - so only patch qemu.
|
||||
|
@ -1296,11 +1289,12 @@ virtualization library.")
|
|||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(setenv "HOME" "/tmp")
|
||||
(setenv "XDG_CACHE_HOME" "/tmp")
|
||||
(system "Xvfb :1 &")
|
||||
(setenv "DISPLAY" ":1")
|
||||
;; Dogtail requires that Assistive Technology support be enabled
|
||||
(setenv "GTK_MODULES" "gail:atk-bridge")
|
||||
(invoke "dbus-run-session" "--" "python" "setup.py" "test_ui"))
|
||||
(invoke "dbus-run-session" "--" "pytest" "--uitests"))
|
||||
#t))
|
||||
(add-after 'install 'glib-or-gtk-compile-schemas
|
||||
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas))
|
||||
|
@ -1330,7 +1324,9 @@ virtualization library.")
|
|||
("gtk+" ,gtk+ "bin") ; gtk-update-icon-cache
|
||||
("perl" ,perl) ; pod2man
|
||||
("intltool" ,intltool)
|
||||
("rst2man" ,python-docutils)
|
||||
;; The following are required for running the tests
|
||||
;; ("python-pytest" ,python-pytest)
|
||||
;; ("python-dogtail" ,python-dogtail)
|
||||
;; ("xvfb" ,xorg-server-for-tests)
|
||||
;; ("dbus" ,dbus)
|
||||
|
|
Reference in New Issue