gnu: gtk+-2: Remove trailing #t and use gexps.
* gnu/packages/gtk.scm (gtk+-2) [phases]: Remove trailing #t. [arguments]: Use gexps.master
parent
abecd9c128
commit
051a6068b6
|
@ -906,14 +906,14 @@ is part of the GNOME accessibility project.")
|
|||
python-wrapper
|
||||
xorg-server-for-tests))
|
||||
(arguments
|
||||
`(#:parallel-tests? #f
|
||||
(list
|
||||
#:parallel-tests? #f
|
||||
#:configure-flags
|
||||
(list "--with-xinput=yes"
|
||||
(string-append "--with-html-dir="
|
||||
(assoc-ref %outputs "doc")
|
||||
#~(list "--with-xinput=yes"
|
||||
(string-append "--with-html-dir=" #$output
|
||||
"/share/gtk-doc/html"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'disable-failing-tests
|
||||
(lambda _
|
||||
(substitute* "gtk/Makefile.in"
|
||||
|
@ -927,8 +927,7 @@ is part of the GNOME accessibility project.")
|
|||
(("g_test_add_func.*test_fill_empty\\);")
|
||||
"")
|
||||
(("g_test_add_func.*test_tag\\);")
|
||||
""))
|
||||
#t))
|
||||
""))))
|
||||
(add-before 'check 'pre-check
|
||||
(lambda _
|
||||
;; Tests require a running X server.
|
||||
|
@ -939,14 +938,11 @@ is part of the GNOME accessibility project.")
|
|||
;; Tests look for $XDG_RUNTIME_DIR.
|
||||
(setenv "XDG_RUNTIME_DIR" (getcwd))
|
||||
;; For missing '/etc/machine-id'.
|
||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||
#t))
|
||||
(setenv "DBUS_FATAL_WARNINGS" "0")))
|
||||
(add-after 'install 'remove-cache
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(for-each
|
||||
delete-file
|
||||
(find-files (assoc-ref outputs "out") "immodules.cache"))
|
||||
#t)))))
|
||||
(lambda _
|
||||
(for-each delete-file
|
||||
(find-files #$output "immodules.cache")))))))
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "GUIX_GTK2_PATH")
|
||||
|
|
Reference in New Issue