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: 74622@debbugs.gnu.org
Cc: liliana.prikler@gmail.com, maxim.cournoyer@gmail.com,
	vivien@planete-kraus.eu
Subject: [bug#74622] [PATCH gnome-team v2 05/10] gnu: gnome-shell: Update to 46.7.
Date: Sat, 30 Nov 2024 02:25:00 +0100	[thread overview]
Message-ID: <c9e764f202db37786902253a9c1607a1805ca793.1733559490.git.liliana.prikler@gmail.com> (raw)
In-Reply-To: <f8f2c1e590a2c0d1edcb23d95447dc88c699ad7d.1733559490.git.liliana.prikler@gmail.com>

* gnu/packages/gnome.scm (gnome-shell): Update to 46.7.
[#:configure-flags]: Adjust accordingly.
[#:phases]<wrap-programs>: Likewise.
<unbreak-perf-tests>: Rename to…
<unbreak-shell-tests>: … this.  Adjust accordingly.
---
Update since v1: Moved to 46.7.  Found the broken tests and fixed them.

 gnu/packages/gnome.scm | 21 +++++++--------------
 1 file changed, 7 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 565dcec6ab..f3f7da58d8 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9467,7 +9467,7 @@ (define-public gnome-control-center
 (define-public gnome-shell
   (package
     (name "gnome-shell")
-    (version "44.10")
+    (version "46.7")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -9475,7 +9475,7 @@ (define-public gnome-shell
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "01pw9qnnvh64x56z1gqh0qk6vfn0ihh4zijq23f4bpz9wszlbpwf"))))
+                "0n19160ab6chcnxmwwv4m0kfz856n7851dv4ck0p08mfp39wzwhw"))))
     (build-system meson-build-system)
     (arguments
      (let ((disallowed-references
@@ -9490,8 +9490,7 @@ (define-public gnome-shell
         #~(list "-Dsystemd=false"
                 ;; Otherwise, the RUNPATH will lack the final path component.
                 (string-append "-Dc_link_args=-Wl,-rpath="
-                               #$output "/lib/gnome-shell")
-                "-Dsoup2=false")
+                               #$output "/lib/gnome-shell"))
         #:modules '((guix build meson-build-system)
                     (guix build utils)
                     (ice-9 match)
@@ -9513,11 +9512,11 @@ (define-public gnome-shell
                 (substitute* "meson.build"
                   (("gtk_update_icon_cache: true")
                    "gtk_update_icon_cache: false"))))
-            (add-after 'unpack 'unbreak-perf-tests
+            (add-after 'unpack 'unbreak-shell-tests
               (lambda _
                 ;; Lest non-fatal dbus warnings be made fatal again…
                 (substitute* "tests/meson.build"
-                  (("perf_testenv\\.set\\('G_DEBUG'" all)
+                  (("shell_testenv\\.set\\('G_DEBUG'" all)
                    (string-append "# " all)))))
             (add-before 'configure 'record-absolute-file-names
               (lambda* (#:key inputs #:allow-other-keys)
@@ -9557,7 +9556,7 @@ (define-public gnome-shell
                    (lambda (prog)
                      (wrap-program (string-append #$output "/bin/" prog)
                        `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
-                   '("gnome-shell" "gnome-extensions-app"))
+                   '("gnome-shell" "gnome-extensions" "gnome-extensions-app"))
                   (substitute* (string-append #$output "/share/gnome-shell/"
                                               "org.gnome.Shell.Extensions")
                     (("imports\\.package\\.start" all)
@@ -9577,13 +9576,7 @@ (define-public gnome-shell
                                     "[imports.gi.GLib.getenv('GST_PLUGIN_SYSTEM_PATH'),"
                                     "'" gst-plugin-path "'].filter(v => v).join(':'),"
                                     "true);\n"
-                                    all)))
-                  (for-each
-                   (lambda (prog)
-                     (wrap-program (string-append #$output "/bin/" prog)
-                       `("GUIX_PYTHONPATH"      ":" prefix (,python-path))
-                       `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
-                   '("gnome-shell-perf-tool")))))
+                                    all))))))
             (add-after 'install 'rewire
               (lambda* (#:key inputs #:allow-other-keys)
                 (for-each
-- 
2.46.0





  parent reply	other threads:[~2024-12-07  8:21 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-30 10:53 [bug#74622] [PATCH gnome-team 00/10] Getting ready to finally deliver GNOME 46 Liliana Marie Prikler
2024-11-23 19:52 ` [bug#74622] [PATCH gnome-team v2 01/10] gnu: gnome-settings-daemon: Update to 47.2 Liliana Marie Prikler
2024-11-23 20:40   ` [bug#74622] [PATCH gnome-team v2 02/10] gnu: lock: Update to 1.1.3 Liliana Marie Prikler
2024-11-23 20:58   ` [bug#74622] [PATCH gnome-team v2 03/10] gnu: mutter: Update to 46.6 Liliana Marie Prikler
2024-11-24 15:06   ` [bug#74622] [PATCH gnome-team v2 04/10] gnu: Make xdg-desktop-portal-next the new xdg-desktop-portal Liliana Marie Prikler
2024-12-09  0:23     ` Maxim Cournoyer
2024-11-30  1:13   ` [bug#74622] [PATCH gnome-team v2 08/10] gnu: gnome-keyring: Update to 46.2 Liliana Marie Prikler
2024-11-30  1:17   ` [bug#74622] [PATCH gnome-team v2 09/10] gnu: libshumate: Update to 1.3.0 Liliana Marie Prikler
2024-11-30  1:17   ` [bug#74622] [PATCH gnome-team v2 06/10] folks: Disable tests Liliana Marie Prikler
2024-11-30  1:18   ` [bug#74622] [PATCH gnome-team v2 07/10] gnu: folks: Update to 0.15.9 Liliana Marie Prikler
2024-11-30  1:24   ` [bug#74622] [PATCH gnome-team v2 10/10] gnu: gnome-initial-setup: Update to 46.4 Liliana Marie Prikler
2024-12-20 13:58     ` bug#74622: " Maxim Cournoyer
2024-11-30  1:25   ` Liliana Marie Prikler [this message]
2024-12-09  0:28   ` [bug#74622] [PATCH gnome-team v2 01/10] gnu: gnome-settings-daemon: Update to 47.2 Maxim Cournoyer
2024-11-23 19:52 ` [bug#74622] [PATCH gnome-team " Liliana Marie Prikler
2024-11-23 20:40 ` [bug#74622] [PATCH gnome-team 02/10] gnu: lock: Update to 1.1.3 Liliana Marie Prikler
2024-11-23 20:58 ` [bug#74622] [PATCH gnome-team 03/10] gnu: mutter: Update to 46.6 Liliana Marie Prikler
2024-11-24 15:06 ` [bug#74622] [PATCH gnome-team 04/10] gnu: Make xdg-desktop-portal-next the new xdg-desktop-portal Liliana Marie Prikler
2024-11-30  1:13 ` [bug#74622] [PATCH gnome-team 08/10] gnu: gnome-keyring: Update to 46.2 Liliana Marie Prikler
2024-11-30  1:17 ` [bug#74622] [PATCH gnome-team 09/10] gnu: libshumate: Update to 1.3.0 Liliana Marie Prikler
2024-11-30  1:17 ` [bug#74622] [PATCH gnome-team 06/10] folks: Disable tests Liliana Marie Prikler
2024-11-30  1:18 ` [bug#74622] [PATCH gnome-team 07/10] gnu: folks: Update to 0.15.9 Liliana Marie Prikler
2024-11-30  1:24 ` [bug#74622] [PATCH gnome-team 10/10] gnu: gnome-initial-setup: Update to 46.4 Liliana Marie Prikler
2024-11-30  1:25 ` [bug#74622] [PATCH gnome-team 05/10] [WIP] gnu: gnome-shell: Update to 46.6 Liliana Marie Prikler

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=c9e764f202db37786902253a9c1607a1805ca793.1733559490.git.liliana.prikler@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=74622@debbugs.gnu.org \
    --cc=maxim.cournoyer@gmail.com \
    --cc=vivien@planete-kraus.eu \
    /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.