gnu: gnome-shell: Update to 44.3.
* gnu/packages/gnome.scm (gnome-shell): Update to 44.3. [arguments]<#:phases>: Add ‘unbreak-perf-tests’. Adjust ‘pre-check’ accordingly. [native-inputs]: Add python-dbus and python-dbusmock. [inputs]: Remove caribou. Replace gcr-3 with gcr.master
parent
9c28ee9daf
commit
12c3e3341d
|
@ -9113,7 +9113,7 @@ properties, screen resolution, and other GNOME parameters.")
|
||||||
(define-public gnome-shell
|
(define-public gnome-shell
|
||||||
(package
|
(package
|
||||||
(name "gnome-shell")
|
(name "gnome-shell")
|
||||||
(version "42.4")
|
(version "44.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -9121,7 +9121,7 @@ properties, screen resolution, and other GNOME parameters.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0kn5fclciybp2fs38wd39hdz85y91pas0ckfa02pmyx91sbz4pw7"))))
|
"1grizh3fbks5dgizaj38300cz97ay81q0hlk1pvawkpfq9qlnsam"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(let ((disallowed-references
|
(let ((disallowed-references
|
||||||
|
@ -9159,6 +9159,12 @@ properties, screen resolution, and other GNOME parameters.")
|
||||||
(substitute* "meson.build"
|
(substitute* "meson.build"
|
||||||
(("gtk_update_icon_cache: true")
|
(("gtk_update_icon_cache: true")
|
||||||
"gtk_update_icon_cache: false"))))
|
"gtk_update_icon_cache: false"))))
|
||||||
|
(add-after 'unpack 'unbreak-perf-tests
|
||||||
|
(lambda _
|
||||||
|
;; Lest non-fatal dbus warnings be made fatal again…
|
||||||
|
(substitute* "tests/meson.build"
|
||||||
|
(("perf_testenv\\.set\\('G_DEBUG'" all)
|
||||||
|
(string-append "# " all)))))
|
||||||
(add-before 'configure 'record-absolute-file-names
|
(add-before 'configure 'record-absolute-file-names
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((ibus-daemon (search-input-file inputs "bin/ibus-daemon"))
|
(let ((ibus-daemon (search-input-file inputs "bin/ibus-daemon"))
|
||||||
|
@ -9175,7 +9181,13 @@ properties, screen resolution, and other GNOME parameters.")
|
||||||
;; Tests require a running X server.
|
;; Tests require a running X server.
|
||||||
(system "Xvfb :1 &")
|
(system "Xvfb :1 &")
|
||||||
(setenv "DISPLAY" ":1")
|
(setenv "DISPLAY" ":1")
|
||||||
(setenv "HOME" "/tmp"))) ;to avoid "fatal" warnings
|
;; For the missing /var/lib/dbus/machine-id
|
||||||
|
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||||
|
(setenv "NO_AT_BRIDGE" "1")
|
||||||
|
(setenv "HOME" "/tmp")
|
||||||
|
(setenv "XDG_RUNTIME_DIR" (string-append (getcwd) "/runtime-dir"))
|
||||||
|
(mkdir (getenv "XDG_RUNTIME_DIR"))
|
||||||
|
(chmod (getenv "XDG_RUNTIME_DIR") #o700)))
|
||||||
(add-after 'install 'wrap-programs
|
(add-after 'install 'wrap-programs
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((gi-typelib-path (getenv "GI_TYPELIB_PATH"))
|
(let ((gi-typelib-path (getenv "GI_TYPELIB_PATH"))
|
||||||
|
@ -9241,16 +9253,17 @@ printf '~a is deprecated. Use the \"gnome-extensions\" CLI or \
|
||||||
perl
|
perl
|
||||||
pkg-config
|
pkg-config
|
||||||
python
|
python
|
||||||
|
python-dbus
|
||||||
|
python-dbusmock
|
||||||
ruby-sass
|
ruby-sass
|
||||||
sassc
|
sassc
|
||||||
;; For tests
|
;; For tests
|
||||||
xorg-server-for-tests))
|
xorg-server-for-tests))
|
||||||
(inputs
|
(inputs
|
||||||
(list accountsservice
|
(list accountsservice
|
||||||
caribou
|
|
||||||
docbook-xsl
|
docbook-xsl
|
||||||
evolution-data-server
|
evolution-data-server
|
||||||
gcr-3
|
gcr
|
||||||
gdm
|
gdm
|
||||||
librsvg
|
librsvg
|
||||||
gjs
|
gjs
|
||||||
|
|
Reference in New Issue