From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49181) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i0SZp-0001PF-5S for guix-patches@gnu.org; Wed, 21 Aug 2019 11:31:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i0SZn-0006BE-3V for guix-patches@gnu.org; Wed, 21 Aug 2019 11:31:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:55708) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i0SZi-00068h-Ab for guix-patches@gnu.org; Wed, 21 Aug 2019 11:31:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i0SZi-0003yH-6f for guix-patches@gnu.org; Wed, 21 Aug 2019 11:31:02 -0400 Subject: bug#36905: [PATCH] gnu: gnome-control-center: Fix info-overview panel issues. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Kei Kebreau References: <20190803124301.14920-1-kkebreau@posteo.net> Date: Wed, 21 Aug 2019 11:30:07 -0400 In-Reply-To: <20190803124301.14920-1-kkebreau@posteo.net> (Kei Kebreau's message of "Sat, 3 Aug 2019 08:43:01 -0400") Message-ID: <87ef1etu2o.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36905-done@debbugs.gnu.org Kei Kebreau writes: > GNOME Control Center should now display the correct GNOME version and graphics > information in the "Details > About" panel. > > * gnu/packages/gnome.scm (gnome-control-center)[arguments]: Add configure > flag. Adjust 'patch-paths' phase accordingly. > [inputs]: Add gnome-session. > --- > gnu/packages/gnome.scm | 13 +++++++++++-- > 1 file changed, 11 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm > index 3f7bbac214..72b88c73c3 100644 > --- a/gnu/packages/gnome.scm > +++ b/gnu/packages/gnome.scm > @@ -5915,7 +5915,10 @@ devices using the GNOME desktop.") > (arguments > '(#:glib-or-gtk? #t > #:configure-flags > - (list "-Dcheese=false") > + (list "-Dcheese=false" > + (string-append "-Dgnome_session_libexecdir=" > + (assoc-ref %build-inputs "gnome-session") > + "/libexec")) > #:phases > (modify-phases %standard-phases > (add-before 'configure 'patch-paths > @@ -5923,7 +5926,8 @@ devices using the GNOME desktop.") > (let ((libc (assoc-ref inputs "libc")) > (tzdata (assoc-ref inputs "tzdata")) > (libgnomekbd (assoc-ref inputs "libgnomekbd")) > - (nm-applet (assoc-ref inputs "network-manager-applet"))) > + (nm-applet (assoc-ref inputs "network-manager-applet")) > + (gnome-desktop (assoc-ref inputs "gnome-desktop"))) > (substitute* "panels/datetime/tz.h" > (("/usr/share/zoneinfo/zone.tab") > (string-append tzdata "/share/zoneinfo/zone.tab"))) > @@ -5943,6 +5947,10 @@ devices using the GNOME desktop.") > (substitute* '("panels/user-accounts/run-passwd.c") > (("/usr/bin/passwd") > "/run/setuid-programs/passwd")) > + (substitute* "panels/info/cc-info-overview-panel.c" > + (("DATADIR \"/gnome/gnome-version.xml\"") > + (string-append "\"" gnome-desktop > + "/share/gnome/gnome-version.xml\""))) > #t)))))) > (native-inputs > `(("glib:bin" ,glib "bin") ; for glib-mkenums, etc. > @@ -5962,6 +5970,7 @@ devices using the GNOME desktop.") > ("gnome-desktop" ,gnome-desktop) > ("gnome-online-accounts" ,gnome-online-accounts) > ("gnome-online-accounts:lib" ,gnome-online-accounts "lib") > + ("gnome-session" ,gnome-session) > ("gnome-settings-daemon" ,gnome-settings-daemon) > ("grilo" ,grilo) > ("ibus" ,ibus) Pushed to master as 64c70430ec80c93faff6139fdb9d3de92704b81e.