gnu: glade: Remove dependency on GJS on non-x86_64.
* gnu/packages/gnome.scm (glade3)[arguments]: Add optional 'skip-gjs-test' phase. [native-inputs]: Provide GJS only when 'target-x86-64?'.
This commit is contained in:
parent
689d141cd8
commit
e080e35dc1
1 changed files with 19 additions and 1 deletions
|
@ -3292,6 +3292,18 @@ API add-ons to make GTK+ widgets OpenGL-capable.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "meson_post_install.py"
|
(substitute* "meson_post_install.py"
|
||||||
(("gtk-update-icon-cache") "true"))))
|
(("gtk-update-icon-cache") "true"))))
|
||||||
|
|
||||||
|
,@(if (this-package-native-input "gjs")
|
||||||
|
'()
|
||||||
|
'((add-after 'unpack 'skip-gjs-test
|
||||||
|
(lambda _
|
||||||
|
;; When the optional dependency on GJS is missing, skip
|
||||||
|
;; the GJS plugin tests.
|
||||||
|
(substitute* "tests/modules.c"
|
||||||
|
(("g_test_add.*JavaScript.*" all)
|
||||||
|
(string-append "// " all "\n")))
|
||||||
|
(delete-file "tests/catalogs/gjsplugin.xml")))))
|
||||||
|
|
||||||
(add-before 'configure 'fix-docbook
|
(add-before 'configure 'fix-docbook
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* "man/meson.build"
|
(substitute* "man/meson.build"
|
||||||
|
@ -3320,7 +3332,13 @@ current/manpages/docbook.xsl")
|
||||||
("glib:bin" ,glib "bin")
|
("glib:bin" ,glib "bin")
|
||||||
("python-pygobject" ,python-pygobject)
|
("python-pygobject" ,python-pygobject)
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("gjs" ,gjs)
|
|
||||||
|
;; GJS depends on Rust, which is x86_64-only so far, so remove the GJS
|
||||||
|
;; dependency on other platforms (FIXME).
|
||||||
|
,@(if (target-x86-64?)
|
||||||
|
`(("gjs" ,gjs))
|
||||||
|
'())
|
||||||
|
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("xorg-server" ,xorg-server-for-tests)))
|
("xorg-server" ,xorg-server-for-tests)))
|
||||||
(home-page "https://glade.gnome.org")
|
(home-page "https://glade.gnome.org")
|
||||||
|
|
Reference in a new issue