all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: 65644@debbugs.gnu.org
Cc: Maxim Cournoyer <maxim.cournoyer@gmail.com>,
	liliana.prikler@gmail.com, rg@raghavgururajan.name
Subject: [bug#65644] [PATCH gnome-team v2 9/9] gnu: gnome-shell: Update to 44.3.
Date: Thu, 31 Aug 2023 05:35:30 +0200	[thread overview]
Message-ID: <12c3e3341d5d4a3a98c5f6ebe7166034bd025a45.1694031712.git.liliana.prikler@gmail.com> (raw)
In-Reply-To: <35a9ebf83ef1063dfdda255b5a670d19747564f7.1694031712.git.liliana.prikler@gmail.com>

* 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.
---
 gnu/packages/gnome.scm | 23 ++++++++++++++++++-----
 1 file changed, 18 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 81e3e0cd65..5c0f84d057 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9113,7 +9113,7 @@ (define-public gnome-control-center
 (define-public gnome-shell
   (package
     (name "gnome-shell")
-    (version "42.4")
+    (version "44.3")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -9121,7 +9121,7 @@ (define-public gnome-shell
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "0kn5fclciybp2fs38wd39hdz85y91pas0ckfa02pmyx91sbz4pw7"))))
+                "1grizh3fbks5dgizaj38300cz97ay81q0hlk1pvawkpfq9qlnsam"))))
     (build-system meson-build-system)
     (arguments
      (let ((disallowed-references
@@ -9159,6 +9159,12 @@ (define-public gnome-shell
                 (substitute* "meson.build"
                   (("gtk_update_icon_cache: true")
                    "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
               (lambda* (#:key inputs #:allow-other-keys)
                 (let ((ibus-daemon (search-input-file inputs "bin/ibus-daemon"))
@@ -9175,7 +9181,13 @@ (define-public gnome-shell
                 ;; Tests require a running X server.
                 (system "Xvfb :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
               (lambda* (#:key inputs #:allow-other-keys)
                 (let ((gi-typelib-path  (getenv "GI_TYPELIB_PATH"))
@@ -9241,16 +9253,17 @@ (define-public gnome-shell
            perl
            pkg-config
            python
+           python-dbus
+           python-dbusmock
            ruby-sass
            sassc
            ;; For tests
            xorg-server-for-tests))
     (inputs
      (list accountsservice
-           caribou
            docbook-xsl
            evolution-data-server
-           gcr-3
+           gcr
            gdm
            librsvg
            gjs
-- 
2.41.0





  parent reply	other threads:[~2023-09-06 20:24 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-31  4:08 [bug#65644] [PATCH gnome-team 0/9] Update GNOME Shell to 44 Liliana Marie Prikler
2023-08-20  7:00 ` [bug#65644] [PATCH gnome-team v2 1/9] gnu: gcr: Update to 4.0.0 Liliana Marie Prikler
2023-08-20  7:01   ` [bug#65644] [PATCH gnome-team v2 4/9] gnu: baobab: Update to 44.0 Liliana Marie Prikler
2023-08-20  7:03   ` [bug#65644] [PATCH gnome-team v2 7/9] gnu: gnome-settings-daemon: Update to 44.1 Liliana Marie Prikler
2023-08-20  7:11   ` [bug#65644] [PATCH gnome-team v2 5/9] gnu: gnome-desktop: Update to 44.0 Liliana Marie Prikler
2023-08-29 20:20   ` [bug#65644] [PATCH gnome-team v2 3/9] gnu: mutter: Update to 44.3 Liliana Marie Prikler
2023-08-29 20:21   ` [bug#65644] [PATCH gnome-team v2 2/9] gnu: gjs: Update to 1.76.2 Liliana Marie Prikler
2023-08-30  4:22   ` [bug#65644] [PATCH gnome-team v2 8/9] gnu: gdm: Update to 44.1 Liliana Marie Prikler
2023-08-31  3:35   ` Liliana Marie Prikler [this message]
2023-09-07  1:52     ` [bug#65644] [PATCH gnome-team v2 9/9] gnu: gnome-shell: Update to 44.3 Maxim Cournoyer
2023-09-07 18:34       ` bug#65644: " Liliana Marie Prikler
2023-08-31  3:37   ` [bug#65644] [PATCH gnome-team v2 6/9] gnu: gnome-session: Update to 44.0 Liliana Marie Prikler
2023-08-20  7:00 ` [bug#65644] [PATCH gnome-team 1/9] gnu: Add gcr 4.0 Liliana Marie Prikler
2023-09-05  2:53   ` Maxim Cournoyer
2023-08-20  7:01 ` [bug#65644] [PATCH gnome-team 4/9] gnu: baobab: Update to 44.0 Liliana Marie Prikler
2023-08-20  7:03 ` [bug#65644] [PATCH gnome-team 7/9] gnu: gnome-settings-daemon: Update to 44.1 Liliana Marie Prikler
2023-09-05  2:54   ` Maxim Cournoyer
2023-08-20  7:11 ` [bug#65644] [PATCH gnome-team 5/9] gnu: gnome-desktop: Update to 44.0 Liliana Marie Prikler
2023-08-29 20:20 ` [bug#65644] [PATCH gnome-team 3/9] gnu: mutter: Update to 44.3 Liliana Marie Prikler
2023-09-05  2:59   ` Maxim Cournoyer
2023-08-29 20:21 ` [bug#65644] [PATCH gnome-team 2/9] gnu: gjs: Update to 1.76.2 Liliana Marie Prikler
2023-08-30  4:22 ` [bug#65644] [PATCH gnome-team 8/9] gnu: gdm: Update to 44.1 Liliana Marie Prikler
2023-09-05  2:56   ` Maxim Cournoyer
2023-08-31  3:35 ` [bug#65644] [PATCH gnome-team 9/9] gnu: gnome-shell: Update to 44.3 Liliana Marie Prikler
2023-09-05  2:59   ` Maxim Cournoyer
2023-08-31  3:37 ` [bug#65644] [PATCH gnome-team 6/9] gnu: gnome-session: Update to 44.0 Liliana Marie Prikler
2023-09-05  3:01 ` [bug#65644] [PATCH gnome-team 0/9] Update GNOME Shell to 44 Maxim Cournoyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=12c3e3341d5d4a3a98c5f6ebe7166034bd025a45.1694031712.git.liliana.prikler@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=65644@debbugs.gnu.org \
    --cc=maxim.cournoyer@gmail.com \
    --cc=rg@raghavgururajan.name \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.